/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cream:        #F4F1EA;
  --cream-mid:    #EDE9DF;
  --cream-dark:   #E2DDD3;
  --green-deep:   #2C6E4F;
  --green-mid:    #3D8C64;
  --green-soft:   #5AA67C;
  --green-pale:   #C8DDD1;
  --green-mist:   #E8F2EC;
  --sage:         #8FAF9A;
  --brown-warm:   #7A6A58;
  --text-dark:    #2A2520;
  --text-mid:     #4A4440;
  --text-mute:    #7A7268;
  --white:        #FFFFFF;
  --radius-pill:  100px;
  --radius-lg:    20px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --shadow-soft:  0 4px 32px rgba(44, 110, 79, 0.08);
  --shadow-card:  0 2px 16px rgba(42, 37, 32, 0.06);
  --font-serif:   'Shippori Mincho', 'Yu Mincho', '游明朝', serif;
  --font-sans:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--cream); font-family: var(--font-sans); color: var(--text-dark); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 110, 79, 0.08);
  animation: fadeDown 0.6s ease both;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text-dark);
}
.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.nav--scrolled {
  background: rgba(244, 241, 234, 0.96);
  box-shadow: 0 2px 20px rgba(42, 37, 32, 0.08);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--green-mid);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--green-deep);
  font-weight: 500;
}
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 4px;
  border-radius: 3px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav-hamburger:hover span {
  background: var(--green-deep);
}

.nav-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(44, 110, 79, 0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.35) !important;
  color: var(--white) !important;
}

.nav-cta:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
}

/* ============================================================
   HERO WRAPPER
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Organic background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 52%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 221, 209, 0.45) 0%, rgba(200, 221, 209, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 38%;
  height: 60%;
  background: radial-gradient(ellipse at 40% 60%, rgba(200, 221, 209, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HERO LEFT — COPY
   ============================================================ */
.hero-copy {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 64px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.1s ease both;
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.7s 0.2s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.05em;
}

/* Headline */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s 0.35s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.6s 1.1s ease forwards;
}

/* Sub headline */
.hero-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s 0.5s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.65s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-primary-arrow { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--green-pale);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--green-mid);
  background: var(--green-mist);
  transform: translateY(-1px);
}

/* Response note */
.hero-response-note {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeUp 0.7s 0.78s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-response-note::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
  animation: fadeUp 0.7s 0.9s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.stat-item {
  flex: 1;
  padding-right: 28px;
  position: relative;
}
.stat-item + .stat-item {
  padding-left: 28px;
  padding-right: 28px;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--cream-dark);
}
.stat-item:last-child { padding-right: 0; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-number sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ============================================================
   HERO RIGHT — IMAGE PANEL
   ============================================================ */
.hero-visual {
  grid-column: 2;
  position: relative;
  z-index: 1;
  overflow: visible;
  animation: fadeIn 1s 0.3s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* The image fill */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
  display: block;
  transition: transform 8s ease;
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.04);
}

/* Gradient overlay — merges left edge into cream background */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    var(--cream) 3%,
    rgba(244, 241, 234, 0.9) 14%,
    rgba(244, 241, 234, 0.3) 28%,
    rgba(244, 241, 234, 0) 40%
  );
  pointer-events: none;
  z-index: 2;
}


