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

:root {
  --black: #0f0e0c;
  --white: #ffffff;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-400: #0a0a0b;
  --gray-600: #0a0a0b;
  --brand: #d4a017;
  --brand-dark: #a67f0a;
  --brand-light: #f2d98c;
  --brand-soft: rgba(212, 160, 23, 0.2);
  --line-yellow: rgba(212, 160, 23, 0.55);
  --line-yellow-strong: rgba(166, 127, 10, 0.85);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --font-hero: "Outfit", system-ui, sans-serif;
  --shadow-nav: 0 2px 32px rgba(30, 58, 95, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --shadow-mockup: 0 -4px 0 rgba(255, 255, 255, 0.85), 0 -32px 64px rgba(30, 80, 140, 0.14),
    0 48px 100px rgba(0, 0, 0, 0.18);
  /* Seamless sky / section anchors (blue mist family) */
  --section-fade: rgba(130, 165, 195, 0.14);
  --sky-border-soft: rgba(120, 160, 190, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
.section-headline,
.blog-section-title,
.cta-section h2,
.builder-text h2,
.t-head .section-headline {
  font-family: var(--font-display);
}

a:focus-visible,
button:focus-visible,
.nav-cta:focus-visible,
.action-link:focus-visible,
.pricing-card__cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cloud-left,
  .hero-cloud-right,
  .cta-cloud-left,
  .cta-cloud-right {
    animation: none !important;
  }
  .carousel-track {
    animation: none !important;
  }
  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 66px;
  background: transparent;
  transition: top 0.38s cubic-bezier(0.4,0,0.2,1),
              left 0.38s cubic-bezier(0.4,0,0.2,1),
              right 0.38s cubic-bezier(0.4,0,0.2,1),
              height 0.38s cubic-bezier(0.4,0,0.2,1),
              padding 0.38s cubic-bezier(0.4,0,0.2,1),
              background 0.38s cubic-bezier(0.4,0,0.2,1),
              border-radius 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s cubic-bezier(0.4,0,0.2,1);
}

nav.scrolled {
  top: 14px;
  left: calc(50% - min(440px, calc(50vw - 20px)));
  right: calc(50% - min(440px, calc(50vw - 20px)));
  height: 68px;
  padding: 0 14px 0 24px;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  box-shadow: var(--shadow-nav);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--black);
}

.nav-logo-mark {
  width: auto;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
nav.scrolled .nav-logo-mark {
  height: 32px;
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-4deg) scale(1.04);
}
.nav-logo-mark img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.nav-logo-name { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; }
nav.scrolled .nav-logo-name { font-size: 16px; }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
nav.scrolled .nav-links { gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--black);
  text-decoration: none; transition: color 0.2s;
  white-space: nowrap;
}
nav.scrolled .nav-links a { color: var(--black); font-size: 14px; }
.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: transparent;
  color: var(--black);
  border: none;
  border-bottom: 1px solid var(--line-yellow);
  padding: 2px 0 3px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
nav.scrolled .nav-cta { font-size: 14px; }
.nav-cta:hover {
  border-bottom-color: var(--brand-dark);
  color: var(--brand-dark);
}

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-secondary {
  font-size: 14px; font-weight: 500; color: var(--black);
  text-decoration: none; transition: color 0.2s;
}
.nav-secondary:hover { color: var(--black); }

/* Editorial links (underlined text, not pill buttons) */
.action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--line-yellow);
  padding-bottom: 3px;
  transition: border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.action-link:hover {
  border-bottom-color: var(--brand-dark);
  color: var(--brand-dark);
}
.action-link--muted {
  font-weight: 400;
  border-bottom-color: transparent;
  opacity: 0.82;
}
.action-link--muted:hover {
  opacity: 1;
  border-bottom-color: var(--line-yellow);
  color: var(--brand-dark);
}
.action-link--wa {
  border-bottom-color: var(--line-yellow-strong);
}
.action-link--wa:hover {
  border-bottom-color: var(--brand-dark);
  color: var(--brand-dark);
}

.cta-section .action-link {
  font-size: 16px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255, 252, 245, 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 82% 18%, rgba(120, 165, 195, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 60% 35% at 14% 26%, rgba(150, 185, 210, 0.32) 0%, transparent 50%),
    linear-gradient(
      180deg,
      #7a9eb8 0%,
      #8eb4cc 8%,
      #a8c8dd 18%,
      #c4dae8 30%,
      #dce9f2 44%,
      #ebf2f8 58%,
      #f3f7fb 72%,
      #f8fafc 88%,
      #ffffff 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* cloud images */
.hero-cloud-left,
.hero-cloud-right {
  position: absolute;
  top: 56px;
  z-index: 1;
  pointer-events: none;
}

.hero-cloud-left {
  left: 0;
  width: clamp(220px, 28vw, 420px);
  animation: driftL 34s ease-in-out infinite alternate;
}

.hero-cloud-right {
  right: 0;
  width: clamp(220px, 28vw, 400px);
  animation: driftR 28s ease-in-out infinite alternate;
}

.hero-cloud-left img,
.hero-cloud-right img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(35, 85, 130, 0.2))
    drop-shadow(0 4px 14px rgba(255, 255, 255, 0.55));
  opacity: 0.96;
}

@keyframes driftL {
  from { transform: translate(0, 0); }
  to   { transform: translate(22px, -12px); }
}
@keyframes driftR {
  from { transform: translate(0, 0); }
  to   { transform: translate(-18px, 10px); }
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12.5px; font-weight: 400; color: var(--black);
  margin-bottom: 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(60, 90, 120, 0.12);
  animation: fadeUp 0.55s ease both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-badge:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(60, 90, 120, 0.16); }

.badge-pill {
  background: rgba(255,255,255,0.9);
  color: var(--black);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 11px; font-weight: 600;
  border: 1px solid rgba(212, 160, 23, 0.38);
}

.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--black);
  max-width: min(36rem, 100%);
  width: 100%;
  margin-bottom: 26px;
  animation: fadeUp 0.6s ease 0.08s both;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--black);
  padding-right: 0.06em;
}

.hero-h1-period {
  display: inline-block;
  margin-left: 0.1em;
  font-weight: 800;
  color: var(--black);
}

.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  color: var(--black);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease 0.16s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  animation: fadeUp 0.6s ease 0.24s both;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 56px;
  padding: 22px clamp(20px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(30, 60, 100, 0.08);
  animation: fadeUp 0.6s ease 0.28s both;
  max-width: min(52rem, 100%);
}

