/* ════════════════════════════════════════
   OYASELL — SHARED STYLES
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background: #f7f5f0;
}

/* ── GLASS MIXIN (shared) ── */
.glass {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.04) inset,
    0 8px 32px rgba(80,80,120,0.13),
    0 2px 8px rgba(80,80,120,0.08);
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  pointer-events: none;
}

/* ── PILL NAV ── */
nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 100px;
  padding: 6px 6px 6px 22px;
  width: fit-content;
  max-width: 900px;
  position: relative;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 1px 0 rgba(0,0,0,0.06),
    0 4px 24px rgba(0,0,0,0.10),
    0 1px 4px rgba(0,0,0,0.07);
}

.logo {
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.4px;
  flex-shrink: 0;
  margin-right: 4px;
}

.div {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.12);
  margin: 0 4px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(20,20,50,0.65);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.45);
  color: #1a1a2e;
}

/* Active page — green underline indicator */
.nav-links a.active {
  color: #1c3a2f;
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 1px;
  height: 2.5px;
  border-radius: 2px;
  background: #1c3a2f;
}

.spacer { flex: 1; min-width: 16px; }

/* ── AUTH TOGGLE (desktop) ── */
.auth-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 4px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 2px 6px rgba(80,80,140,0.1);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: #1c3a2f;
  border: 1px solid #142b22;
  box-shadow: 0 2px 8px rgba(28,58,47,0.45);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), width 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.toggle-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: rgba(20,20,50,0.5);
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
  user-select: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.toggle-btn.active {
  color: #ffffff;
  font-weight: 600;
}

/* ── HAMBURGER (mobile only) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4.5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background 0.2s, transform 0.2s;
}

.hamburger:active { transform: scale(0.92); }

.hamburger span {
  display: block;
  width: 17px;
  height: 1.8px;
  background: rgba(20,20,50,0.75);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.2,0.7,0.2,1);
}

.hamburger span:nth-child(2) { width: 11px; }
.hamburger:hover span:nth-child(2) { width: 17px; }

/* ── FULL-SCREEN GLASS OVERLAY ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(225, 230, 240, 0.45);
  backdrop-filter: blur(44px) saturate(200%);
  -webkit-backdrop-filter: blur(44px) saturate(200%);
  display: flex;
  flex-direction: column;
  padding: 0 24px 36px;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  visibility: hidden;
  transition: clip-path 0.6s cubic-bezier(0.66, 0, 0.18, 1), visibility 0s linear 0.6s;
}

.mobile-overlay.open {
  clip-path: circle(165% at calc(100% - 44px) 44px);
  visibility: visible;
  transition: clip-path 0.6s cubic-bezier(0.66, 0, 0.18, 1);
}

.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
}

.overlay-logo {
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.4px;
}

.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 2px 8px rgba(80,80,140,0.12);
  cursor: pointer;
  transition: background 0.18s, transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
}

.btn-close:hover { background: rgba(255,255,255,0.75); transform: rotate(90deg); }
.btn-close svg { width: 14px; height: 14px; stroke: rgba(20,20,50,0.75); stroke-width: 2.2; }

.overlay-links {
  list-style: none;
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
}

.overlay-links li {
  border-bottom: 1px solid rgba(20,20,50,0.08);
  overflow: hidden;
}

.overlay-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: rgba(20,20,50,0.85);
  font-size: clamp(25px, 6.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.6px;
  padding: 17px 4px;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity 0.45s, transform 0.5s cubic-bezier(0.2,0.8,0.2,1), filter 0.45s, color 0.18s;
}

.overlay-links a::after {
  content: '→';
  font-size: 19px;
  color: rgba(20,20,50,0.22);
  transition: transform 0.22s, color 0.22s;
}

.overlay-links a:hover,
.overlay-links a:active { color: #1c3a2f; }
.overlay-links a:hover::after { transform: translateX(5px); color: #1c3a2f; }

.overlay-links a.active { color: #1c3a2f; }
.overlay-links a.active::after { content: '●'; font-size: 12px; color: #1c3a2f; }

.mobile-overlay.open .overlay-links a { opacity: 1; transform: translateY(0); filter: blur(0); }
.mobile-overlay.open .overlay-links li:nth-child(1) a { transition-delay: 0.18s; }
.mobile-overlay.open .overlay-links li:nth-child(2) a { transition-delay: 0.24s; }
.mobile-overlay.open .overlay-links li:nth-child(3) a { transition-delay: 0.30s; }
.mobile-overlay.open .overlay-links li:nth-child(4) a { transition-delay: 0.36s; }
.mobile-overlay.open .overlay-links li:nth-child(5) a { transition-delay: 0.42s; }

/* Auth toggle inside overlay */
.overlay-auth {
  margin-top: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s, transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}