/* Floating trust card */
.trust-card {
  position: absolute;
  bottom: 52px;
  left: -36px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 221, 209, 0.6);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(42, 37, 32, 0.12), 0 2px 8px rgba(44, 110, 79, 0.06);
  animation: floatUp 0.8s 1.1s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.trust-card-label {
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.trust-card-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 0;
}
.trust-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-right: -8px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.trust-avatar:nth-child(1) { background: #D4E8DC; z-index: 4; }
.trust-avatar:nth-child(2) { background: #BDD9CA; z-index: 3; }
.trust-avatar:nth-child(3) { background: #C8DDD1; z-index: 2; }
.trust-avatar:nth-child(4) {
  z-index: 1;
  background: var(--green-deep);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.trust-card-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.trust-card-sub {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* Floating certification badge */
.cert-badge {
  position: absolute;
  top: 52px;
  right: 36px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 221, 209, 0.5);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: floatUp 0.8s 1.3s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.cert-icon {
  width: 34px; height: 34px;
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cert-text { line-height: 1; }
.cert-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.cert-sub {
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ============================================================
   PLACEHOLDER IMAGE (for demo — replace with real photo)
   ============================================================ */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #d0e8da 0%, #c4ddd0 30%, #b8d4c4 55%, #a8c8b8 80%, #98bcaa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.placeholder-paw {
  font-size: 72px;
  opacity: 0.35;
  filter: grayscale(20%);
}
.placeholder-text {
  font-size: 13px;
  color: rgba(44, 110, 79, 0.55);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: #FAFAF8;
  padding: 120px 24px 104px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(200, 221, 209, 0.26) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.about-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.about-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.about-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.about-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.about-lead {
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Stats */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 0;
}
.about-stat-card {
  flex: 1;
  min-width: 120px;
  padding: 0 24px;
  text-align: center;
}
.about-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-stat-number sup {
  font-size: 0.46em;
  vertical-align: super;
  font-weight: 400;
}
.about-stat-label {
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.about-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

/* Story cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
  text-align: left;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44, 110, 79, 0.1);
  border-color: var(--green-pale);
}
.about-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.about-card:hover .about-card-icon {
  background: var(--green-pale);
}
.about-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.about-card-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.about-card-body strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* Rule divider */
.about-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  margin: 0 auto 20px;
}
.about-rule::before,
.about-rule::after {
  content: '';
  flex: 1;
  height: 1px;
}
.about-rule::before { background: linear-gradient(90deg, transparent, var(--cream-dark)); }
.about-rule::after  { background: linear-gradient(90deg, var(--cream-dark), transparent); }
.about-rule-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  display: block;
}

/* Pillars label */
.about-pillars-label {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Pillar cards */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.1);
  border-color: var(--green-pale);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--green-mist);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  transition: background 0.2s;
}
.pillar-card:hover .pillar-icon { background: var(--green-pale); }
.pillar-title {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.pillar-body {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* Trust badges */
.about-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.15s;
}
.about-badge:hover {
  border-color: var(--green-pale);
  transform: translateY(-1px);
}
.about-badge-icon { font-size: 14px; line-height: 1; }
.about-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Scroll reveal */
.about-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-reveal.is-visible  { opacity: 1; transform: translateY(0); }
.about-reveal-d1 { transition-delay: 0.08s; }
.about-reveal-d2 { transition-delay: 0.16s; }
.about-reveal-d3 { transition-delay: 0.24s; }
.about-reveal-d4 { transition-delay: 0.32s; }
.about-reveal-d5 { transition-delay: 0.42s; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--cream);
  padding: 120px 24px 104px;
  position: relative;
  overflow: hidden;
}

/* Bottom ambient glow */
.services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.services-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.services-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.services-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.services-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.services-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.services-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  margin-bottom: 52px;
}

/* Cards grid */
.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

/* Card base */
.services-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 110, 79, 0.13);
  border-color: var(--green-pale);
}
.services-card:hover .services-card-arrow {
  transform: translateX(5px);
}

/* Export — green accent top bar */
.services-card--export::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-soft));
}

/* Import — warm beige accent top bar */
.services-card--import::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--green-pale));
}

.services-card-inner {
  padding: 36px 36px 32px;
}

/* Icon */
.services-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-mist);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.services-card:hover .services-card-icon {
  background: var(--green-pale);
}

/* Tag pill */
.services-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}

/* Card title */
.services-card-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* Card body */
.services-card-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

/* Service list */
.services-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.services-card-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.services-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mid);
}

/* CTA row */
.services-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-pill);
  transition: background 0.2s, border-color 0.2s;
}
.services-card:hover .services-card-cta {
  background: var(--green-mist);
  border-color: var(--green-mid);
}
.services-card-arrow {
  transition: transform 0.2s;
}

/* Bottom note */
.services-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.services-note-link {
  color: var(--green-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--green-pale);
  transition: text-decoration-color 0.2s;
}
.services-note-link:hover {
  text-decoration-color: var(--green-mid);
}