.hero-stats__item {
  text-align: center;
  min-width: 6.5rem;
  max-width: 11rem;
  flex: 1 1 auto;
}

.hero-stats__num {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.2;
}

.hero-stats__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--black);
  margin-top: 6px;
  line-height: 1.35;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats__sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 10rem;
  margin-left: auto;
  margin-right: auto;
}

/* trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  padding: 40px 24px 52px;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(255, 255, 255, 0.85) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 28%, #eef4f8 65%, #e8f0f7 100%);
  border-top: 1px solid var(--sky-border-soft);
}

.trust-strip__inner {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.trust-strip__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

  .trust-strip__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1rem, 3vw, 1.75rem);
  }

.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: min(100%, 420px);
  padding: 18px 22px;
  text-align: left;
  text-decoration: none;
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.partner-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 160, 23, 0.35);
}

.partner-tile:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.partner-tile.partner-tile--wide {
  max-width: min(100%, 480px);
}

.partner-tile__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.partner-tile__people {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
  opacity: 0.88;
  line-height: 1.35;
}

.partner-tile__meta {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--gray-600);
  max-width: 36em;
}

.trust-strip__link {
  color: var(--black);
  text-decoration: none;
  transition: color 0.25s ease;
}

.trust-strip__link:hover {
  color: var(--black);
  opacity: 0.75;
}

  .trust-strip__link:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* FAQ Section Styles */
  .faq-section {
    padding: 80px 0 96px;
    background: linear-gradient(180deg, #eef3f8 0%, #f7fafc 38%, #ffffff 100%);
    border-top: 1px solid var(--sky-border-soft);
  }

  .faq-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .faq-section .section-headline {
    margin-bottom: 40px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px 30px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }

  .faq-question {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--brand-dark);
    transition: transform 0.3s ease;
  }

  .faq-question.off::after {
    content: '-';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    padding-top: 0;
  }

  .faq-question.off + .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
  }

  .faq-answer p {
    margin-bottom: 1em;
  }

  .faq-answer p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    .faq-section__inner {
      padding: 0 16px;
    }
    .faq-question {
      font-size: 16px;
    }
  }
/* hero mockup */
.hero-mockup-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1800px;
  perspective-origin: 50% -20%;
  padding-bottom: 0;
}

.hero-mockup {
  width: calc(100% - 80px);
  max-width: 1040px;
  background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
  transform: rotateX(32deg) scale(0.88) translateY(48px);
  transform-origin: top center;
  transition: box-shadow 0.4s ease;
  will-change: transform;
  animation: none;
  outline: 1px solid rgba(212, 160, 23, 0.12);
  outline-offset: -1px;
}

.hero-mockup-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) scaleX(0.85);
  width: 72%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(20,60,120,0.32) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(12px);
}

.mockup-bar {
  background: linear-gradient(180deg, #f6f6f7 0%, #ececed 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; transition: transform 0.2s; }
.mockup-bar:hover .mockup-dot { transform: scale(1.2); }
.mockup-dot:nth-child(1) { background: #fe5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1; margin: 0 16px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 5px 12px;
  font-size: 11.5px; color: var(--gray-400);
}

.mockup-screenshot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* ---- LOGO STRIP ---- */
.logo-strip {
  background: transparent;
  padding: 28px 0 48px;
}

.logo-strip-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.logo-strip-label {
  font-size: 12.5px; font-weight: 400; color: var(--gray-400); letter-spacing: 0.3px;
}

.logo-strip-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}

.logo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--gray-400);
  letter-spacing: -0.3px; opacity: 0.55;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 0.85; }

.logo-item svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ---- FEATURES ---- */
.features-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 108px 0 112px;
  position: relative;
  background:
    radial-gradient(ellipse 85% 55% at 50% -10%, rgba(255, 248, 230, 0.38) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 60%, rgba(170, 205, 230, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 70%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #e8f0f7 0%, #f2f7fb 32%, #ffffff 58%, #f5f9fc 100%);
  border-radius: 0 0 32px 32px;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 48px, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 140, 175, 0.2), transparent);
}

