/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #FAFAF8;
  --color-dark: #1A2E1A;
  --color-dark-2: #1C2B1C;
  --color-primary: #2D6A4F;
  --color-primary-dark: #1B4332;
  --color-accent: #40916C;
  --color-text: #1E2D1E;
  --color-text-secondary: #5A6B5A;
  --color-text-light: #8A9B8A;
  --color-border: #D5DDD5;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5F7F4;
  --color-red: #C0392B;
  --color-green: #27AE60;
  --color-yellow: #D4930D;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(45, 106, 79, 0.07);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.text-gradient {
  color: var(--color-primary);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.25);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 10px 16px;
}

.btn--ghost:hover {
  color: var(--color-primary);
}

.btn--white {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn--ghost-white {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.25);
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero === */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: rgba(45, 106, 79, 0.07);
  top: -200px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(64, 145, 108, 0.06);
  bottom: -100px;
  left: -100px;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(45, 106, 79, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(45, 106, 79, 0.06);
  border: 1px solid rgba(45, 106, 79, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title-gradient {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  border: 2.5px solid white;
  margin-left: -8px;
}

.hero__proof-avatar:first-child {
  margin-left: 0;
}

.hero__proof p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hero__proof p strong {
  color: var(--color-text);
}

/* === Hero Mockup === */
.hero__visual {
  position: relative;
}

.hero__mockup {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dots span:nth-child(1) { background: #EF4444; }
.mockup__dots span:nth-child(2) { background: #F59E0B; }
.mockup__dots span:nth-child(3) { background: #10B981; }

.mockup__url {
  flex: 1;
  font-size: 12px;
  color: var(--color-text-light);
  background: white;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.mockup__body {
  padding: 28px;
}

.mockup__form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.mockup__form-subtitle {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.mockup__progress {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}

.mockup__progress-bar {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.mockup__progress-text {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.mockup__field {
  margin-bottom: 14px;
}

.mockup__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mockup__input,
.mockup__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  background: white;
}

.mockup__ai-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(45, 106, 79, 0.04);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 16px;
}

.mockup__ai-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 800;
  border-radius: 6px;
}

.mockup__ai-hint span {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* === Pain Section === */
.pain {
  padding: 100px 0;
  background: var(--color-surface);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain__card {
  padding: 32px;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.pain__icon--red {
  background: rgba(239, 68, 68, 0.08);
  color: var(--color-red);
}

.pain__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.pain__card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === Solution === */
.solution {
  padding: 100px 0;
}

.solution__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.solution__step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 200px;
  transition: var(--transition);
}

.solution__step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 106, 79, 0.2);
}

.solution__step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.solution__step-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.solution__step-content p {
  font-size: 13px;
  color: var(--color-text-light);
}

.solution__connector {
  flex-shrink: 0;
}

/* === Features === */
.features {
  padding: 100px 0;
  background: var(--color-surface);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(45, 106, 79, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.feature-row__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.feature-row__text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-row__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.feature-row__list li svg {
  flex-shrink: 0;
}

/* Feature Visuals */
.feature-visual {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
}

/* PDF Visual */
.feature-visual--pdf {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fv-pdf__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.fv-pdf__label--green {
  color: var(--color-green);
}

.fv-pdf__doc {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-width: 160px;
}

.fv-pdf__doc-header {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.fv-pdf__doc-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-pdf__line {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
}

.fv-pdf__arrow {
  flex-shrink: 0;
}

.fv-pdf__form {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-width: 160px;
}

.fv-pdf__form-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.fv-pdf__form-field:last-of-type {
  border-bottom: none;
}

.fv-pdf__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fv-pdf__dot--green { background: var(--color-green); }
.fv-pdf__dot--blue { background: var(--color-primary); }
.fv-pdf__dot--gray { background: var(--color-border); }

.fv-pdf__form-btn {
  margin-top: 12px;
  text-align: center;
  padding: 8px;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

/* AI Visual */
.feature-visual--ai {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-ai__doc {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.fv-ai__doc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.fv-ai__doc-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.fv-ai__label {
  font-size: 13px;
  color: var(--color-text-light);
}

.fv-ai__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.fv-ai__value--highlight {
  background: rgba(45, 106, 79, 0.07);
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: 4px;
}

.fv-ai__indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 8px;
}

.fv-ai__indicator span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.fv-ai__pulse {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: ai-pulse 1.5s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.fv-ai__output {
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.fv-ai__output-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-green);
  margin-bottom: 10px;
}

.fv-ai__output-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-family: 'SF Mono', 'Fira Code', monospace;
  padding: 4px 0;
}

.fv-ai__check {
  color: var(--color-green);
  font-weight: 700;
}

/* Chat Visual */
.feature-visual--chat {
  padding: 24px;
}

.fv-chat__window {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-chat__msg {
  display: flex;
  gap: 8px;
}

.fv-chat__msg--user {
  justify-content: flex-end;
}

.fv-chat__msg--user .fv-chat__bubble {
  background: var(--color-primary);
  color: white;
  border-radius: 14px 14px 4px 14px;
  max-width: 80%;
}

.fv-chat__msg--ai {
  align-items: flex-start;
}

.fv-chat__msg--ai .fv-chat__bubble {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px 16px 16px 4px;
  max-width: 85%;
}

.fv-chat__bubble {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}

.fv-chat__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Reminders Visual */
.feature-visual--reminders {
  padding: 24px;
}

.fv-rem__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}

.fv-rem__timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.fv-rem__item {
  position: relative;
  padding-bottom: 16px;
}

.fv-rem__dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 1;
}

.fv-rem__item--done .fv-rem__dot {
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.fv-rem__item--pending .fv-rem__dot {
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.fv-rem__item--missing .fv-rem__dot {
  background: var(--color-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.fv-rem__card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.fv-rem__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fv-rem__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.fv-rem__tag--green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-green);
}

.fv-rem__tag--yellow {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-yellow);
}

.fv-rem__tag--red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red);
}

.fv-rem__date {
  font-size: 12px;
  color: var(--color-text-light);
}

.fv-rem__card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.fv-rem__card-note {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 8px;
  padding: 10px;
  background: var(--color-surface-2);
  border-radius: 6px;
  font-style: italic;
}

/* === How It Works === */
.how {
  padding: 100px 0;
  background: var(--color-dark);
  color: white;
}

.how .section-label {
  background: rgba(64, 145, 108, 0.2);
  color: #95D5B2;
}

.how .section-title {
  color: white;
}

.how .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how__step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.how__step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.how__step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(64, 145, 108, 0.15);
  border-radius: var(--radius);
  color: #95D5B2;
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.how__step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.how__step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === Security === */
.security {
  padding: 100px 0;
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security__card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.security__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 106, 79, 0.2);
}

.security__icon {
  margin-bottom: 20px;
}

.security__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.security__card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === Integrations === */
.integrations {
  padding: 100px 0;
  background: var(--color-surface);
}

.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.integrations__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.integrations__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(45, 106, 79, 0.2);
}

.integrations__item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.integrations__note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.integrations__note a {
  color: var(--color-primary);
  font-weight: 600;
}

.integrations__note a:hover {
  text-decoration: underline;
}

/* === Stats === */
.stats {
  padding: 80px 0;
  background: var(--color-dark);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: #95D5B2;
  line-height: 1;
  margin-bottom: 12px;
}

.stats__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* === Testimonials === */
.testimonials {
  padding: 100px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials__card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonials__stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonials__text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.testimonials__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}

.testimonials__role {
  font-size: 12px;
  color: var(--color-text-light);
}

/* === Contact === */
.contact {
  padding: 100px 0;
  background: var(--color-surface-2);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact__text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.contact__detail svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact__detail a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact__detail a:hover {
  text-decoration: underline;
}

.contact__note {
  font-size: 13px;
  color: var(--color-text-light);
}

.contact__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--color-text-light);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%235A6B5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact__field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* === Footer === */
.footer {
  padding: 60px 0 40px;
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand .nav__logo span {
  color: white;
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
}

.footer__col a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: rgba(255,255,255,0.4);
}

.footer__socials a:hover {
  color: white;
}

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row--reverse {
    direction: ltr;
  }

  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .solution__connector {
    display: none;
  }

  .solution__flow {
    flex-direction: column;
  }

  .solution__step {
    width: 100%;
    max-width: 400px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav.nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }

  .nav.nav--open .nav__actions {
    display: flex;
    position: absolute;
    top: calc(100% + 140px);
    left: 0;
    right: 0;
    background: white;
    padding: 0 24px 24px;
    justify-content: center;
  }

  .hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__proof {
    justify-content: center;
  }

  .pain__grid {
    grid-template-columns: 1fr;
  }

  .how__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .security__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .contact__form {
    padding: 24px;
  }

  .feature-visual--pdf {
    flex-direction: column;
    gap: 12px;
  }

  .fv-pdf__arrow {
    transform: rotate(90deg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats__number {
    font-size: 36px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
}