/* ============================================================
   GLOBAL NETWORK SECTION
   ============================================================ */
.global-network {
  background: #F4F1EA;
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}

/* Ambient orb — top right */
.global-network::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(200, 221, 209, 0.22) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ambient orb — bottom left */
.global-network::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    ellipse at 40% 60%,
    rgba(200, 221, 209, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.global-network-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.global-network-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.global-network-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.global-network-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.global-network-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.global-network-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.global-network-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.global-network-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  max-width: 620px;
  margin: 0 auto 52px;
}

/* Image wrapper */
.global-network-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(42, 37, 32, 0.08),
    0 1px 4px rgba(42, 37, 32, 0.04);
  margin-bottom: 44px;
  background: var(--cream-mid);
  line-height: 0;
}

.global-network-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease;
}
.global-network-image-wrap:hover .global-network-image {
  transform: scale(1.02);
}

/* Region badges */
.global-network-regions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.global-network-region {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.15s;
}
.global-network-region:hover {
  border-color: var(--green-pale);
  transform: translateY(-2px);
}
.global-network-region-icon {
  font-size: 16px;
  line-height: 1;
}
.global-network-region-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ============================================================
   EXPORT SECTION
   ============================================================ */
.export {
  background: #FAFAF8;
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}
.export-image-badge,
.import-image-badge {
  line-height: normal;
}

.export::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.export-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.export-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.export-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.export-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.export-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.export-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.export-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Image */
.export-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(42, 37, 32, 0.08),
    0 1px 4px rgba(42, 37, 32, 0.04);
  margin-bottom: 56px;
  background: var(--cream-mid);
  line-height: 0;
}
.export-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease;
}
.export-image-wrap:hover .export-image {
  transform: scale(1.02);
}

/* Floating badge on image */
.export-image-badge {
  position: absolute;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 221, 209, 0.6);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(42, 37, 32, 0.1);
}
.export-image-badge-icon {
  font-size: 22px;
  line-height: 1;
}
.export-image-badge-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.export-image-badge-sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
}

/* Intro text */
.export-intro {
  max-width: 720px;
  margin: 0 auto 64px;
}
.export-intro-text {
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  letter-spacing: 0.025em;
}

/* Detail cards */
.export-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 56px;
  text-align: left;
}

.export-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  margin-bottom: 12px;
}
.export-detail-card:last-child {
  margin-bottom: 0;
}
.export-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44, 110, 79, 0.1);
  border-color: var(--green-pale);
}

/* Step number sidebar */
.export-detail-number {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-mist);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  padding: 32px 0;
  border-right: 1px solid var(--green-pale);
  transition: background 0.2s;
}
.export-detail-card:hover .export-detail-number {
  background: var(--green-pale);
}

/* Content area */
.export-detail-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.export-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}
.export-detail-card:hover .export-detail-icon {
  background: var(--green-pale);
}
.export-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.export-detail-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* CTA row */
.export-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.export-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.export-cta-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.export-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--green-pale);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.export-cta-secondary:hover {
  border-color: var(--green-mid);
  background: var(--green-mist);
  transform: translateY(-1px);
}

/* ============================================================
   IMPORT SECTION
   ============================================================ */
.import {
  background: var(--cream);
  padding: 120px 24px 112px;
  position: relative;
  overflow: visible;
}

/* Alternates background from export (#FAFAF8) → cream (#F4F1EA)
   so sections feel distinct without a hard color break          */

.import::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    ellipse at 40% 40%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.import-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.import-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.import-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.import-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.import-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.import-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.import-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Image */
.import-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow:
    0 4px 24px rgba(42, 37, 32, 0.08),
    0 1px 4px rgba(42, 37, 32, 0.04);
  margin-bottom: 56px;
  background: var(--cream-mid);
  line-height: 0;
}
.import-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease;
  border-radius: var(--radius-lg);
}
.import-image-wrap:hover .import-image {
  transform: scale(1.02);
}