.mobile-overlay.open .overlay-auth {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.overlay-auth-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(20,20,50,0.4);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.overlay-auth-toggle {
  position: relative;
  display: flex;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 4px 16px rgba(80,80,140,0.1);
}

.overlay-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 12px;
  background: #1c3a2f;
  border: 1px solid #142b22;
  box-shadow: 0 2px 10px rgba(28,58,47,0.4);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), width 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.overlay-toggle-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: rgba(20,20,50,0.5);
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s;
  user-select: none;
  text-decoration: none;
}

.overlay-toggle-btn.active {
  color: #ffffff;
  font-weight: 600;
}

body.menu-locked { overflow: hidden; }

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #1c3a2f;
  border: 1px solid #142b22;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(28,58,47,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}

.btn-primary:hover {
  background: #234738;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,58,47,0.42);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1c3a2f;
  background: #ffffff;
  border: 1px solid rgba(28,58,47,0.16);
  border-radius: 12px;
  padding: 14px 26px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(28,58,47,0.08);
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
}

.btn-secondary:hover {
  border-color: rgba(28,58,47,0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28,58,47,0.12);
}

.btn-secondary .play {
  width: 0;
  height: 0;
  border-left: 9px solid #1c3a2f;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 40px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 48px;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-title {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.14;
  letter-spacing: -1.4px;
  color: #1c3a2f;
  margin-bottom: 24px;
}