.features-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.features-section__inner::after {
  content: "";
  position: absolute;
  bottom: 12%;
  right: -6%;
  width: min(340px, 42vw);
  height: min(340px, 42vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.features-section__inner > * {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--black); margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 700;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}

.section-sub {
  font-size: 15.5px; font-weight: 300; color: var(--gray-600);
  max-width: 440px; line-height: 1.8; margin-bottom: 60px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
}

.bento-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.25s, background 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(212, 160, 23, 0.08);
  background: #fff;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.blue-tint {
  background: linear-gradient(145deg, #f8fafc 0%, #eaf0f6 42%, #dfe9f2 100%);
  border-color: rgba(130, 165, 195, 0.35);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #1a1a1d, #0a0a0b);
  border-radius: var(--radius);
  border-left: 3px solid var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.bento-card:hover .bento-icon { transform: rotate(-8deg) scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.bento-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.bento-visual {
  margin-bottom: 22px;
  perspective: 560px;
}
.bento-scene {
  height: 112px;
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(230, 238, 246, 0.95) 100%);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 28px rgba(15, 23, 42, 0.07);
}
.bento-card:hover .bento-scene {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 38px rgba(15, 23, 42, 0.1);
}
.bento-visual--api .bento-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) rotateX(14deg) rotateY(-20deg);
  transform-style: preserve-3d;
}
.bento-layer {
  display: block;
  width: 72px;
  height: 13px;
  border-radius: 6px;
  background: linear-gradient(90deg, #1a1a1d, #2d3240);
  box-shadow: -4px 4px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 9px;
}
.bento-layer:nth-child(2) {
  width: 84px;
  margin-left: -6px;
  opacity: 0.92;
}
.bento-layer:nth-child(3) {
  width: 60px;
  margin-left: 6px;
  opacity: 0.86;
}
.bento-orb {
  position: absolute;
  right: 12%;
  top: 20%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #fff 0%, #f0d56a 32%, #b8860b 74%, #4a3d0f 100%);
  box-shadow:
    0 10px 22px rgba(184, 134, 11, 0.38),
    inset 0 -7px 14px rgba(0, 0, 0, 0.22);
}
.bento-visual--auto .bento-core {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 11px;
  background: linear-gradient(145deg, #f4d03f, #b8860b);
  transform: rotateX(16deg) rotateZ(-6deg);
  box-shadow:
    0 14px 26px rgba(184, 134, 11, 0.42),
    inset 0 2px 0 rgba(255, 255, 255, 0.45);
}
.bento-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  margin: -58px 0 0 -58px;
  border: 1px dashed rgba(130, 165, 195, 0.42);
  border-radius: 50%;
  animation: bento-spin 14s linear infinite;
}
.bento-orbit--slow {
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: 0.78;
}
.bento-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.bento-dot--sm {
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -3px;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}
@keyframes bento-spin {
  to {
    transform: rotate(360deg);
  }
}
.bento-visual--tools .bento-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.bento-visual--tools .bento-cube {
  position: relative;
  width: 44px;
  height: 44px;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(40deg);
}
.bento-cube--sm {
  width: 30px;
  height: 30px;
  opacity: 0.9;
}
.bento-cube__face {
  position: absolute;
  inset: 0;
  border-radius: 6px;
}
.bento-cube__face--top {
  background: linear-gradient(135deg, #e8eef5, #c5d4e6);
  transform: rotateX(90deg) translateZ(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.bento-cube__face--front {
  background: linear-gradient(145deg, #1c2430, #0c0e12);
  transform: translateZ(22px);
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.35);
}
.bento-cube--sm .bento-cube__face--top {
  transform: rotateX(90deg) translateZ(15px);
}
.bento-cube--sm .bento-cube__face--front {
  transform: translateZ(15px);
}

.bento-card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 10px; }
.bento-card p { font-size: 13.5px; font-weight: 300; color: var(--gray-600); line-height: 1.8; }

.bento-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 22px;
  align-items: stretch;
}

.bento-card--mini {
  padding: 22px 20px 24px;
}

.bento-card--mini .bento-visual {
  margin-bottom: 14px;
}

.bento-card--mini h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.bento-card--mini p {
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

.bento-visual--mini {
  margin-bottom: 0 !important;
}

.bento-mini-scene {
  height: 68px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.bento-mini-scene--speed {
  background: linear-gradient(155deg, #ffffff 0%, #e8eef5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  position: relative;
}

.bento-mini-scene--speed::before {
  content: "";
  height: 6px;
  width: 52%;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.45), rgba(59, 130, 246, 0.35));
  animation: bentoMiniBar 1.9s ease-in-out infinite;
  transform-origin: left center;
}

.bento-mini-scene--speed::after {
  content: "";
  height: 5px;
  width: 78%;
  border-radius: 3px;
  background: var(--gray-200);
  animation: bentoMiniBar 1.9s ease-in-out 0.18s infinite;
  transform-origin: left center;
}

@keyframes bentoMiniBar {
  0%,
  100% {
    transform: scaleX(0.88);
    opacity: 0.75;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.bento-mini-scene--handover {
  background: linear-gradient(155deg, #faf8f5 0%, #e8e4dc 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-mini-scene--handover::before {
  content: "";
  width: 40px;
  height: 30px;
  border-radius: 5px;
  background: linear-gradient(145deg, #ffffff, #dce4ee);
  box-shadow: 0 5px 0 rgba(15, 23, 42, 0.07);
  animation: bentoMiniFolder 2.4s ease-in-out infinite;
}

@keyframes bentoMiniFolder {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-4px) rotate(1deg);
  }
}

@media (max-width: 900px) {
  .bento-row--tools {
    grid-template-columns: 1fr;
  }
}

.mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.mini-tag {
  background: white; border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 4px 12px; font-size: 11.5px; font-weight: 400; color: var(--gray-600);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.mini-tag:hover { border-color: var(--black); color: var(--black); transform: translateY(-1px); }

.bento-card__illus {
  margin-top: auto;
  padding-top: 20px;
  color: var(--gray-800);
}
.bento-card__illus--flow svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100px;
}
.bento-card__illus--small svg {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.88;
}

/* ---- BUILDER ---- */
.builder-section {
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(212, 160, 23, 0.06) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 85%, rgba(130, 175, 210, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #f5f9fc 0%, #eef4f8 48%, #fafcfd 100%);
  padding: 96px 48px;
  position: relative;
}

.builder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.builder-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.builder-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.builder-pipeline {
  position: relative;
  padding: 28px 8px 20px;
  min-height: 120px;
}

.builder-pipeline__rail {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--gray-200));
  opacity: 0.85;
}

.builder-pipeline__glow {
  position: absolute;
  left: 10%;
  top: 36px;
  height: 3px;
  width: 26%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), rgba(212, 160, 23, 0.55), transparent);
  animation: builderFlowMove 2.8s ease-in-out infinite;
  filter: blur(0.3px);
}

@keyframes builderFlowMove {
  0% {
    left: 10%;
    opacity: 0.45;
  }
  45% {
    opacity: 1;
  }
  100% {
    left: 64%;
    opacity: 0.4;
  }
}

.builder-pipeline__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.builder-pstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  animation: builderStepFade 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.35s);
}

@keyframes builderStepFade {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(2px);
  }
  35%,
  65% {
    opacity: 1;
    transform: translateY(0);
  }
}

.builder-pstep__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e2e8f0);
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
  animation: builderDotPulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
}

@keyframes builderDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.2);
  }
}

.builder-pstep__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .builder-inner {
    grid-template-columns: 1fr;
  }
  .builder-visual {
    order: -1;
    max-width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .builder-pipeline__glow {
    animation-duration: 3.4s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .builder-pipeline__glow,
  .builder-pstep,
  .builder-pstep__dot {
    animation: none !important;
  }
  .builder-pstep {
    opacity: 1;
    transform: none;
  }
}
.builder-text h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 700;
  letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 18px;
}
.builder-text p {
  font-size: 15px; font-weight: 300; color: var(--gray-600); line-height: 1.88; margin-bottom: 32px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius); font-size: 13.5px; font-weight: 300; color: var(--gray-600);
  line-height: 1.65; transition: background 0.2s, transform 0.22s; cursor: default;
}
.check-list li:hover { background: white; transform: translateX(5px); }

.checkmark {
  width: 20px; height: 20px; background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.check-list li:hover .checkmark { transform: scale(1.15) rotate(-10deg); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.checkmark::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-0.5px, -1px);
}

/* ---- PRICING ---- */
.pricing-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, #fafcfd 0%, #f3f7fb 42%, #eef3f8 100%);
  border-top: 1px solid var(--sky-border-soft);
}

.pricing-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section .section-sub {
  max-width: 38rem;
}