/* Floating badge */
.import-image-badge {
  position: absolute;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 221, 209, 0.6);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  box-shadow: 0 4px 20px rgba(42, 37, 32, 0.1);
  white-space: nowrap;
  min-width: max-content;
}
.import-image-badge-icon {
  font-size: 22px;
  line-height: 1;
}
.import-image-badge-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  white-space: nowrap;
}

.import-image-badge-sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Intro */
.import-intro {
  max-width: 720px;
  margin: 0 auto 64px;
}
.import-intro-text {
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  letter-spacing: 0.025em;
}

/* Detail cards */
.import-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
  text-align: left;
}

.import-detail-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.import-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44, 110, 79, 0.1);
  border-color: var(--green-pale);
}

/* Step number sidebar — sage tone to distinguish from export */
.import-detail-number {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF5F1;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.02em;
  padding: 32px 0;
  border-right: 1px solid var(--green-pale);
  transition: background 0.2s, color 0.2s;
}
.import-detail-card:hover .import-detail-number {
  background: var(--green-pale);
  color: var(--green-deep);
}

/* Content */
.import-detail-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.import-detail-icon {
  width: 44px;
  height: 44px;
  background: #EEF5F1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}
.import-detail-card:hover .import-detail-icon {
  background: var(--green-pale);
}
.import-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.import-detail-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* CTA */
.import-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.import-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.import-cta-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.import-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--green-pale);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.import-cta-secondary:hover {
  border-color: var(--green-mid);
  background: var(--green-mist);
  transform: translateY(-1px);
}

/* Badge text fix */
.export-image-badge,
.import-image-badge {
  line-height: normal;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust {
  background: #FAFAF8;
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(200, 221, 209, 0.22) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.trust::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    ellipse at 40% 60%,
    rgba(200, 221, 209, 0.16) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.trust-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.trust-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.trust-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.trust-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.trust-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.trust-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.trust-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  margin-bottom: 56px;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
  text-align: left;
}

/* Base card */
.trust-feat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.trust-feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-soft));
  opacity: 0;
  transition: opacity 0.2s;
}
.trust-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44, 110, 79, 0.11);
  border-color: var(--green-pale);
}
.trust-feat-card:hover::after {
  opacity: 1;
}

/* Large card — spans full width */
.trust-feat-card--large {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 40px;
}
.trust-feat-card--large .trust-card-icon {
  flex-shrink: 0;
  margin-bottom: 0
}
.trust-feat-card--large .trust-card-number {
  flex-shrink: 0;
  margin-bottom: 0;
}
.trust-feat-card--large .trust-card-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 8px;
}
.trust-feat-card--large .trust-card-body {
  grid-column: 2;
  grid-row: 2 / 4;
}
.trust-feat-card--large .trust-card-badge {
  margin-top: 12px;
}

/* Wide card — spans full width */
.trust-feat-card--wide {
  grid-column: auto;
}
.trust-feat-card-content-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Card icon */
.trust-feat-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-mist);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.trust-feat-card:hover .trust-card-icon {
  background: var(--green-pale);
}

/* Large number */
.trust-feat-card-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.trust-feat-card-unit {
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.02em;
  vertical-align: baseline;
  margin-left: 2px;
}

/* Card title */
.trust-feat-card-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Card body */
.trust-feat-card-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* Small badge */
.trust-feat-card-badge {
  display: inline-flex;
}
.trust-feat-card-badge span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Link inside wide card */
.trust-feat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-deep);
  text-decoration: none;
  padding: 11px 22px;
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.trust-feat-card-link:hover {
  background: var(--green-mist);
  border-color: var(--green-mid);
  transform: translateY(-1px);
}

/* Bottom CTA */
.trust-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.trust-cta-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.trust-cta-note {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--cream);
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.process-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.process-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.process-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.process-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.process-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.process-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.process-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  margin-bottom: 64px;
}

/* Timeline */
.process-timeline {
  text-align: left;
  margin-bottom: 64px;
}

/* Single step */
.process-step {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Left column — number + line */
.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 64px;
}

/* Step number circle */
.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: var(--shadow-card);
}
.process-step:hover .process-step-number {
  background: var(--green-mist);
  border-color: var(--green-pale);
  color: var(--green-deep);
}

