/* ===== FONTS ===== */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: #1A1A19;
  background-color: #FAFAF7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3D8B5E; text-decoration: none; transition: color 150ms; }
a:hover { color: #327A4F; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2 { font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif; font-weight: 400; color: #1A1A19; }
h3 { font-family: 'Inter', sans-serif; font-weight: 600; color: #1A1A19; }
h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.3; letter-spacing: -0.01em; }

/* ===== UTILITY ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }
.section--alt { background: #F2F0EB; }
.section--brand-light { background: #E6F2EC; }
.section--dark { background: #1A1A19; color: #FAFAF7; }
.section-header { text-align: center; margin-bottom: 48px; }
@media (max-width: 768px) { .section-header { margin-bottom: 32px; } }
.section-header p { color: #4A4A45; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.top-border { border-top: 1px solid #DDD9D0; }

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100%; left: 16px; background: #3D8B5E; color: #fff; padding: 8px 16px; border-radius: 8px; z-index: 500; font-weight: 600; }
.skip-link:focus { top: 8px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: linear-gradient(135deg, #3D8B5E, #2E7348); color: #fff;
  font-size: 16px; font-weight: 600; letter-spacing: 0.01em; line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(61,139,94,0.2);
  transition: all 200ms cubic-bezier(0.25,0.46,0.45,0.94);
  text-decoration: none; border: none;
}
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 8px 20px rgba(61,139,94,0.28); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.btn-primary:disabled, .btn-primary.disabled { opacity: 0.45; cursor: not-allowed; background: #3D8B5E; transform: none; box-shadow: none; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 8px;
  background: transparent; border: 1.5px solid #DDD9D0; color: #1A1A19;
  font-size: 16px; font-weight: 600; letter-spacing: 0.01em; line-height: 1;
  transition: all 200ms; text-decoration: none;
}
.btn-secondary:hover { border-color: #3D8B5E; color: #3D8B5E; background: #E6F2EC; }
.btn-text { color: #3D8B5E; font-weight: 500; text-decoration: none; transition: all 200ms; background: none; border: none; font-size: inherit; }
.btn-text:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ===== BADGE ===== */
.badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.4; }
.badge--brand { background: #E6F2EC; color: #3D8B5E; }
.badge--accent { background: #FDF0E4; color: #D4813B; }
.badge--neutral { background: #E8E5DC; color: #4A4A45; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; height: 64px; z-index: 100; transition: background 300ms, border-color 300ms, box-shadow 300ms; }
.nav.scrolled { background: rgba(250,250,247,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(221,217,208,0.6); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.nav__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav__logo svg { color: #3D8B5E; transition: transform 300ms; flex-shrink: 0; }
.nav__logo:hover svg { transform: rotate(15deg); }
.nav__logo span { font-family: 'DM Serif Display', Georgia, serif; font-size: 20px; color: #1A1A19; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { color: #4A4A45; font-size: 15px; font-weight: 500; text-decoration: none; transition: color 150ms; }
.nav__links a:hover, .nav__links a.active { color: #3D8B5E; font-weight: 600; }
.nav__cta { flex-shrink: 0; }
.nav__hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
.nav__hamburger svg { color: #1A1A19; }
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile menu overlay */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: #FAFAF7; z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: right 250ms ease-out; }
.mobile-menu.open { right: 0; }
.mobile-menu__close { position: absolute; top: 10px; right: 16px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.mobile-menu a { font-size: 20px; font-weight: 500; color: #1A1A19; text-decoration: none; padding: 12px 0; }
.mobile-menu a:hover { color: #3D8B5E; }

/* ===== HERO ===== */
.hero { padding-top: 120px; padding-bottom: 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(61,139,94,0.08) 0%, transparent 70%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__content { max-width: 560px; }
.hero__title { margin-bottom: 20px; }
.hero__subtitle { color: #4A4A45; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; margin-bottom: 24px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__mockup { position: relative; display: flex; justify-content: center; align-items: center; min-height: 400px; }
.phone-mockup { width: 260px; background: #fff; border-radius: 24px; border: 2px solid #E8E5DC; box-shadow: 0 8px 32px rgba(0,0,0,0.08); padding: 16px; transform: rotate(3deg); position: relative; z-index: 2; }
.phone-mockup__screen { background: #FAFAF7; border-radius: 12px; padding: 16px; }
.phone-mockup__header { font-family: 'DM Serif Display', serif; font-size: 14px; margin-bottom: 12px; color: #1A1A19; }
.phone-mockup__day { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #E8E5DC; font-size: 13px; }
.phone-mockup__day span:first-child { font-weight: 600; color: #3D8B5E; }
.phone-mockup__day span:last-child { color: #4A4A45; }
.floating-thumb { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.floating-thumb img { width: 100%; height: 100%; object-fit: cover; }
.floating-thumb--1 { width: 100px; height: 80px; top: 10%; left: 0; animation: float1 4s ease-in-out infinite alternate; z-index: 10; }
.floating-thumb--2 { width: 90px; height: 70px; bottom: 15%; right: 5%; animation: float2 4s ease-in-out infinite alternate; z-index: 10; }
.floating-thumb--3 { width: 80px; height: 80px; top: 5%; right: 0; animation: float3 4s ease-in-out infinite alternate; z-index: 10; }
@keyframes float1 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes float2 { 0% { transform: translateY(0); } 100% { transform: translateY(8px); } }
@keyframes float3 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__badges { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__mockup { min-height: 320px; }
  .phone-mockup { width: 220px; }
  .floating-thumb--1 { width: 70px; height: 56px; }
  .floating-thumb--2 { width: 65px; height: 50px; }
  .floating-thumb--3 { width: 60px; height: 60px; }
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof { padding: 40px 0; }
.social-proof__inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.social-proof__stat { text-align: center; position: relative; }
.social-proof__stat + .social-proof__stat::before { content: ''; position: absolute; left: -24px; top: 50%; transform: translateY(-50%); width: 1px; height: 40px; background: #DDD9D0; }
.social-proof__number { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: clamp(32px, 4vw, 48px); color: #1A1A19; letter-spacing: -0.02em; line-height: 1; }
.social-proof__label { font-size: 14px; color: #8A897F; margin-top: 4px; }
.social-proof__stars { display: flex; gap: 2px; justify-content: center; margin-top: 4px; }
.social-proof__stars svg { width: 16px; height: 16px; color: #D4813B; fill: #D4813B; }
@media (max-width: 640px) {
  .social-proof__inner { gap: 32px; }
  .social-proof__stat + .social-proof__stat::before { display: none; }
}

/* ===== PROBLEM ===== */
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem__card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 250ms cubic-bezier(0.25,0.46,0.45,0.94); }
.problem__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); border-color: #C8C4BA; transform: translateY(-2px); }
.problem__card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #E6F2EC; border-radius: 12px; margin-bottom: 16px; color: #3D8B5E; }
.problem__card h3 { font-size: 18px; margin-bottom: 12px; }
.problem__card p { color: #4A4A45; font-size: 15px; line-height: 1.6; }
@media (max-width: 768px) { .problem__grid { grid-template-columns: 1fr; } }

/* ===== HOW IT WORKS ===== */
.hiw__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; position: relative; }
.hiw__step { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 28px; text-align: center; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.hiw__step-number { font-family: 'JetBrains Mono', monospace; font-size: 48px; font-weight: 600; color: #E8E5DC; line-height: 1; margin-bottom: 8px; }
.hiw__step-time { margin-bottom: 12px; }
.hiw__step h3 { font-size: 18px; margin-bottom: 12px; }
.hiw__step p { color: #4A4A45; font-size: 15px; line-height: 1.6; }
.hiw__timer { text-align: center; margin-bottom: 32px; }
.hiw__timer-value { font-family: 'JetBrains Mono', monospace; font-size: clamp(32px, 4vw, 48px); font-weight: 500; color: #3D8B5E; letter-spacing: -0.02em; }
.hiw__timer-label { font-size: 14px; color: #8A897F; margin-top: 4px; }
.hiw__cta { text-align: center; }
@media (max-width: 768px) { .hiw__steps { grid-template-columns: 1fr; } }

/* ===== FEATURES ===== */
.features__block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.features__block:last-child { margin-bottom: 0; }
.features__block--reverse { direction: rtl; }
.features__block--reverse > * { direction: ltr; }
.features__text h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 16px; }
.features__text p { color: #4A4A45; line-height: 1.7; }
.features__img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); border: 1px solid #E8E5DC; }
.features__img img { width: 100%; height: 300px; object-fit: cover; }
@media (max-width: 768px) {
  .features__block, .features__block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .features__img { order: -1; }
}

/* ===== USE CASES ===== */
.usecases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usecase-card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 250ms cubic-bezier(0.25,0.46,0.45,0.94); }
.usecase-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); border-color: #C8C4BA; transform: translateY(-2px); }
.usecase-card__avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.usecase-card__avatar--1 { background: #E6F2EC; color: #3D8B5E; }
.usecase-card__avatar--2 { background: #FDF0E4; color: #D4813B; }
.usecase-card__avatar--3 { background: #E8E5DC; color: #4A4A45; }
.usecase-card__name { font-size: 13px; font-weight: 600; color: #8A897F; margin-bottom: 12px; }
.usecase-card p { color: #4A4A45; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.usecase-card__quote { font-style: italic; color: #1A1A19; font-size: 15px; line-height: 1.6; padding-left: 16px; border-left: 2px solid #3D8B5E; }
@media (max-width: 768px) { .usecases__grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials .swiper { padding-bottom: 48px; }
.testimonial-card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 32px; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.04); min-height: 220px; }
.testimonial-card__quote-mark { font-family: 'DM Serif Display', serif; font-size: 64px; color: #DDD9D0; line-height: 1; position: absolute; top: 16px; left: 24px; }
.testimonial-card__text { font-style: italic; color: #4A4A45; line-height: 1.7; margin-top: 32px; margin-bottom: 20px; font-size: 16px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid #E8E5DC; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.testimonial-card__name { font-weight: 600; font-size: 14px; }
.testimonial-card__role { font-size: 13px; color: #8A897F; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: #DDD9D0; opacity: 1; transition: all 200ms; }
.swiper-pagination-bullet-active { background: #3D8B5E; transform: scale(1.3); }

/* ===== PRICING ===== */
.pricing__toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 40px; }
.pricing__toggle-label { font-size: 15px; font-weight: 500; color: #8A897F; cursor: pointer; transition: color 200ms; }
.pricing__toggle-label.active { color: #1A1A19; font-weight: 600; }
.pricing__toggle-switch { position: relative; width: 48px; height: 28px; background: #DDD9D0; border-radius: 14px; cursor: pointer; transition: background 200ms; }
.pricing__toggle-switch.active { background: #3D8B5E; }
.pricing__toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: transform 200ms; }
.pricing__toggle-switch.active::after { transform: translateX(20px); }
.pricing__save-badge { margin-left: 4px; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 32px; text-align: center; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 250ms; }
.pricing-card--featured { border: 2px solid #3D8B5E; box-shadow: 0 4px 20px rgba(61,139,94,0.12); }
.pricing-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.pricing-card__name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pricing-card__price { font-family: 'JetBrains Mono', monospace; font-size: clamp(32px, 4vw, 40px); font-weight: 600; color: #1A1A19; line-height: 1; margin-bottom: 4px; }
.pricing-card__period { font-size: 15px; color: #8A897F; margin-bottom: 24px; }
.pricing-card__features { text-align: left; margin-bottom: 24px; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 15px; }
.pricing-card__feature svg { flex-shrink: 0; margin-top: 2px; }
.pricing-card__feature--included svg { color: #3D8B5E; }
.pricing-card__feature--excluded { color: #8A897F; }
.pricing-card__feature--excluded svg { color: #DDD9D0; }
.pricing-card__cancel { font-size: 13px; color: #8A897F; margin-top: 12px; }
.pricing__trust { text-align: center; margin-top: 32px; font-size: 14px; color: #8A897F; }
@media (max-width: 768px) { .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ===== ABOUT ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.about__story h2 { text-align: left; margin-bottom: 24px; }
.about__story p { color: #4A4A45; line-height: 1.7; margin-bottom: 16px; }
.about__team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; padding: 20px; transition: all 250ms; }
.team-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.team-card__avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; margin-bottom: 8px; background: #E6F2EC; color: #3D8B5E; }
.team-card__name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.team-card__role { font-size: 13px; color: #3D8B5E; margin-bottom: 6px; }
.team-card__bio { font-size: 13px; color: #8A897F; line-height: 1.5; }
.about__trust { font-size: 13px; color: #8A897F; margin-top: 24px; }
@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__team-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq__list { max-width: 740px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #DDD9D0; }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; text-align: left; font-size: 16px; font-weight: 600; color: #1A1A19; cursor: pointer; gap: 16px; font-family: 'Inter', sans-serif; }
.faq__question svg { flex-shrink: 0; transition: transform 300ms; color: #8A897F; }
.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq__answer-inner { padding: 0 0 20px; color: #4A4A45; line-height: 1.7; font-size: 15px; }

/* ===== BLOG PREVIEW ===== */
.blog-preview__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
.blog-card { background: #fff; border: 1px solid #DDD9D0; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 250ms cubic-bezier(0.25,0.46,0.45,0.94); text-decoration: none; color: inherit; display: block; }
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); border-color: #C8C4BA; transform: translateY(-2px); color: inherit; }
.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 20px; }
.blog-card__meta { display: flex; gap: 8px; margin-bottom: 8px; }
.blog-card__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #1A1A19; }
.blog-card__excerpt { font-size: 14px; color: #4A4A45; line-height: 1.6; margin-bottom: 12px; }
.blog-card__link { font-size: 14px; }
.blog-preview__cta { text-align: center; }
@media (max-width: 640px) { .blog-preview__grid { grid-template-columns: 1fr; } }

/* ===== INTEGRATIONS ===== */
.integrations__labels { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.integration-label { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 100px; background: #E8E5DC; color: #4A4A45; font-size: 15px; font-weight: 500; }
.integration-label svg { width: 18px; height: 18px; color: #8A897F; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta__body { color: #4A4A45; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.final-cta__form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 16px; }
.final-cta__form input[type="email"] { flex: 1; padding: 14px 16px; border: 1.5px solid #DDD9D0; border-radius: 8px; font-size: 16px; background: #fff; color: #1A1A19; outline: none; transition: border-color 150ms, box-shadow 150ms; }
.final-cta__form input[type="email"]:focus { border-color: #3D8B5E; box-shadow: 0 0 0 3px rgba(61,139,94,0.12); }
.final-cta__form input[type="email"]::placeholder { color: #8A897F; }
.final-cta__trust { font-size: 14px; color: #4A4A45; }
.final-cta__trust a { font-size: 14px; }
.form-success { display: none; text-align: center; }
.form-success svg { color: #3D8B5E; margin: 0 auto 12px; }
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { color: #4A4A45; font-size: 15px; }
.form-error { display: none; color: #C4432B; font-size: 14px; margin-top: 8px; text-align: center; }
@media (max-width: 480px) { .final-cta__form { flex-direction: column; } }

/* ===== NEWSLETTER ===== */
.newsletter { text-align: center; padding: 64px 0; }
.newsletter h3 { margin-bottom: 8px; }
.newsletter__body { color: #4A4A45; margin-bottom: 24px; }
.newsletter__form { display: flex; gap: 12px; max-width: 400px; margin: 0 auto 12px; }
.newsletter__form input[type="email"] { flex: 1; padding: 12px 16px; border: 1.5px solid #DDD9D0; border-radius: 8px; font-size: 16px; background: #fff; color: #1A1A19; outline: none; transition: border-color 150ms, box-shadow 150ms; }
.newsletter__form input[type="email"]:focus { border-color: #3D8B5E; box-shadow: 0 0 0 3px rgba(61,139,94,0.12); }
.newsletter__form input[type="email"]::placeholder { color: #8A897F; }
.newsletter__privacy { font-size: 13px; color: #8A897F; }
.newsletter__privacy a { font-size: 13px; color: #8A897F; text-decoration: underline; }
@media (max-width: 480px) { .newsletter__form { flex-direction: column; } }

/* ===== FOOTER ===== */
.footer { background: #1A1A19; color: #FAFAF7; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand .nav__logo span { color: #FAFAF7; }
.footer__brand .nav__logo svg { color: #3D8B5E; }
.footer__tagline { color: #8A897F; font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #FAFAF7; margin-bottom: 16px; }
.footer__links a { display: block; color: #8A897F; font-size: 14px; padding: 4px 0; transition: color 150ms; text-decoration: none; }
.footer__links a:hover { color: #FAFAF7; }
.footer__contact-item { display: flex; align-items: center; gap: 8px; color: #8A897F; font-size: 14px; padding: 4px 0; }
.footer__contact-item svg { color: #8A897F; flex-shrink: 0; }
.footer__newsletter { margin-top: 24px; }
.footer__newsletter h4 { font-size: 14px; margin-bottom: 12px; }
.footer__nl-form { display: flex; gap: 8px; }
.footer__nl-form input[type="email"] { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #FAFAF7; font-size: 14px; outline: none; transition: border-color 150ms, box-shadow 150ms; }
.footer__nl-form input[type="email"]:focus { border-color: rgba(61,139,94,0.6); box-shadow: 0 0 0 3px rgba(61,139,94,0.15); }
.footer__nl-form input[type="email"]::placeholder { color: #8A897F; }
.footer__nl-form button { padding: 10px 18px; border-radius: 8px; background: #3D8B5E; color: #fff; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: background 200ms; white-space: nowrap; }
.footer__nl-form button:hover { background: #327A4F; }
.footer__nl-privacy { font-size: 12px; color: #8A897F; margin-top: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.footer__copyright { font-size: 13px; color: #8A897F; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.footer__legal-links a { color: #8A897F; text-decoration: none; transition: color 150ms; }
.footer__legal-links a:hover { color: #FAFAF7; }
.footer__legal-links .sep { color: #4A4A45; }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__nl-form { flex-direction: column; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid #DDD9D0; padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; z-index: 300; box-shadow: 0 -4px 16px rgba(0,0,0,0.06); flex-wrap: wrap; }
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: 14px; color: #4A4A45; margin: 0; }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner button { padding: 8px 20px; border-radius: 8px; background: #3D8B5E; color: #fff; font-size: 14px; font-weight: 600; border: none; cursor: pointer; white-space: nowrap; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding-top: 100px; padding-bottom: 80px; }
.legal-page__content { max-width: 740px; margin: 0 auto; }
.legal-page__content h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal-page__content .legal-date { font-size: 14px; color: #8A897F; margin-bottom: 32px; }
.legal-page__content h2 { font-size: clamp(22px, 3vw, 28px); margin-top: 40px; margin-bottom: 16px; }
.legal-page__content h3 { font-size: 18px; margin-top: 24px; margin-bottom: 12px; }
.legal-page__content p { color: #4A4A45; line-height: 1.7; margin-bottom: 16px; }
.legal-page__content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-page__content ul li { color: #4A4A45; line-height: 1.7; margin-bottom: 8px; position: relative; padding-left: 8px; }
.legal-page__content ul li::before { content: ''; position: absolute; left: -12px; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: #8A897F; }
.legal-page__content a { text-decoration: underline; text-underline-offset: 2px; }
.legal-page__content strong { font-weight: 600; color: #1A1A19; }
.breadcrumb { font-size: 14px; color: #8A897F; margin-bottom: 24px; }
.breadcrumb a { color: #8A897F; text-decoration: none; }
.breadcrumb a:hover { color: #3D8B5E; }

/* ===== BLOG ARTICLE ===== */
.blog-article { padding-top: 100px; padding-bottom: 80px; }
.blog-article__header { max-width: 740px; margin: 0 auto 32px; }
.blog-article__header h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.blog-article__meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; color: #8A897F; font-size: 14px; }
.blog-article__featured-img { max-width: 740px; margin: 0 auto 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-article__featured-img img { width: 100%; height: auto; display: block; }
.blog-article__content { max-width: 740px; margin: 0 auto; }
.blog-article__content h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 40px; margin-bottom: 16px; }
.blog-article__content h3 { font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.blog-article__content p { color: #4A4A45; line-height: 1.8; margin-bottom: 18px; }
.blog-article__content ul, .blog-article__content ol { margin-bottom: 18px; padding-left: 24px; }
.blog-article__content li { color: #4A4A45; line-height: 1.7; margin-bottom: 6px; }
.blog-article__content strong { color: #1A1A19; }
.blog-article__content hr { border: none; border-top: 1px solid #DDD9D0; margin: 40px 0; }
.blog-article__content em { font-style: italic; }
.blog-article__author { max-width: 740px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid #DDD9D0; font-size: 14px; color: #8A897F; font-style: italic; }
.blog-article__back { max-width: 740px; margin: 32px auto 0; }
.blog-article__related { max-width: 960px; margin: 64px auto 0; padding-top: 40px; border-top: 1px solid #DDD9D0; }
.blog-article__related h3 { text-align: center; margin-bottom: 24px; }
.blog-article__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .blog-article__related-grid { grid-template-columns: 1fr; } }

/* ===== BLOG INDEX ===== */
.blog-index { padding-top: 100px; padding-bottom: 80px; }
.blog-index__header { max-width: 740px; margin: 0 auto 40px; }
.blog-index__header h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.blog-index__header p { color: #4A4A45; }
.blog-index__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
@media (max-width: 640px) { .blog-index__grid { grid-template-columns: 1fr; } }

/* ===== 404 ===== */
.page-404 { padding-top: 160px; padding-bottom: 120px; text-align: center; min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.page-404 h1 { margin-bottom: 16px; }
.page-404 p { color: #4A4A45; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ===== SPINNER ===== */
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 600ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== AOS overrides ===== */
[data-aos] { transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94); }

/* ===== FORM SHAKE ===== */
@keyframes shake { 0% { transform: translateX(0); } 25% { transform: translateX(-4px); } 50% { transform: translateX(4px); } 75% { transform: translateX(-4px); } 100% { transform: translateX(0); } }
.shake { animation: shake 300ms; }
.input-error { border-color: #C4432B !important; background-color: #FDEEEB !important; }