.section-sub.section-sub--tight {
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--black);
  opacity: 0.85;
  max-width: 36rem;
  margin-bottom: 32px;
}

.pricing-section--modern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(212, 160, 23, 0.09) 0%, transparent 52%),
    linear-gradient(180deg, #f8fafc 0%, #f0f4f9 45%, #e8eef5 100%);
}

.pricing-section--modern .pricing-section__inner {
  position: relative;
  z-index: 1;
}

.pricing-card--modern {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pricing-card--modern::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(212, 160, 23, 0.07), transparent 55%);
  transition: opacity 0.35s ease;
}

.pricing-card--modern:hover::after {
  opacity: 1;
}

.pricing-card__viz {
  margin: -2px 0 4px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-viz {
  position: relative;
  width: 100%;
  max-width: 210px;
  height: 78px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 236, 244, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(15, 23, 42, 0.06);
}

/* Site: browser + bars */
.pricing-viz--site {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 12px 14px 14px;
}

.pricing-viz__chrome {
  position: absolute;
  top: 12px;
  left: 14px;
  height: 7px;
  width: 42%;
  border-radius: 5px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
  animation: pricingVizShimmer 2.6s ease-in-out infinite;
}

.pricing-viz__bar {
  height: 6px;
  border-radius: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.55), rgba(59, 130, 246, 0.35));
  transform-origin: left center;
  animation: pricingBarPulse 2.4s ease-in-out infinite;
}

.pricing-viz__bar--mid {
  width: 82%;
  animation-delay: 0.12s;
}

.pricing-viz__bar--short {
  width: 55%;
  animation-delay: 0.24s;
}

@keyframes pricingBarPulse {
  0%,
  100% {
    transform: scaleX(0.94);
    opacity: 0.82;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes pricingVizShimmer {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

/* Add-ons: light floating modules */
.pricing-viz--addons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: linear-gradient(155deg, #fefefe 0%, #f0f7fc 48%, #e8f2fa 100%);
  border-color: rgba(130, 165, 195, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 26px rgba(100, 130, 160, 0.1);
}

.pricing-viz__addons-float {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 52px;
}

.pricing-viz__chip {
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(228, 238, 248, 0.92));
  border: 1px solid rgba(180, 200, 220, 0.45);
  box-shadow: 0 3px 12px rgba(100, 130, 160, 0.08);
  animation: pricingChipFloat 3.2s ease-in-out infinite;
}

.pricing-viz__chip:nth-child(1) {
  left: 6%;
  top: 16%;
  width: 34%;
  height: 13px;
}

.pricing-viz__chip:nth-child(2) {
  right: 8%;
  top: 28%;
  width: 30%;
  height: 11px;
  animation-delay: 0.35s;
}

.pricing-viz__chip:nth-child(3) {
  left: 10%;
  bottom: 24%;
  width: 38%;
  height: 12px;
  animation-delay: 0.7s;
}

.pricing-viz__chip:nth-child(4) {
  right: 12%;
  bottom: 18%;
  width: 28%;
  height: 10px;
  animation-delay: 1.05s;
}

.pricing-viz__spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.65;
  animation: pricingSparkDrift 3.8s ease-in-out infinite;
}

.pricing-viz__spark--a {
  left: 44%;
  top: 10%;
}

.pricing-viz__spark--b {
  right: 36%;
  bottom: 12%;
  animation-delay: 1.4s;
}

@keyframes pricingChipFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes pricingSparkDrift {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.15);
  }
}

/* Care: rings */
.pricing-viz--care {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #ecfdf5 0%, #e0f2fe 100%);
}

.pricing-viz__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 2px solid rgba(34, 197, 94, 0.35);
  border-radius: 50%;
  animation: pricingRingExpand 2.4s ease-out infinite;
}

.pricing-viz__ring--2 {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: rgba(59, 130, 246, 0.25);
  animation-delay: 0.5s;
}

.pricing-viz__core {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  animation: pricingCoreGlow 2s ease-in-out infinite;
}

@keyframes pricingRingExpand {
  0% {
    transform: scale(0.65);
    opacity: 0.85;
  }
  70%,
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes pricingCoreGlow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  }
  50% {
    box-shadow: 0 6px 22px rgba(34, 197, 94, 0.55);
  }
}

.pricing-card__price--quote strong {
  font-size: 1.45rem;
  color: var(--black);
}

.pricing-card--featured.pricing-card--modern {
  animation: pricingFeaturedEdge 6s ease-in-out infinite;
}

@keyframes pricingFeaturedEdge {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(212, 160, 23, 0.28),
      0 14px 44px rgba(212, 160, 23, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(212, 160, 23, 0.42),
      0 20px 52px rgba(212, 160, 23, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-viz__bar,
  .pricing-viz__chrome,
  .pricing-viz__chip,
  .pricing-viz__spark,
  .pricing-viz__ring,
  .pricing-viz__ring--2,
  .pricing-viz__core,
  .pricing-card--featured.pricing-card--modern {
    animation: none !important;
  }

  .pricing-card--featured.pricing-card--modern {
    box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.3), 0 14px 40px rgba(212, 160, 23, 0.12);
  }
}

.pricing-onetime-label {
  margin-bottom: 12px;
  text-align: center;
}

.pricing-onetime-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 4px;
}

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

.pricing-card--onetime {
  padding: 26px 28px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
}

.pricing-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--black);
}

.pricing-strip--sub {
  justify-content: space-between;
  gap: 8px;
}

.pricing-strip__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 56px;
  flex: 1 1 auto;
}

.pricing-strip__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--brand-dark);
}

.pricing-ico-3d {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  transform: rotateX(10deg) rotateY(-14deg);
  transform-style: preserve-3d;
  background: linear-gradient(145deg, #ffffff, #d8e4f0);
  box-shadow:
    0 5px 0 rgba(15, 23, 42, 0.06),
    0 14px 22px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
}
.pricing-ico-3d::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.42), rgba(59, 130, 246, 0.28));
  opacity: 0.9;
}
.pricing-ico-3d--b::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.45), rgba(147, 51, 234, 0.28));
}
.pricing-ico-3d--c::before {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(59, 130, 246, 0.3));
}
.pricing-ico-3d--d::before {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.35), rgba(212, 160, 23, 0.35));
}
.pricing-ico-3d--e::before {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(99, 102, 241, 0.3));
}
.pricing-ico-3d--f::before {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.45), rgba(217, 119, 6, 0.3));
}
.pricing-ico-3d--g::before {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.38), rgba(236, 72, 153, 0.28));
}
.pricing-ico-3d--h::before {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.5), rgba(245, 158, 11, 0.35));
}
.pricing-ico-3d--i::before {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.38), rgba(59, 130, 246, 0.32));
}