/* Featured step number */
.process-step--featured .process-step-number {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  width: 52px;
  height: 52px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(44, 110, 79, 0.3);
}

/* Final step number */
.process-step--final .process-step-number {
  background: var(--green-mist);
  border-color: var(--green-pale);
  color: var(--green-deep);
}

/* Connecting line */
.process-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream-dark) 100%);
  margin: 4px 0;
  min-height: 24px;
}
.process-step--featured .process-step-line {
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream-dark) 100%);
}

/* Step content */
.process-step-content {
  flex: 1;
  padding: 0 0 36px 20px;
  padding-top: 10px;
}
.process-step--featured .process-step-content {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 24px 28px 28px;
  margin-bottom: 12px;
  box-shadow: 0 4px 24px rgba(44, 110, 79, 0.08);
  margin-left: 20px;
}
.process-step--final .process-step-content {
  padding-bottom: 0;
}

/* Step tag */
.process-step-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 10px;
}
.process-step-tag--final {
  background: #EEF5F1;
  color: var(--sage);
  border-color: var(--green-pale);
}

/* Step title */
.process-step-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Step body */
.process-step-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* Channel badges inside step 1 */
.process-step-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.process-channel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* CTA */
.process-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.process-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.process-cta-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.process-cta-note {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: #FAFAF8;
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.pricing-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.pricing-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.pricing-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pricing-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.pricing-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.pricing-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  margin-bottom: 56px;
}

/* Cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
  align-items: start;
}

/* Card base */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

/* Top accent bar */
.pricing-card:first-child::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-soft));
}
.pricing-card:last-child::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--green-pale));
}

/* Card header */
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 0;
}
.pricing-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-mist);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.pricing-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 8px;
}
.pricing-card-tag--import {
  color: var(--sage);
  background: #EEF5F1;
  border-color: var(--green-pale);
}
.pricing-card-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Base fee block */
.pricing-base {
  margin: 24px 28px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-base-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  flex-shrink: 0;
}
.pricing-base-amount {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.pricing-base-tax {
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: baseline;
  margin-left: 2px;
}
.pricing-base-note {
  font-size: 11.5px;
  color: var(--green-mid);
  letter-spacing: 0.03em;
  margin-left: auto;
  white-space: nowrap;
}

/* Line items */
.pricing-items {
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.pricing-group-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 12px 0 8px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 12px;
}
.pricing-item:last-child {
  border-bottom: none;
}
.pricing-item-name {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.pricing-item-sub {
  font-size: 11px;
  color: var(--text-mute);
  display: block;
}
.pricing-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-item-price--included {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}
.pricing-item-price--mute {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mute);
}

.pricing-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 8px 0;
}

/* Note box */
.pricing-note-box {
  margin: 0 28px 24px;
  background: #F4F1EA;
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.pricing-note-text {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* Card CTA */
.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 28px 28px;
  padding: 13px 24px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(44, 110, 79, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.pricing-card-cta:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 110, 79, 0.35);
}
.pricing-card-cta--import {
  background: var(--white);
  color: var(--green-deep);
  border: 1.5px solid var(--green-pale);
  box-shadow: var(--shadow-card);
}
.pricing-card-cta--import:hover {
  background: var(--green-mist);
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(44, 110, 79, 0.1);
}

/* Bottom note */
.pricing-bottom-note {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--cream);
  padding: 120px 24px 112px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(200, 221, 209, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 26px;
}
.contact-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.contact-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

/* Headline */
.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.contact-headline em {
  font-style: normal;
  color: var(--green-deep);
  position: relative;
}
.contact-headline em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  border-radius: 2px;
}

/* Lead */
.contact-lead {
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.025em;
  margin-bottom: 32px;
}

/* Reassurance badges */
.contact-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-card);
}
.contact-badge-icon { font-size: 14px; line-height: 1; }
.contact-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Layout: form + sidebar */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  text-align: left;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Label */
.contact-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.contact-required {
  color: var(--green-mid);
  margin-left: 2px;
}

