/* ============================================================
   SYNE ONE — SHARED STYLESHEET
   Design tokens, base, nav, components, footer, utilities
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --cyan: #16c0ef;
  --cyan-dark: #0ea5d4;
  --cyan-deep: #0284a8;
  --cyan-pale: #e0f7fd;
  --cyan-xpale: #f0fbfe;

  --violet: #7c3aed;
  --violet-dark: #5b21b6;
  --violet-pale: #ede9fe;

  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --indigo-pale: #e0e7ff;

  --emerald: #10b981;
  --emerald-dark: #047857;
  --emerald-pale: #d1fae5;

  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --teal-pale: #ccfbf1;
  --teal-xpale: #f0fdfa;

  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-pale: #fef3c7;

  --coral: #f43f5e;
  --coral-pale: #ffe4e6;

  --ink: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --bg-white: #ffffff;
  --bg-snow: #f8fafc;
  --bg-ice: #f1f5f9;
  --bg-frost: #eef2f7;
  --bg-lilac: #f5f3ff;
  --bg-mint: #f0fdf9;
  --bg-cream: #fffbeb;

  --nav-h: 64px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.sec-intro .badge {
  margin-bottom: 14px;
}
.sec-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.sec-intro h2 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.sec-intro p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
}

/* ── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-cyan {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.badge-violet {
  background: var(--violet-pale);
  color: var(--violet-dark);
}
.badge-indigo {
  background: var(--indigo-pale);
  color: var(--indigo-dark);
}
.badge-emerald {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.badge-teal {
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.badge-amber {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.badge-ink {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

/* ── TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}
.tag-cyan {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}
.tag-violet {
  background: var(--violet-pale);
  color: var(--violet-dark);
}
.tag-indigo {
  background: var(--indigo-pale);
  color: var(--indigo-dark);
}
.tag-emerald {
  background: var(--emerald-pale);
  color: var(--emerald-dark);
}
.tag-teal {
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.tag-amber {
  background: var(--amber-pale);
  color: var(--amber-dark);
}
.tag-coral {
  background: var(--coral-pale);
  color: var(--coral);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 6px 24px rgba(22, 192, 239, 0.35);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(22, 192, 239, 0.4);
}
.btn-violet {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}
.btn-violet:hover {
  background: var(--violet-dark);
  transform: translateY(-1px);
}
.btn-emerald {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.3);
}
.btn-emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 13px;
}
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── STRIPE ACCENTS ─────────────────────────────────────────── */
.stripe-cyan {
  border-top: 3px solid var(--cyan);
}
.stripe-violet {
  border-top: 3px solid var(--violet);
}
.stripe-indigo {
  border-top: 3px solid var(--indigo);
}
.stripe-emerald {
  border-top: 3px solid var(--emerald);
}
.stripe-teal {
  border-top: 3px solid var(--teal);
}
.stripe-amber {
  border-top: 3px solid var(--amber);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.top-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-left: 1.5px solid var(--border);
  padding-left: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--bg-snow);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn-nav-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s;
}
.btn-nav-login:hover {
  color: var(--ink);
}
.btn-nav-primary {
  background: var(--cyan);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 9px;
  transition: all 0.18s;
}
.btn-nav-primary:hover {
  background: var(--cyan-dark);
}

/* ── PAGE HERO (standard) ───────────────────────────────────── */
.page-hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(22, 192, 239, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero-inner h1 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.page-hero-inner > p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  background: var(--cyan-pale);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* ── DUAL-COLUMN LAYOUT ─────────────────────────────────────── */
.dual-sec {
  padding: 80px 0;
}
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dual-layout.reverse {
  direction: rtl;
}
.dual-layout.reverse > * {
  direction: ltr;
}

.dual-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.dual-copy h2 em {
  font-style: italic;
}
.dual-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.fl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fl-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.fl-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.fl-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MOCK PANEL ─────────────────────────────────────────────── */
.mock-panel {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-snow);
}
.mp-dots {
  display: flex;
  gap: 5px;
}
.mp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mp-dot:nth-child(1) {
  background: #ff5f57;
}
.mp-dot:nth-child(2) {
  background: #febc2e;
}
.mp-dot:nth-child(3) {
  background: #28c840;
}
.mp-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.mp-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mp-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--emerald-dark);
  background: var(--emerald-pale);
  padding: 3px 9px;
  border-radius: 999px;
}
.mp-live::before {
  content: "●";
  font-size: 0.5rem;
}
.mp-body {
  padding: 20px;
}

/* KPI grid inside panel */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.kpi-box {
  background: var(--bg-snow);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.kpi-val {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}
.kpi-lbl {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.kpi-chg {
  font-size: 0.67rem;
  font-weight: 700;
  margin-top: 4px;
}
.chg-up {
  color: var(--emerald-dark);
}
.chg-dn {
  color: var(--coral);
}

/* Mini bars inside panel */
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
  margin: 12px 0 4px;
}
.mini-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  height: var(--h);
}

/* Activity feed inside panel */
.feed-list {
  display: flex;
  flex-direction: column;
}
.feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
}
.feed-row:last-child {
  border-bottom: none;
}
.feed-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.feed-txt {
  flex: 1;
  color: var(--text-muted);
  line-height: 1.4;
}
.feed-txt strong {
  color: var(--ink);
}
.feed-time {
  font-size: 0.68rem;
  color: var(--text-light);
}

/* ── CARD GRID ──────────────────────────────────────────────── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.syne-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.syne-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.syne-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.syne-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.syne-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Card top-border accent */
.syne-card.accent-cyan {
  border-top: 3px solid var(--cyan);
}
.syne-card.accent-violet {
  border-top: 3px solid var(--violet);
}
.syne-card.accent-indigo {
  border-top: 3px solid var(--indigo);
}
.syne-card.accent-emerald {
  border-top: 3px solid var(--emerald);
}
.syne-card.accent-teal {
  border-top: 3px solid var(--teal);
}
.syne-card.accent-amber {
  border-top: 3px solid var(--amber);
}

/* ── STAT STRIP ─────────────────────────────────────────────── */
.stat-strip {
  background: var(--bg-snow);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stat-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 6px 44px;
}
.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-val span {
  color: var(--cyan);
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-sec {
  padding: 80px 0;
  background: var(--bg-ice);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-g1 {
  width: 400px;
  height: 400px;
  background: rgba(22, 192, 239, 0.12);
  top: -100px;
  left: -80px;
}
.cta-g2 {
  width: 350px;
  height: 350px;
  background: rgba(124, 58, 237, 0.09);
  bottom: -80px;
  right: -60px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.cta-inner p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-note {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-note span::before {
  content: "✓ ";
  color: var(--emerald);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-left: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-left: 9px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social a:hover {
  background: rgba(22, 192, 239, 0.25);
  color: #fff;
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fl-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.fl-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fl-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}
.fl-col a:hover {
  color: var(--cyan);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
.fl-legal {
  display: flex;
  gap: 18px;
}
.fl-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.15s;
}
.fl-legal a:hover {
  color: var(--cyan);
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dual-layout.reverse {
    direction: ltr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-sep {
    display: none;
  }
  .stat-item {
    padding: 10px 24px;
  }
}
@media (max-width: 640px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .page-hero-inner h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 420px) {
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-row {
    flex-direction: column;
  }
}

/* Form success state */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 2.5rem;
  background: rgba(45, 94, 58, 0.05);
  border: 1px solid rgba(45, 94, 58, 0.15);
  border-radius: 3px;
  margin-top: 1rem;
}
.cf-success.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.cf-success-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.cf-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--forest);
}
.cf-success-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #c0533a;
}