.hero-title .accent { color: #b08d4f; }

.hero-sub {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(28, 40, 35, 0.72);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ── Hero slideshow (crossfade + float) ── */
.hero-slides {
  position: relative;
  width: 100%;
  max-width: 640px;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-slide {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  animation: hero-cycle 18s ease-in-out infinite;
  will-change: opacity, transform;
}

/* First slide stays in normal flow to give the box its height;
   the rest are stacked on top of it. */
.hero-slide:nth-child(1) { position: relative; }
.hero-slide:nth-child(n + 2) {
  position: absolute;
  inset: 0;
  height: 100%;
}

/* 3 slides → each shifted by a third of the cycle */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes hero-cycle {
  0%    { opacity: 0; transform: scale(1.04); }
  5%    { opacity: 1; transform: scale(1);    }
  28%   { opacity: 1; transform: scale(1);    }
  36%   { opacity: 0; transform: scale(0.98); }
  100%  { opacity: 0; transform: scale(0.98); }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides { animation: none; }
  .hero-slide {
    animation: none;
    transform: none;
    transition: opacity 0.4s ease;
  }
  .hero-slide:nth-child(1) { opacity: 1; }
}

@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 40px 24px 48px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-title {
    font-size: clamp(31px, 8.6vw, 42px);
    margin-bottom: 18px;
  }
  .hero-sub { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 14.5px; }
  .hero-slides { max-width: 100%; margin: 0 auto; }
}

@media (max-width: 400px) {
  .hero { padding: 32px 18px 40px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 700px) {
  header { padding: 14px 16px; }
  nav {
    padding: 6px 6px 6px 20px;
    width: 100%;
    position: relative;
    justify-content: flex-end;
  }
  .nav-links, .spacer, .auth-toggle, .div { display: none; }
  .hamburger { display: flex; }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: all;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-overlay, .overlay-links a, .overlay-auth,
  .toggle-slider, .overlay-slider, .btn-close,
  .btn-primary, .btn-secondary, .hamburger span { transition: none !important; }
}

/* ════════════════════════════════════════
   PAGE HEADER (inner pages)
   ════════════════════════════════════════ */
.page-head {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 8px;
  text-align: center;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b08d4f;
  margin-bottom: 16px;
}

.page-title {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: #1c3a2f;
  margin-bottom: 20px;
}

.page-title .accent { color: #b08d4f; }

.page-sub {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(28, 40, 35, 0.7);
  max-width: 580px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════ */
.features {
  background: #fbfaf7;
  border-top: 1px solid rgba(28, 58, 47, 0.06);
  padding: 72px 24px 88px;
}

/* Alternate feature block — sits on the page background so two stacked
   grids read as separate sections rather than one long slab. */
.features.features-alt {
  background: transparent;
  padding-top: 64px;
}

.features-title {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -1px;
  color: #1c3a2f;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fdfcf9;
  border: 1px solid rgba(176, 141, 79, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(176, 141, 79, 0.10);
  transition: transform 0.25s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.25s, border-color 0.25s;
}

.feature:hover .feature-icon {
  transform: translateY(-4px);
  border-color: #b08d4f;
  box-shadow: 0 8px 20px rgba(176, 141, 79, 0.22);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #b08d4f;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #1c2823;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(28, 40, 35, 0.62);
  max-width: 200px;
}

@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 44px 24px; }
}

@media (max-width: 640px) {
  .features { padding: 56px 20px 64px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .feature:last-child { grid-column: 1 / -1; }
  .feature p { max-width: 160px; }
}

@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature p { max-width: 240px; }
}

/* ════════════════════════════════════════
   CHANNELS (one agent, every channel)
   ════════════════════════════════════════ */
.section-sub {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(28, 40, 35, 0.6);
  text-align: center;
  max-width: 560px;
  margin: -44px auto 52px;
}

.channels {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px 24px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.channel-card {
  background: #fff;
  border: 1px solid rgba(28, 58, 47, 0.10);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 14px rgba(28,58,47,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176,141,79,0.5);
  box-shadow: 0 14px 30px rgba(28,58,47,0.10);
}

.channel-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.channel-badge svg { width: 32px; height: 32px; }

.badge-whatsapp { background: rgba(37, 211, 102, 0.12); }
.badge-instagram { background: rgba(214, 41, 118, 0.10); }
.badge-telegram { background: rgba(34, 158, 217, 0.12); }
.badge-facebook { background: rgba(24, 119, 242, 0.10); }
.badge-voice    { background: rgba(28, 58, 47, 0.09); }

.channel-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1c2823;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.channel-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(28, 40, 35, 0.62);
}

@media (max-width: 920px) {
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
  .channel-card:nth-child(4) { grid-column: 1 / 2; }
}

@media (max-width: 600px) {
  .channels { padding: 48px 20px 16px; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .channel-card:nth-child(4) { grid-column: auto; }
  .channels-grid .channel-card:last-child { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════
   HOW IT WORKS SECTION
   ════════════════════════════════════════ */
.how-it-works {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.how-text { max-width: 480px; }

.how-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b08d4f;
  margin-bottom: 16px;
}

.how-title {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.4px;
  color: #1c3a2f;
  line-height: 1.2;
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1c3a2f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1c2823;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 40, 35, 0.65);
}

.step-logos {
  display: flex;
  gap: 9px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.step-logos span {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(28,58,47,0.10);
  box-shadow: 0 2px 6px rgba(28,58,47,0.05);
}

.step-logos svg { width: 18px; height: 18px; }

.how-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }
  .how-text { max-width: 100%; }
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Colour backdrop so the glass cards have something vivid to refract */
.pricing::before {
  content: '';
  position: absolute;
  inset: 20px 12px 56px;
  z-index: 0;
  pointer-events: none;
  border-radius: 28px;
  background:
    radial-gradient(38% 56% at 12% 14%, rgba(176,141,79,0.45) 0%, rgba(176,141,79,0) 68%),
    radial-gradient(42% 60% at 88% 86%, rgba(28,58,47,0.40) 0%, rgba(28,58,47,0) 68%),
    radial-gradient(50% 70% at 52% 50%, rgba(120,160,140,0.22) 0%, rgba(120,160,140,0) 72%);
  filter: blur(10px);
}

/* ── LIQUID GLASS PRICING CARDS ── */
.price-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;

  background:
    linear-gradient(155deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.42) 100%);
  backdrop-filter: blur(26px) saturate(200%);
  -webkit-backdrop-filter: blur(26px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 2px 1px rgba(255,255,255,0.9) inset,
    0 -1px 1px rgba(0,0,0,0.05) inset,
    0 14px 38px rgba(28,58,47,0.14),
    0 3px 10px rgba(28,58,47,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.price-card:focus-visible {
  outline: none;
  border-color: #b08d4f;
  box-shadow:
    0 0 0 3px rgba(176,141,79,0.35),
    0 10px 30px rgba(28,58,47,0.12);
}

/* Top row: badge on the left, pick on the right — never touching */
.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

/* Radio-style pick indicator */
.price-pick {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(28,58,47,0.22);
  background: rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s;
}

.price-pick::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  background: no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c3a2f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34,1.4,0.64,1);
}

.price-card.selected .price-pick {
  background: #b08d4f;
  border-color: #b08d4f;
}

.price-card.selected .price-pick::after { opacity: 1; transform: scale(1); }

/* Specular sheen across the top of each glass card */
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.05) 60%, rgba(255,255,255,0) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
  z-index: 0;
}

.price-card > * { position: relative; z-index: 1; }

.price-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.75) inset,
    0 18px 40px rgba(28,58,47,0.16),
    0 4px 12px rgba(28,58,47,0.08);
}

/* Selected = same glass, distinguished by a clean gold border + ring + lift */
.price-card.selected {
  border: 2px solid #b08d4f;
  box-shadow:
    0 2px 1px rgba(255,255,255,0.9) inset,
    0 0 0 4px rgba(176,141,79,0.16),
    0 18px 44px rgba(28,58,47,0.18),
    0 4px 12px rgba(28,58,47,0.10);
  transform: translateY(-6px);
}

.price-card.selected:hover {
  transform: translateY(-10px);
  box-shadow:
    0 2px 1px rgba(255,255,255,0.9) inset,
    0 0 0 4px rgba(176,141,79,0.20),
    0 24px 54px rgba(28,58,47,0.22),
    0 6px 16px rgba(28,58,47,0.12);
}

.price-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b08d4f;
  background: rgba(176,141,79,0.16);
  border-radius: 100px;
  padding: 5px 12px;
}