/* Input */
.contact-input {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  background: #FAFAF8;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  letter-spacing: 0.02em;
}
.contact-input::placeholder {
  color: var(--text-mute);
  font-weight: 300;
}
.contact-input:focus {
  border-color: var(--green-pale);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 221, 209, 0.35);
}

/* Select */
.contact-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FAF9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Textarea */
.contact-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* Radio group */
.contact-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-radio-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  background: #FAFAF8;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.contact-radio input:checked + .contact-radio-box {
  background: var(--green-mist);
  border-color: var(--green-mid);
  color: var(--green-deep);
  font-weight: 500;
}
.contact-radio:hover .contact-radio-box {
  border-color: var(--green-pale);
  background: var(--green-mist);
}
.contact-radio-icon { font-size: 14px; line-height: 1; }

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(44, 110, 79, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
  margin-top: 4px;
}
.contact-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 110, 79, 0.38);
}
.contact-submit:active { transform: translateY(0); }

/* Privacy note */
.contact-privacy {
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-align: center;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-sidebar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.contact-sidebar-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.contact-sidebar-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-channel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAFAF8;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.contact-channel-btn:hover {
  border-color: var(--green-pale);
  background: var(--green-mist);
  transform: translateY(-1px);
}
.contact-channel-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.contact-channel-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.contact-channel-sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.03em;
}

/* Sidebar note */
.contact-sidebar-note {
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.contact-sidebar-note-icon {
  font-size: 28px;
  line-height: 1;
}
.contact-sidebar-note-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.nav--scrolled {
  background: rgba(244, 241, 234, 0.96);
  box-shadow: 0 2px 20px rgba(42, 37, 32, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream-mid);
  padding: 64px 24px 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cream-dark) 20%,
    var(--cream-dark) 80%,
    transparent
  );
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top row */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  width: fit-content;
}
.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mute);
  line-height: 1.85;
  letter-spacing: 0.025em;
  max-width: 260px;
}