.pricing-strip__cap {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.65;
  text-align: center;
  line-height: 1.2;
}

.pricing-strip__arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  opacity: 0.45;
  flex-shrink: 0;
  padding: 0 2px;
}

.pricing-card__list--compact li {
  font-size: 12.5px;
  margin-bottom: 6px;
  padding-left: 1rem;
}

.pricing-card__list--compact {
  margin-bottom: 16px;
}

.pricing-onetime__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 28px;
  margin-bottom: 10px;
}

.pricing-onetime__intro {
  flex: 1;
  min-width: min(100%, 260px);
}

.pricing-onetime__price {
  margin-bottom: 0;
  flex-shrink: 0;
}

.pricing-onetime__list {
  margin-bottom: 20px;
}

.pricing-subscriptions-label {
  margin-top: 36px;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 8px;
}

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

.pricing-card {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
}

.pricing-card--featured {
  border-color: rgba(212, 160, 23, 0.42);
  background: linear-gradient(165deg, #faf8f4 0%, #ffffff 55%);
  box-shadow: 0 8px 36px rgba(212, 160, 23, 0.1);
  padding-top: 36px;
}

.pricing-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(212, 160, 23, 0.22);
  padding: 5px 11px;
  border-radius: 100px;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--black);
}

.pricing-card__tag {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  opacity: 0.78;
  margin-bottom: 14px;
}

.pricing-card__price {
  font-family: var(--font-hero);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--black);
}

.pricing-card__price strong {
  color: var(--brand);
  font-weight: 800;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.75;
}

.pricing-card__price-note {
  font-size: 0.95rem;
  font-weight: 600;
  margin: -10px 0 16px;
  line-height: 1.45;
  color: var(--black);
  opacity: 0.88;
}

.pricing-card__price-note .pricing-card__period {
  font-size: 0.88rem;
}

.pricing-card__list {
  list-style: none;
  flex: 1;
  margin-bottom: 22px;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 8px;
  font-size: 12.75px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--black);
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  margin-top: auto;
  padding: 0 0 4px 0;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--black);
  border: none;
  border-bottom: 1px solid var(--line-yellow);
  background: transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.pricing-card__cta:hover {
  border-bottom-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}

.pricing-card__cta--primary {
  font-weight: 600;
  border-bottom-width: 2px;
  border-bottom-color: var(--line-yellow-strong);
  color: var(--black);
  background: transparent;
}

.pricing-card__cta--primary:hover {
  color: var(--brand-dark);
  opacity: 1;
  border-bottom-color: var(--brand-dark);
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: var(--black);
  opacity: 0.72;
  max-width: 28rem;
  margin: 36px auto 0;
}

/* ---- TESTIMONIALS CAROUSEL ---- */
.testimonials-section {
  padding: 96px 0 80px;
  max-width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 35%, #f3f1ec 100%);
  border-top: 1px solid var(--sky-border-soft);
  overflow: hidden;
  position: relative;
}

.testimonials-section .t-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 48px;
}

.t-head__copy {
  flex: 1 1 min(100%, 28rem);
}

.t-head__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.78;
  margin-top: 14px;
  max-width: 32rem;
}

.t-head__art {
  flex: 0 0 auto;
  color: var(--black);
}

.t-head__scene {
  width: min(260px, 52vw);
  perspective: 1100px;
}
.t-head__card3d {
  position: relative;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 55%, #f4f8fd 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transform: rotateX(6deg) rotateY(-10deg);
  transform-style: preserve-3d;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.t-head__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 160, 23, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.t-head__lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.t-head__lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.04));
}
.t-head__lines span:nth-child(1) {
  width: 92%;
}
.t-head__lines span:nth-child(2) {
  width: 74%;
  opacity: 0.7;
}
.t-head__lines span:nth-child(3) {
  width: 86%;
  opacity: 0.5;
}
.t-head__avatars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}
.t-head__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
  margin-left: -6px;
}
.t-head__avatar:first-child {
  margin-left: 0;
}
.t-head__avatar--1 {
  background: linear-gradient(135deg, #bfdbfe, #a5b4fc);
}
.t-head__avatar--2 {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
}
.t-head__avatar--3 {
  background: linear-gradient(135deg, #bbf7d0, #34d399);
}
.t-head__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fffdf4, #fef3c7);
  color: var(--brand-dark);
  border: 1px solid rgba(212, 160, 23, 0.35);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.18);
}

@media (max-width: 720px) {
  .testimonials-section .t-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }
  .t-head__copy {
    text-align: center;
  }
  .t-head__sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.carousel-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* --carousel-loop set in JS: one full duplicate strip (flex gap breaks -50% math) */
  animation: carousel-scroll var(--carousel-duration, 96s) linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--carousel-loop, 0px)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
  .blog-fade-node,
  .blog-fade-node:not(.blog-fade-node--active) {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.tcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  width: 320px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  cursor: default;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(212, 160, 23, 0.12);
}

.tcard__illus {
  margin: -4px 0 12px;
  color: var(--brand-dark);
  height: 36px;
  display: flex;
  align-items: center;
}
.tcard-bubble-3d {
  display: block;
  width: 36px;
  height: 28px;
  border-radius: 10px 10px 10px 4px;
  background: linear-gradient(145deg, #f8fafc, #dce7f2);
  border: 1px solid var(--gray-200);
  box-shadow:
    0 6px 0 rgba(15, 23, 42, 0.05),
    0 12px 20px rgba(15, 23, 42, 0.08);
  transform: skewX(-4deg) rotate(-2deg);
  position: relative;
}
.tcard-bubble-3d::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--gray-300));
  opacity: 0.55;
}

.tcard-stars { display: flex; gap: 5px; margin-bottom: 20px; }