.price-card.selected .price-badge {
  color: #fff;
  background: #b08d4f;
}

.price-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c2823;
  margin-bottom: 6px;
}


.price-amount {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #1c3a2f;
  margin-bottom: 2px;
}


.price-amount span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(28,40,35,0.5);
}


.price-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(28,40,35,0.6);
  margin: 16px 0 24px;
}


.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(28,40,35,0.78);
  line-height: 1.5;
}


.price-features li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #b08d4f;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card .btn-primary { width: 100%; }

.price-card .btn-secondary { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
}

/* ════════════════════════════════════════
   INTEGRATIONS
   ════════════════════════════════════════ */
.integrations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.integration {
  background: #fff;
  border: 1px solid rgba(28, 58, 47, 0.10);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 14px rgba(28,58,47,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}

.integration:hover {
  transform: translateY(-4px);
  border-color: rgba(176,141,79,0.5);
  box-shadow: 0 14px 30px rgba(28,58,47,0.10);
}

.integration-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fbfaf7;
  border: 1px solid rgba(28,58,47,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Real brand logos bring their own fills/colours — don't force them */
.integration-logo svg {
  width: 28px;
  height: 28px;
}

.integration h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c2823;
  margin-bottom: 8px;
}

.integration p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(28,40,35,0.62);
  margin-bottom: 18px;
  flex: 1;
}

.integration-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #1c3a2f;
  background: rgba(28,58,47,0.07);
  border-radius: 100px;
  padding: 5px 12px;
}

@media (max-width: 860px) { .integrations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .integrations { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   BLOG
   ════════════════════════════════════════ */
.blog {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(28, 58, 47, 0.10);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(28,58,47,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(28,58,47,0.12);
}

.post-thumb {
  height: 168px;
  background: linear-gradient(135deg, #1c3a2f, #2c5446);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post:nth-child(2) .post-thumb { background: linear-gradient(135deg, #b08d4f, #d4b271); }
.post:nth-child(3) .post-thumb { background: linear-gradient(135deg, #2c4a3e, #1c3a2f); }
.post:nth-child(4) .post-thumb { background: linear-gradient(135deg, #8a6d3a, #b08d4f); }
.post:nth-child(5) .post-thumb { background: linear-gradient(135deg, #1c3a2f, #426356); }
.post:nth-child(6) .post-thumb { background: linear-gradient(135deg, #b08d4f, #97783f); }

.post-thumb svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.85); stroke-width: 1.4; fill: none; }

.post-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }

.post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #b08d4f;
  margin-bottom: 12px;
}

.post h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.3px;
  color: #1c2823;
  margin-bottom: 10px;
}

.post p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(28,40,35,0.6);
  margin-bottom: 18px;
  flex: 1;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(28,40,35,0.5);
}

.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(28,40,35,0.3); }

@media (max-width: 880px) { .blog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  position: relative;
  max-width: 1140px;
  margin: 24px auto 0;
  padding: 0 24px;
}

/* ── LIQUID GLASS PANEL — same frosted look as the header pill nav ── */
.cta-inner {
  position: relative;
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 1px 0 rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.10),
    0 2px 8px rgba(0,0,0,0.07);
}

/* Soft specular sheen for the liquid-glass feel */
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-12deg) translateX(-6%);
  pointer-events: none;
}

.cta-inner > * { position: relative; z-index: 1; }

.cta-inner h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #1c3a2f;
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(28, 40, 35, 0.7);
  max-width: 440px;
  margin: 0 auto 30px;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #1c3a2f;
  color: #fff;
  padding: 64px 40px 32px;
  margin-top: 64px;
}

.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand { display: flex; flex-direction: column; }

.footer-brand .logo {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  position: static;
  transform: none;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #b08d4f; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-socials a:hover { color: #b08d4f; }

@media (max-width: 820px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; text-align: left; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; text-align: left; }
  .footer-col ul { align-items: flex-start; }
  .footer { padding: 48px 24px 24px; }
}