/* Nav columns */
.footer-nav-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-link {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-nav-link:hover {
  color: var(--green-deep);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 24px;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.footer-back-top {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-back-top:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* ============================================================
   LANGUAGE SWITCH
   ============================================================ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 3px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lang-btn:hover {
  color: var(--green-deep);
}
.lang-btn--active {
  background: var(--green-deep);
  color: var(--white);
}
.lang-btn--active:hover {
  color: var(--white);
}

.lang-switch-divider {
  width: 1px;
  height: 12px;
  background: var(--cream-dark);
  flex-shrink: 0;
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 0 28px; }
  .nav-links { gap: 24px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero::before { width: 80%; right: -20%; top: 0; height: 50%; }
  .hero::after { display: none; }

  .hero-copy {
    grid-column: 1;
    padding: 60px 36px 48px;
  }

  .hero-visual {
    grid-column: 1;
    height: 460px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0 24px 0;
    overflow: hidden;
  }

  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      var(--cream) 0%,
      rgba(244, 241, 234, 0) 20%
    );
  }
  .about { padding: 96px 32px 80px; }
  .about-stats { padding: 28px 24px; }
  .about-stat-card { padding: 0 16px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }

  .trust-card { left: 16px; bottom: 24px; }
  .cert-badge { top: 24px; right: 16px; }

  .hero-stats { gap: 0; }
  .stat-item { padding-right: 18px; }
  .stat-item + .stat-item { padding-left: 18px; padding-right: 18px; }

  .services { padding: 96px 32px 80px; }
  .services-card-inner { padding: 28px 28px 26px; }

  .global-network { padding: 96px 32px 80px; }
  .global-network-image-wrap { border-radius: 14px; }

  .export { padding: 96px 32px 80px; }
  .export-detail-content { padding: 22px 24px; gap: 14px; }
  .export-detail-number { width: 56px; font-size: 18px; }

  .import { padding: 96px 32px 80px; }
  .import-detail-content { padding: 22px 24px; gap: 14px; }
  .import-detail-number { width: 56px; font-size: 18px; }

  .trust { padding: 96px 32px 80px; }
  .trust-card--large {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-card--large .trust-card-icon,
  .trust-card--large .trust-card-number,
  .trust-card--large .trust-card-title,
  .trust-card--large .trust-card-body,
  .trust-card--large .trust-card-badge {
    grid-column: 1;
    grid-row: auto;
  }

  .process { padding: 96px 32px 80px; }

  .pricing { padding: 96px 32px 80px; }
  .pricing-base { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pricing-base-note { margin-left: 0; }

  .contact { padding: 96px 32px 80px; }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero-copy {
    padding: 48px 24px 40px;
    order: 2;
  }

  .hero-visual {
    order: 1;
    height: 340px;
    margin: 0;
    border-radius: 0;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 28px;
    margin-top: 40px;
  }

  .about { padding: 72px 20px 64px; }
  .about-stats { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .about-stat-divider { width: 40px; height: 1px; }
  .about-stat-card { padding: 0; }
  .about-cards { grid-template-columns: 1fr; gap: 12px; }
  .about-pillars { grid-template-columns: 1fr; gap: 10px; }
  .about-badge-text { font-size: 11px; }

  .stat-item { padding: 0 !important; }
  .stat-item + .stat-item::before { display: none; }

  .trust-card { display: none; }
  .cert-badge { display: none; }

  .services { padding: 72px 20px 64px; }
  .services-cards { grid-template-columns: 1fr; gap: 16px; }
  .services-card-inner { padding: 24px 22px 22px; }
  .services-card-title { font-size: 20px; }

  .global-network { padding: 72px 20px 64px; }
  .global-network-image-wrap { border-radius: 10px; }
  .global-network-lead br { display: none; }
  .global-network-region-text { font-size: 11.5px; }

  .export { padding: 72px 20px 64px; }
  .export-detail-card { flex-direction: column; }
  .export-detail-number {
    width: 100%;
    padding: 14px 0;
    border-right: none;
    border-bottom: 1px solid var(--green-pale);
    font-size: 16px;
  }
  .export-detail-content { padding: 20px 18px; flex-direction: column; gap: 12px; }
  .export-cta-wrap { flex-direction: column; }
  .export-cta-primary,
  .export-cta-secondary { width: 100%; justify-content: center; }

  .import { padding: 72px 20px 64px; }
  .import-detail-card { flex-direction: column; }
  .import-detail-number {
    width: 100%;
    padding: 14px 0;
    border-right: none;
    border-bottom: 1px solid var(--green-pale);
    font-size: 16px;
  }
  .import-detail-content { padding: 20px 18px; flex-direction: column; gap: 12px; }
  .import-cta-wrap { flex-direction: column; }
  .import-cta-primary,
  .import-cta-secondary { width: 100%; justify-content: center; }

  .trust { padding: 72px 20px 64px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-feat-card--large,
  .trust-feat-card--wide { grid-column: 1; }
  .trust-feat-card--large { flex-direction: column; gap: 12px; }
  .trust-feat-card-content-row { flex-direction: column; align-items: flex-start; }
  .trust-feat-card-link { width: 100%; justify-content: center; }

  .process { padding: 72px 20px 64px; }
  .process-step-left { width: 48px; }
  .process-step--featured .process-step-content {
    padding: 20px 18px 22px;
  }
  .process-step-channels { gap: 6px; }
  .process-channel { font-size: 11px; padding: 4px 10px; }

  .pricing { padding: 72px 20px 64px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card-header { padding: 22px 20px 0; }
  .pricing-base { margin: 20px 20px; padding: 16px 18px; }
  .pricing-items { padding: 0 20px 20px; }
  .pricing-card-cta { margin: 0 20px 22px; }
  .pricing-note-box { margin: 0 20px 20px; }

  .contact { padding: 72px 20px 64px; }
  .contact-form { padding: 28px 20px; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .contact-radio-group { gap: 8px; }

  .nav-hamburger { display: flex; }
  .nav-links { display: none; }

  .nav-links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(244, 241, 234, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(44, 110, 79, 0.08);
    padding: 24px 28px 32px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
  }
  .nav-links--open li {
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-links--open li:last-child {
    border-bottom: none;
  }
  .nav-links--open a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .footer { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }


}

/* Hide on very small screens */
@media (max-width: 380px) {
  .lang-switch { display: none; }
}