.star {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  background: linear-gradient(145deg, #fde68a 0%, #f59e0b 45%, #b45309 100%);
  clip-path: polygon(50% 0%, 63% 32%, 98% 35%, 72% 57%, 79% 91%, 50% 72%, 21% 91%, 28% 57%, 2% 35%, 37% 32%);
  box-shadow: 0 3px 0 rgba(120, 53, 15, 0.35);
}

.tcard:hover .star { transform: scale(1.08) translateY(-1px); box-shadow: 0 5px 12px rgba(184, 134, 11, 0.45); }
.tcard-quote { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.8; margin-bottom: 22px; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gray-600); flex-shrink: 0;
}
.tcard-name { font-size: 13px; font-weight: 500; }
.tcard-role { font-size: 11.5px; font-weight: 300; color: var(--gray-400); }
.tcard-role a {
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.tcard-role a:hover {
  color: var(--black);
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.tcard--featured {
  width: min(440px, 90vw);
  min-height: auto;
}
.tcard--featured .tcard-quote {
  font-size: 13.5px;
  line-height: 1.78;
}

/* ---- BLOG SECTION ---- */
.blog-section {
  background: linear-gradient(180deg, #f3f1ec 0%, #f5f6f8 45%, #eef3f8 100%);
  border-top: 1px solid var(--sky-border-soft);
  padding: 80px 0 96px;
}
.blog-section-inner { max-width: 1060px; margin: 0 auto; padding: 0 48px; }

/* Ready when you are → Journal: shared band + soft handoff */
.cta-to-journal {
  background: linear-gradient(180deg, #c9dff0 0%, #d9e9f4 24%, #e4edf4 52%, #ebe6df 100%);
  padding-top: clamp(40px, 6vw, 72px);
}
.cta-to-journal .cta-section {
  margin-bottom: 0;
  padding: 0 24px 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-blog-bridge {
  height: clamp(48px, 8vw, 80px);
  max-width: min(1000px, 92vw);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(235, 230, 223, 0) 0%, rgba(241, 238, 232, 0.9) 55%, #f3f1ec 100%);
  pointer-events: none;
}
.cta-to-journal .blog-section {
  background: linear-gradient(180deg, #f3f1ec 0%, #f5f6f8 45%, #eef3f8 100%);
  border-top: none;
  padding: 32px 0 88px;
}

.blog-home-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px 22px;
  align-items: start;
}
.blog-home-layout .blog-featured-card {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.blog-home-layout .blog-small-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.blog-home-layout .blog-see-all-wrap {
  grid-column: 1 / -1;
}

.blog-fade-node {
  transition: opacity 1.1s ease, filter 1.1s ease, transform 1.1s ease;
  opacity: 0.4;
  filter: saturate(0.88);
}
.blog-fade-node.blog-fade-node--active {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}
.blog-fade-node:not(.blog-fade-node--active) {
  transform: translateY(4px);
}

.blog-section-head--editorial {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0 24px;
  align-items: start;
  text-align: left;
  max-width: 40rem;
  margin: 0 auto 44px;
}

.blog-section-head__rule {
  width: 3px;
  align-self: stretch;
  min-height: 5rem;
  background: var(--brand);
  border-radius: 2px;
}

.blog-section-head__main {
  min-width: 0;
}

.blog-section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.blog-section-title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--black);
  text-wrap: balance;
  font-feature-settings: "kern" 1, "liga" 1;
}

.blog-section-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.72;
  margin-top: 14px;
  max-width: 36rem;
}

.blog-section-title--page {
  font-size: clamp(32px, 4.2vw, 52px);
}

@media (max-width: 560px) {
  .blog-section-head--editorial {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .blog-section-head__rule {
    width: 100%;
    height: 3px;
    min-height: 0;
    margin-bottom: 18px;
  }
  .blog-section-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.blog-featured-card {
  background: white; border-radius: 18px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr; min-height: 260px;
  text-decoration: none; color: var(--black); margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(80,130,180,0.10);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(80,130,180,.18); }
.blog-featured-img { overflow: hidden; position: relative; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-img-placeholder { width: 100%; height: 100%; background: #e4dfd6; display: flex; align-items: center; justify-content: center; min-height: 260px; }
.blog-doc-3d {
  width: 52px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(145deg, #faf8f5, #d9d3c8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.1);
  transform: rotateX(12deg) rotateY(-18deg);
  transform-style: preserve-3d;
  position: relative;
}
.blog-doc-3d::before,
.blog-doc-3d::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 5px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.blog-doc-3d::before {
  top: 16px;
}
.blog-doc-3d::after {
  top: 26px;
  left: 10px;
  right: auto;
  width: 58%;
  opacity: 0.65;
}
.blog-doc-3d--lg {
  width: 64px;
  height: 78px;
}
.blog-featured-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.blog-featured-tag { display: inline-flex; align-items: center; background: #2d2420; color: white; border-radius: 100px; padding: 4px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; width: fit-content; }
.blog-featured-title { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; letter-spacing: -.5px; line-height: 1.25; }
.blog-featured-excerpt { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.75; }
.blog-featured-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.blog-featured-author { display: flex; align-items: center; gap: 10px; }
.blog-featured-av { width: 34px; height: 34px; border-radius: 50%; background: var(--brand-soft); border: 1px solid rgba(212, 160, 23, 0.25); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--black); flex-shrink: 0; overflow: hidden; }
.blog-featured-av img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-author-name { font-size: 13px; font-weight: 500; }
.blog-featured-author-role { font-size: 11.5px; font-weight: 300; color: var(--gray-400); }
.blog-featured-badge { background: var(--black); color: #fff; border-radius: 100px; padding: 5px 14px; font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; flex-shrink: 0; }

.blog-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-small-card {
  background: white; border-radius: 16px; overflow: hidden;
  text-decoration: none; color: var(--black); display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(80,130,180,.08);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.blog-small-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(80,130,180,.16); }
.blog-small-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.blog-small-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.blog-small-card:hover .blog-small-img img { transform: scale(1.05); }
.blog-small-img-placeholder { width: 100%; height: 100%; min-height: 140px; background: #ebe8e0; display: flex; align-items: center; justify-content: center; }
.blog-small-img-placeholder .blog-doc-3d {
  width: 40px;
  height: 50px;
}
.blog-small-body { padding: 16px 18px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex: 1; }
.blog-small-title { font-size: 14px; font-weight: 600; letter-spacing: -.2px; line-height: 1.4; flex: 1; }
.blog-small-cat { display: inline-flex; align-items: center; background: var(--brand-soft); color: var(--black); border-radius: 100px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.blog-small-cat.cat-green { background: #dcfce7; color: var(--black); }
.blog-small-cat.cat-amber { background: #f5edd8; color: var(--black); }
.blog-small-cat.cat-purple { background: #ede9fe; color: var(--black); }
.blog-small-cat.cat-red { background: #fee2e2; color: var(--black); }
.blog-small-cat.cat-dark { background: #e5e7eb; color: var(--black); }

.blog-see-all-wrap { text-align: center; margin-top: 36px; }
.blog-empty {
  text-align: center;
  padding: 48px 32px;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.06);
}

.journal-post-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 251, 235, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #d4e4f2 0%, #c8ddf0 45%, #bdd4eb 100%);
  padding: 72px 0 96px;
  min-height: 50vh;
}
.journal-post-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}
.journal-post-back { margin-bottom: 28px; font-size: 14px; }
.journal-post-back a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.journal-post-back a:hover { opacity: 0.78; }
.journal-post-header { margin-bottom: 36px; }
.journal-post-meta { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.journal-post-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.journal-post-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.65;
}
.journal-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}
.journal-body p { margin-bottom: 1.15em; }
.journal-body p:last-child { margin-bottom: 0; }
.journal-archive-intro { margin-top: 16px; font-size: 14px; font-weight: 400; opacity: 0.75; }
.journal-archive-intro a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--line-yellow);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.journal-archive-intro a:hover {
  border-bottom-color: var(--brand-dark);
  color: var(--brand-dark);
}
.journal-archive-section .blog-section-head--editorial { margin-bottom: 36px; max-width: 42rem; }

.cta-footer-wrap {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
    linear-gradient(165deg, #c8ddf0 0%, #b8d4eb 38%, #a8c9e3 100%);
  overflow: hidden;
  padding: 88px 40px 64px;
}

.cta-footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.cta-cloud-left,
.cta-cloud-right {
  position: absolute;
  top: -12px;
  pointer-events: none;
  z-index: 0;
}
.cta-cloud-left {
  left: -2%;
  width: clamp(200px, 28vw, 400px);
  animation: driftL 34s ease-in-out infinite alternate;
}
.cta-cloud-right {
  right: -2%;
  width: clamp(200px, 28vw, 400px);
  animation: driftR 28s ease-in-out infinite alternate;
}
.cta-cloud-left img,
.cta-cloud-right img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(35, 75, 115, 0.12));
  opacity: 0.9;
}

/* ---- CTA ---- */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 64px;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--black); margin-bottom: 18px;
}
.cta-section p {
  font-size: 15px; font-weight: 300; color: var(--black);
  margin-bottom: 36px;
}
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: center;
  align-items: baseline;
}

/* ---- FOOTER ---- */
.footer-outer {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30, 58, 95, 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 44px 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--black);
  margin-bottom: 14px;
}
.footer-logo-mark {
  width: auto;
  height: 30px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.footer-logo-name { font-size: 15px; font-weight: 700; letter-spacing: -0.3px; }
.footer-desc {
  font-size: 13px; font-weight: 300; color: var(--gray-400);
  line-height: 1.75; max-width: 240px; margin-bottom: 20px;
}
.footer-col-title {
  font-size: 11px; font-weight: 600; color: var(--black);
  letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-link-list a {
  font-size: 13.5px; font-weight: 300; color: var(--gray-600);
  text-decoration: none; transition: color 0.18s;
}
.footer-link-list a:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; font-weight: 300; color: var(--gray-400);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

.reveal-scale {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
    align-items: start;
  }
}

@media (max-width: 860px) {
  nav { padding: 0 20px; }
  nav.scrolled { left: 16px !important; right: 16px !important; }
  .nav-links { display: none; }
  .hero { padding: 120px 0 0; }
  .hero-cloud-left, .hero-cloud-right { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-mockup { width: calc(100% - 32px); transform: rotateX(12deg) scale(0.97) translateY(12px); }
  .logo-strip-inner { padding: 0 24px; }
  .logo-strip-logos { gap: 28px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-section {
    padding: 72px 0;
    border-radius: 0 0 24px 24px;
  }
  .features-section__inner {
    padding: 0 24px;
  }
  .builder-section,
  .pricing-section,
  .testimonials-section {
    padding: 72px 24px;
  }
  .pricing-grid,
  .pricing-grid--three {
    grid-template-columns: 1fr;
  }
  .cta-cloud-left,
  .cta-cloud-right {
    opacity: 0.45;
    max-width: 160px;
  }
  .blog-section { padding: 60px 0 80px; }
  .blog-section-inner { padding: 0 24px; }
  .journal-post-inner { padding: 0 24px; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .blog-featured-body { padding: 24px; }
  .blog-small-grid { grid-template-columns: 1fr; }
  .cta-section { margin-bottom: 40px; }
  .cta-footer-wrap { padding: 60px 16px 40px; }
  .footer-outer { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 32px 28px; }
  .footer-bottom { padding: 16px 28px; flex-direction: column; gap: 6px; text-align: center; }
  .mockup-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.close-button {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

#leadCaptureForm label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

#leadCaptureForm input[type="text"],
#leadCaptureForm input[type="email"],
#leadCaptureForm input[type="tel"] {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 15px;
    background: var(--gray-50);
    color: var(--black);
}

#leadCaptureForm input:focus {
    outline: 2px solid var(--brand-soft);
    border-color: var(--brand-dark);
    background: var(--white);
}

#card-element {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
}

#card-errors {
    color: #fa755a;
    font-size: 14px;
    margin-bottom: 20px;
}

#submitButton {
    background: var(--brand);
    color: var(--black);
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#submitButton:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.2);
}

/* action-link--primary for the new button in hero */
.action-link--primary {
  background: var(--brand);
  color: var(--black);
  border-color: var(--brand);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.action-link--primary:hover {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-soft);
}

/* ---- Account: sign in, register, dashboard ---- */
.auth-page,
.page-dashboard {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 95% 52% at 50% -8%, rgba(255, 255, 255, 0.92) 0%, transparent 52%),
    linear-gradient(180deg, #f6fafc 0%, #eef4f8 42%, #e7edf4 76%, #ebe6df 100%);
  position: relative;
}

.auth-page::after,
.page-dashboard::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(44vh, 320px);
  background: linear-gradient(0deg, rgba(223, 232, 244, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.page-dashboard .landing-main {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  font-family: inherit;
}

button.btn {
  appearance: none;
}

.btn--primary {
  background: var(--brand);
  color: var(--black);
  border-color: var(--brand-dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-soft);
}

.btn--ghost {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--black);
}

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

.btn--block {
  width: 100%;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  margin-bottom: 16px;
  font-weight: 600;
}

.eyebrow--yellow {
  color: var(--brand-dark);
  opacity: 1;
}

.page-auth .landing-main,
.page-auth .auth-main {
  position: relative;
  z-index: 1;
  padding: 112px 16px 64px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.auth-panel--ambient {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.auth-panel__inner {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.auth-panel__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--black);
}

.auth-panel__lead {
  color: var(--black);
  opacity: 0.78;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.65;
}

.auth-panel .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-panel .form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.auth-panel .form input {
  font: inherit;
  font-size: 16px;
  padding: 14px 2px 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  border-bottom: 1.5px solid var(--gray-200);
  background: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-panel .form input:focus {
  outline: none;
  border-bottom-color: var(--brand-dark);
  box-shadow: 0 1px 0 0 var(--brand-dark);
}

.form-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
}

.auth-panel__foot {
  margin-top: 20px;
  font-size: 14px;
  color: var(--black);
  opacity: 0.72;
}

.auth-panel__foot a {
  color: var(--brand-dark);
  font-weight: 600;
}

.auth-panel__foot code,
.auth-panel__lead code {
  font-size: 0.9em;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}

.config-snippet {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 12px;
  overflow-x: auto;
}

.page-dashboard .landing-main {
  padding-bottom: 48px;
}

.dashboard {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px 64px;
}

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

.dashboard__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--black);
}

.dashboard__meta {
  color: var(--black);
  opacity: 0.72;
}

.dashboard__hint {
  margin: 24px 0 32px;
  font-size: 14px;
  color: var(--black);
  opacity: 0.65;
}

@media (max-width: 600px) {
  .page-auth .landing-main,
  .page-auth .auth-main {
    padding: 96px 12px 48px;
  }
  .auth-panel--ambient {
    padding: 0 16px;
  }
  .auth-panel__inner h1 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }
  .auth-panel__foot {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .page-auth nav { padding: 0 14px; }
  .page-auth .nav-logo-name { display: none; }
  .page-auth .nav-right { gap: 10px; }
}

/* --- Order flow (Partner care) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.page-order-flow {
  min-height: 100vh;
  background: linear-gradient(165deg, #fafaf9 0%, #f0f4f8 42%, #faf8f5 100%);
}

.page-order-flow .landing-main,
.page-order-flow main.order-flow {
  min-height: 100vh;
}

.order-flow {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 48px;
  overflow: hidden;
  box-sizing: border-box;
}

.order-flow__bg {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 160, 23, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.order-flow__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.order-flow__inner--wizard {
  max-width: 560px;
}

.order-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  box-shadow: 0 4px 8px rgba(15, 14, 12, 0.04), 0 24px 56px rgba(30, 58, 95, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: orderCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes orderCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-card--gate {
  text-align: center;
}

.order-flow__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  color: var(--black);
}

.order-flow__lead {
  color: var(--black);
  opacity: 0.72;
  line-height: 1.55;
  margin-bottom: 24px;
}

.order-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.order-flow__actions--split {
  justify-content: space-between;
  margin-top: 8px;
}

.order-flow__fine {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.6;
}

.order-flow__fine a {
  color: inherit;
}

.order-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.order-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background 0.35s ease, transform 0.35s ease;
}

.order-progress__dot--active {
  background: var(--brand);
  transform: scale(1.15);
}

.order-progress__line {
  width: 48px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 6px;
}

.order-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.order-step__lead {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.5;
}

.order-billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .order-billing-grid {
    grid-template-columns: 1fr;
  }
}

.order-billing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 14px;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.order-billing-card:hover {
  border-color: rgba(212, 160, 23, 0.45);
}

.order-billing-card--picked {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
  background: #fffef8;
}

.order-billing-card--featured {
  background: linear-gradient(145deg, #fffef9, #f8fafc);
}

.order-billing-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  background: rgba(212, 160, 23, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
}

.order-billing-card__label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 6px;
}

.order-billing-card__price {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

.order-billing-card__price span {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.65;
}

.order-billing-card__hint {
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.55;
}

.order-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--black);
}

.order-label textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font: inherit;
  resize: vertical;
  min-height: 64px;
  background: #fff;
}

.order-step--thanks {
  text-align: center;
}

.order-thanks {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.25), rgba(34, 197, 94, 0.2));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.order-thanks--pop {
  transform: scale(1.08);
}

/* Conversation */
.page-conversation .conv-main {
  padding: 32px 24px 64px;
  min-height: calc(100vh - 80px);
}

.conv-inner {
  max-width: 640px;
  margin: 0 auto;
}

.conv-banner {
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfdf5, #e0f2fe);
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  animation: orderCardIn 0.5s ease both;
}

.conv-gate {
  text-align: center;
  padding: 48px 24px;
}

.conv-gate__lead {
  opacity: 0.7;
  margin-bottom: 20px;
}

.conv-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 4px 0 8px;
}

.conv-head__meta {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 20px;
}

.conv-thread {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 16px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  background: var(--gray-50);
  margin-bottom: 16px;
}

.conv-msg {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  max-width: 92%;
  animation: orderCardIn 0.35s ease both;
}

.conv-msg--user {
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--gray-200);
}

.conv-msg--staff {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #f8fafc;
}

.conv-msg__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.75;
  margin-bottom: 6px;
}

.conv-msg__body {
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.conv-msg__time {
  display: block;
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.55;
}

.conv-compose textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  font: inherit;
  resize: vertical;
  min-height: 88px;
  margin-bottom: 10px;
}

.conv-compose__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.conv-hint {
  font-size: 12px;
  opacity: 0.55;
  flex: 1;
  min-width: 200px;
}

/* Dashboard conversations */
.dashboard-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.dashboard-block__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 4px 0 0;
}

.dashboard-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dashboard-conv-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.dashboard-conv-list li {
  margin-bottom: 8px;
}

.dashboard-conv-list a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
}

.dashboard-conv-list a:hover {
  border-bottom-color: var(--brand);
}

.dashboard-conv-list__empty {
  font-size: 14px;
  opacity: 0.6;
}

.inbox-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.inbox-list__item {
  margin-bottom: 10px;
}

.inbox-list__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inbox-list__link:hover {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.inbox-list__title {
  font-weight: 600;
  font-size: 14px;
}

.inbox-list__meta {
  font-size: 12px;
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .order-card,
  .conv-msg,
  .conv-banner {
    animation: none;
  }

  .order-thanks--pop {
    transform: none;
  }
}
