/* ============================================================
 * furo.fit — site styles (plain CSS, no Tailwind, no preprocessor)
 * ============================================================ */

:root {
  --teal: #007F79;
  --teal-2: #0BA9AA;
  --teal-hover: #006B66;
  --blue: #2F65EF;
  --blue-2: #5491FE;
  --ink: #0B1220;
  --ink-soft: #4A5566;
  --bg: #FAFCFD;
  --surface: #FFFFFF;
  --border: rgba(11, 18, 32, 0.06);
  --border-strong: rgba(11, 18, 32, 0.10);
  --accent-bg: #F1F8F9;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 80px -30px rgba(15, 42, 80, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; line-height: 1.5;  overflow-x: hidden;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.eyebrow {
  align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: rgba(0,127,121,0.4); }

.section-heading {
  margin-top: 16px; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.08;
  font-weight: 600; letter-spacing: -0.03em; max-width: 760px;
}
.section-sub { margin-top: 20px; max-width: 640px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.text-gradient { color: var(--teal); }
.text-soft { color: var(--ink-soft); }

section { padding: 64px 0; }
@media (min-width: 1024px) { section { padding: 88px 0; } }

/* -------- CTA system -------- */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; line-height: 1;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn-primary {
  padding: 12px 20px; border-radius: var(--radius);
  background: var(--teal); color: #fff; border: 1.5px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); }
.btn-secondary {
  padding: 10.5px 18.5px; border-radius: var(--radius);
  background: #fff; color: var(--teal); border: 1.5px solid var(--teal);
}
.btn-secondary:hover { background: rgba(11,169,170,0.08); }
.btn-tertiary { color: var(--teal); }
.btn-tertiary:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-on-dark { background: #fff; color: var(--teal); border-color: #fff; }
.btn-on-dark:hover { background: #f4f4f4; border-color: #f4f4f4; }

/* ============ NAVBAR ============ */
.navbar { height:72px;border-radius:20px;position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; padding: 16px; }
.navbar-inner {
  width: 100%; max-width: 1440px;
  display: flex; align-items: center; gap: 12px; padding: 10px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  box-shadow: 0 10px 40px -10px rgba(15,42,80,0.12);
}
@@media (max-width:768px){
    .navbar{
        height:72px;
        padding:0 18px;
        border-radius:20px;
    }
    .navbar-brand img{
        height:34px;
        width:auto;
    }
    .menu-toggle{
        width:42px;
        height:42px;
    }
}
.navbar-logo { display: flex; align-items: center; padding: 0 6px; }
.navbar-logo img { height: 30px; width: auto; }
.navbar-links { display: none; gap: 4px; margin: 0 auto; }
@media (min-width: 1024px) { .navbar-links { display: flex; align-items: center; } }
.navbar-link {
  padding: 8px 14px; font-size: 13.5px; color: var(--ink-soft);
  border-radius: 999px; background: transparent;
  transition: background 150ms, color 150ms;
}
.navbar-link:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

/* Resources dropdown — hover + focus-within */
.has-dropdown { position: relative; }
.has-dropdown > .navbar-link { display: inline-flex; align-items: center; gap: 4px; }
.has-dropdown > .navbar-link::after {
  content: ""; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.dropdown {
  position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, 4px);
  width: 440px; padding-top: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100000;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.dropdown-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: 0 24px 60px -20px rgba(15,42,80,0.25); }
.dropdown-head { padding: 0 4px 12px; border-bottom: 1px solid var(--border); }
.dropdown-head .label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.dropdown-head p { margin-top: 6px; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); }
.dropdown-list { margin-top: 8px; display: flex; flex-direction: column; }
.dropdown-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--radius); transition: background 150ms; }
.dropdown-item:hover { background: var(--accent-bg); }
.dropdown-icon { flex-shrink: 0; width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--radius); background: rgba(11,169,170,0.10); color: var(--teal); font-size: 18px; }
.dropdown-item .title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.dropdown-item .desc { margin-top: 2px; font-size: 12px; line-height: 1.5; color: var(--ink-soft); }
.dropdown-item .cta { margin-top: 6px; display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--teal); }
.has-dropdown {
    position: relative;
}
.navbar-cta { margin-left: auto; display: none; align-items: center; gap: 8px; }
@media (min-width: 640px) { .navbar-cta { display: flex; } }
@media (min-width: 1024px) { .navbar-cta { margin-left: 0; } }
.nav-download { padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--teal); background: #fff; border: 1.5px solid var(--teal); border-radius: var(--radius); }
.nav-download:hover { background: rgba(11,169,170,0.08); }

.navbar-burger { margin-left: auto; padding: 10px 8px; background: transparent; border: 0; border-radius: 999px; }
.navbar-burger:hover { background: rgba(0,0,0,0.05); }
@media (min-width: 1024px) { .navbar-burger { display: none; } }
.navbar-burger span, .navbar-burger span::before, .navbar-burger span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative; border-radius: 2px;
}
.navbar-burger span::before { content: ""; position: absolute; top: -6px; }
.navbar-burger span::after { content: ""; position: absolute; top: 6px; }

#nav-toggle { display: none; }
.mobile-menu { display: none; position: fixed; left: 12px; right: 12px; top: 80px; background: rgba(255,255,255,0.97); border-radius: 24px; padding: 16px; box-shadow: 0 20px 60px -20px rgba(15,42,80,0.18); z-index: 49; }
.mobile-menu a { display: block; padding: 12px; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: 0; }
#nav-toggle:checked ~ .mobile-menu { display: block; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: 140px 0 72px;
  background: radial-gradient(ellipse at top, rgba(11,169,170,0.06), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(84,145,254,0.05), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 10px 40px -10px rgba(15,42,80,0.10);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-badge::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--teal-2); }
.hero h1 { margin-top: 24px; font-size: clamp(28px, 5vw, 54px); line-height: 1.05; font-weight: 600; letter-spacing: -0.03em; }
.hero p.lead { margin-top: 24px; max-width: 560px; font-size: 17px; line-height: 1.6; color: var(--ink-soft); padding-right: 5px;}
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-metrics { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 480px; }
.hero-metrics .v { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; color: var(--teal); }
.hero-metrics .l { margin-top: 4px; font-size: 12.5px; color: var(--ink-soft); }
.hero-visual { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: linear-gradient(135deg, #e6f4f4, #dde6f9); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============ TRUST STRIP ============ */
.trust{
    padding:110px 0;
    background:#FAFBFC;
}
.trust-head { text-align: center; max-width: 720px; margin: 0 auto; }
.trust-head .eyebrow { justify-content: center; }
.logo-row { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
@media (min-width: 640px) { .logo-row { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logo-row { grid-template-columns: repeat(8, 1fr); } }
.logo-tile{
    width:140px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:#fff;
    border:1px solid rgba(11,18,32,.05);
    border-radius:28px;
    box-shadow:0 8px 30px rgba(15,42,80,.05);
}
.logo-tile:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,42,80,.08);
}
.logo-tile img{
 width:110px;
    height:55px;
    object-fit:contain;
    object-position:center;
    display:block;
}
.logo-tile:hover img { opacity: 1; filter: none; }
.logo-wordmark { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink-soft); }

.trust-headline { margin: 80px auto 0; text-align: center; max-width: 720px; }
.trust-headline h2 { font-size: clamp(26px, 3.6vw, 44px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
.trust-headline p { margin-top: 20px; font-size: 17px; color: var(--ink-soft); line-height: 1.65; }

.metric-grid { margin-top: 64px; display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card { position: relative; padding: 28px 24px; background: rgba(255,255,255,0.85); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.metric-card::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 2px; border-radius: 2px; background: var(--teal); }
.metric-card .v { font-size: 36px; line-height: 1; font-weight: 800; letter-spacing: -0.02em; color: var(--teal); }
.metric-card .l { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--ink); }
.metric-card .s { margin-top: 4px; font-size: 12px; color: var(--ink-soft); }

/* ============ PROBLEM / INSIGHT / DIFFERENT ============ */
.bad-list, .good-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.bad-list li, .good-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.bad-list li .ic, .good-list li .ic { flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; margin-top: 2px; font-size: 11px; font-weight: 700; }
.bad-list .ic { background: rgba(11,18,32,0.06); color: var(--ink-soft); }
.good-list .ic { background: var(--teal); color: #fff; }
.bad-list li { color: var(--ink-soft); }

.pain-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card { display: flex; align-items: flex-start; gap: 12px; padding: 20px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--border); border-radius: var(--radius-lg);
  font-size: 14.5px; line-height: 1.45; }
.pain-card .ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px; background: rgba(11,18,32,0.05); color: var(--ink-soft); display: grid; place-items: center; font-size: 13px; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1.05fr; gap: 64px; } }
.two-col .visual { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.two-col .visual img { width: 100%; height: 100%; object-fit: cover; }

.compare { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-card { padding: 32px; background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: var(--radius-2xl); }
.compare-card.good { background: linear-gradient(180deg, #fff, #F2F9FB); box-shadow: 0 0 0 1px rgba(11,169,170,0.18), var(--shadow); }
.compare-card .label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.compare-card.good .label { color: var(--teal); }
.compare-card h3 { margin-top: 12px; font-size: 28px; font-weight: 600; letter-spacing: -0.025em; }

/* ============ PARTICIPATION LOOP ============ */
.loop { margin-top: 56px; position: relative; overflow: hidden; padding: 32px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--border); border-radius: var(--radius-2xl); }
.loop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .loop-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.loop-step { padding: 16px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.8); border: 1px solid var(--border); }
.loop-step .ic { width: 36px; height: 36px; border-radius: 12px; background: var(--teal); color: #fff; display: grid; place-items: center; margin-bottom: 12px; font-size: 16px; }
.loop-step .n { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.loop-step .t { margin-top: 2px; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }

/* ============ ECOSYSTEM BENTO ============ */
.ecosystem { background: linear-gradient(180deg, #F5FAFB 0%, #EEF5F9 100%); }
.ecosystem-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.ecosystem-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.ecosystem-head p { margin-top: 20px; font-size: 17px; color: var(--ink-soft); line-height: 1.65; }
.bento { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento .col-3 { grid-column: span 3; }
  .bento .col-2 { grid-column: span 2; }
  .bento .col-4 { grid-column: span 4; }
}
.bento-card { position: relative; padding: 28px; background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 2px 24px -8px rgba(15,42,80,0.08); display: flex; flex-direction: column; gap: 8px; }
.bento-card .eyebrow { color: var(--teal); }
.bento-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.bento-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.bento-stats { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 20px; }
.bento-stats .v { font-size: 18px; font-weight: 700; color: var(--teal); }
.bento-stats .l { font-size: 11px; color: var(--ink-soft); }
.bento-stats .sep { width: 1px; height: 32px; background: var(--border); }

/* ============ ROI DASHBOARD ============ */
.roi-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 1024px) { .roi-grid { grid-template-columns: 2fr 1fr; } }
.roi-main { padding:32px;
            border-radius:32px;
            background:#fff;
            box-shadow:
            0 12px 40px rgba(15,42,80,.06);
          }
.roi-main-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.roi-main-title { display: flex; align-items: center; gap: 10px; }
.roi-main-title .ic { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,127,121,0.10); color: var(--teal); display: grid; place-items: center; }
.roi-main-title .t { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.roi-main-title .s { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.roi-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: #FFFBEB; color: #B45309; border: 1px solid #FDE68A; font-size: 11px; font-weight: 500; }
.roi-tag::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #F59E0B; }
.roi-hero { margin-top: 22px; padding: 28px; background: rgba(250,252,253,0.6); border: 1px solid var(--border); border-radius: 26px; }
.roi-hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.roi-hero .label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.roi-hero .value { margin-top: 8px; font-size: 58px; line-height: 1; font-weight: 700; letter-spacing: -0.02em; color: var(--teal); }
.roi-hero .pill { display: inline-flex; align-items: center; gap: 4px; margin-left: 12px; padding: 2px 8px; border-radius: 999px; background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; font-size: 11px; font-weight: 500; vertical-align: middle; }
.roi-hero .desc { font-size: 12px; color: var(--ink-soft); max-width: 240px; text-align: right; line-height: 1.5; }
.roi-bar { margin-top: 24px; display: flex; height: 12px; background: rgba(11,18,32,0.04); border-radius: 999px; overflow: hidden; }
.roi-bar > div { height: 100%; }
.roi-legend { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; color: var(--ink-soft); }
.roi-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; margin-right: 6px; }
.roi-legend strong { color: var(--ink); font-weight: 500; margin-left: 4px; }
.kpi-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.kpi { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 24px; min-height:210px;}
.kpi .head { display: flex; align-items: flex-start; justify-content: space-between; }
.kpi .l { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.kpi .trend {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ECFDF5;
    color: #059669;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}
.kpi .v { margin-top: 145px; font-size: 38px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: #059669; }
.kpi.teal .v { color: var(--teal); }
.kpi .s { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.roi-side{
    display:flex;
    flex-direction:column;
    gap:24px;
}
.roi-side-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:32px;
    padding:28px;
    box-shadow:0 12px 40px rgba(15,42,80,.05);
}
.roi-side-card .top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    font-size:12px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--ink-soft);

    margin-bottom:8px;
}
.behaviour-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:20px 0;

    border-top:1px solid var(--border);
}

.behaviour-row:first-of-type { border-top: 0; }

.behaviour-row .l{
    font-size:12px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--ink-soft);
}
.behaviour-row .v{
    margin-top:6px;

    font-size:34px;

    font-weight:700;

    letter-spacing:-0.02em;
}
.behaviour-row .from{
    margin-left:8px;

    font-size:12px;

    color:var(--ink-soft);

    font-weight:500;
}

.behaviour-row .delta{
    font-size:14px;

    font-weight:600;

    color:#059669;
}
.security-card{
    position:relative;

    padding:28px;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #0D3765 0%,
        #143F73 45%,
        #0B2748 100%
    );

    border-radius:32px;

    box-shadow:
    0 18px 50px rgba(11,30,60,.28);
}
.security-card .top{
    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    opacity:.85;
}
.security-card .row{
    margin-top:20px;

    display:flex;

    align-items:center;

    gap:18px;
}
.security-card .badges{
    display:flex;
    gap:12px;
}
.security-card .badge{
    width:66px;
    height:66px;

    border-radius:999px;

    background:#fff;

    padding:8px;

    display:grid;

    place-items:center;

    box-shadow:
    0 8px 24px rgba(0,0,0,.22);
}
.security-card .badge img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.security-card .title{
    font-size:18px;
    font-weight:700;
    letter-spacing:-0.02em;
}
.security-card .sub{
    font-size:12px;
    opacity:.82;
}
.security-card .body{
    margin-top:18px;

    font-size:13px;

    line-height:1.7;

    opacity:.88;
}
/* ============ STORIES (server-rendered 3-up grid) ============ */
.stories { background: linear-gradient(180deg, #FAFCFD 0%, #F2F6FA 100%); position: relative; }
.stories-head { text-align: center; max-width: 800px; margin: 0 auto; }
.stories-head .eyebrow { justify-content: center; }
.stories-head h2 { margin-top: 24px; font-size: clamp(28px, 4.6vw, 54px); line-height: 1.05; font-weight: 600; letter-spacing: -0.03em; }
.stories-head p { margin-top: 20px; font-size: 17px; color: var(--ink-soft); line-height: 1.65; }
.stories-grid { margin-top: 64px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stories-grid { grid-template-columns: repeat(3, 1fr); } }
.story-card { padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 24px 60px -30px rgba(15,42,80,0.18); display: flex; flex-direction: column; }
.story-card .tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(11,18,32,0.04); border: 1px solid var(--border); font-size: 11px; color: var(--ink-soft); }
.story-card .quote-mark { font-size: 28px; color: var(--teal-2); line-height: 1; margin-top: 16px; }
.story-card blockquote { margin: 12px 0 0; font-size: 17px; line-height: 1.45; font-weight: 600; letter-spacing: -0.015em; }
.story-card .author { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.story-card .avatar { width: 48px; height: 48px; border-radius: 999px; overflow: hidden; background: #E4EDF5; }
.story-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-card .name { font-size: 14px; font-weight: 600; }
.story-card .role { font-size: 12px; color: var(--ink-soft); }
.story-card .impact { margin-top: 12px; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: var(--teal); color: #fff; font-size: 12px; font-weight: 600; }

/* ============ FINAL CTA ============ */
.final-cta { padding-bottom: 96px; }
.final-cta-inner { position: relative; overflow: hidden; padding: 56px 32px; background: linear-gradient(135deg, #06302F 0%, #0A4F66 50%, #1B3FA0 100%); border-radius: 36px; color: #fff; }
@media (min-width: 1024px) { .final-cta-inner { padding: 72px 80px; } }
.final-cta-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .final-cta-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; } }
.final-cta h2 { margin-top: 24px; font-size: clamp(28px, 4.2vw, 54px); line-height: 1.05; font-weight: 600; letter-spacing: -0.03em; }
.final-cta .lead { margin-top: 20px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.final-cta .pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.trust-card { padding: 28px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; }
.trust-card .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.trust-card .v { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }
.trust-card .l { margin-top: 4px; font-size: 11px; color: rgba(255,255,255,0.7); }
.trust-card .sep { height: 1px; background: rgba(255,255,255,0.10); margin: 20px 0; }
.trust-card ul { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.trust-card ul li { display: flex; gap: 10px; align-items: flex-start; }
.trust-card ul li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #A6F3F0; margin-top: 8px; }

/* ============ FOOTER ============ */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #F4F8FB 0%, #EEF4FA 50%, #E4EDF5 100%); padding: 80px 0 40px; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.footer-brand img { height: 32px; width: auto; opacity: 0.9; }
.footer-brand p { margin-top: 20px; max-width: 320px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.footer-contact a:hover { color: var(--teal); }
.footer-address { margin-top: 16px; font-style: normal; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.footer-socials { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink-soft); transition: background 200ms, color 200ms, border-color 200ms; }
.footer-socials a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.footer-col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: var(--ink-soft); }
.footer-col li a:hover { color: var(--teal); }
.app-badges { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.app-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; border: 1px solid #d1d5db; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 200ms, box-shadow 200ms; }
.app-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.app-badge .label { display: flex; flex-direction: column; }
.app-badge .label .small { font-size: 8.5px; line-height: 1; color: var(--ink-soft); }
.app-badge .label .big { font-size: 13px; font-weight: 600; line-height: 1.1; color: var(--ink); }
.newsletter { margin-top: 24px; }
.newsletter .footer-col-title { margin-bottom: 12px; display: block; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input { flex: 1; height: 40px; padding: 0 14px; border: 1px solid var(--border-strong); border-radius: var(--radius); font-size: 13px; color: var(--ink); background: #fff; }
.newsletter input:focus { outline: none; border-color: var(--teal-2); box-shadow: 0 0 0 3px rgba(11,169,170,0.15); }
.newsletter button { height: 40px; padding: 0 20px; border: 0; border-radius: var(--radius); background: var(--teal); color: #fff; font-size: 13px; font-weight: 600; }
.newsletter button:hover { background: var(--teal-hover); }
.footer-bottom { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--ink-soft); }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a:hover { color: var(--teal); }

/* ============ CASE STUDIES PAGE ============ */
.cs-hero { padding: 144px 0 64px; text-align: center; background: radial-gradient(800px 360px at 50% 0, rgba(11,169,170,0.10), transparent 70%); }
.cs-hero h1 { margin-top: 24px; font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.cs-hero p { margin: 20px auto 0; max-width: 640px; font-size: 18px; color: var(--ink-soft); line-height: 1.6; }
.cs-hero .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid rgba(11,169,170,0.25); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.cs-hero .badge::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--teal); }

.cs-featured { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 18px 60px -24px rgba(15,42,80,0.18); display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .cs-featured { grid-template-columns: 1.1fr 1fr; } }
.cs-featured-left { padding: 40px; }
@media (min-width: 1024px) { .cs-featured-left { padding: 56px; } }
.cs-featured-left .eyebrow { color: var(--teal); font-weight: 700; letter-spacing: 0.16em; font-size: 11px; text-transform: uppercase; }
.cs-featured-left .eyebrow::before { display: none; }
.cs-featured-meta { margin-top: 16px; display: flex; align-items: center; gap: 16px; }
.cs-logo { width: 96px; height: 48px; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: 12px; display: grid; place-items: center; }
.cs-logo img { max-height: 28px; max-width: 100%; object-fit: contain; }
.cs-featured-left h2 { margin-top: 20px; font-size: clamp(22px, 3vw, 32px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.cs-block { margin-top: 20px; }
.cs-block .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.cs-block p { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cs-featured-right { position: relative; overflow: hidden; color: #fff; padding: 40px; background: linear-gradient(135deg, #0B1220 0%, #0E1A33 50%, #0B1220 100%); }
@media (min-width: 1024px) { .cs-featured-right { padding: 56px; } }
.cs-featured-right .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.cs-featured-results { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-featured-results .v { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: #A6F3F0; }
.cs-featured-results .l { margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4; }

.cs-grid { margin-top: 32px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cs-grid { grid-template-columns: repeat(3, 1fr); } }
.cs-grid-title { margin-bottom: 24px; font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.02em; }
.cs-card { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 20px; transition: transform 400ms, box-shadow 400ms; }
.cs-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px -16px rgba(47,101,239,0.22); }
.cs-card .head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cs-card .head img { max-height: 28px; max-width: 80px; object-fit: contain; }
.cs-card .industry { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.cs-card .emp { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); }
.cs-card .body { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.cs-card .body .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.cs-card .body p { margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.cs-card .results { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 6px; }
.cs-card .results span { padding: 4px 10px; border-radius: 999px; background: var(--accent-bg); color: var(--ink); font-size: 11.5px; font-weight: 600; }

.cs-outcomes { margin-top: 32px; padding: 40px; background: #fff; border: 1px solid var(--border); border-radius: 28px; }
@media (min-width: 1024px) { .cs-outcomes { padding: 56px; } }
.cs-outcomes .head { text-align: center; max-width: 540px; margin: 0 auto; }
.cs-outcomes h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.02em; }
.cs-outcomes .head p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.cs-outcomes .row { margin-top: 40px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cs-outcomes .row { grid-template-columns: repeat(3, 1fr); } }
.cs-outcomes .cell { padding: 24px; text-align: center; border: 1px solid var(--border); border-radius: 20px; }
.cs-outcomes .cell .ic { margin: 0 auto; width: 40px; height: 40px; border-radius: 12px; background: rgba(11,169,170,0.10); color: var(--teal); display: grid; place-items: center; }
.cs-outcomes .cell .v { margin-top: 16px; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--teal); }
.cs-outcomes .cell .l { margin-top: 4px; font-size: 13px; color: var(--ink-soft); }

.cs-tests { margin-top: 32px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .cs-tests { grid-template-columns: repeat(3, 1fr); } }
.cs-test { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.cs-test .qm { color: var(--teal-2); font-size: 22px; line-height: 1; }
.cs-test blockquote { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--ink); }
.cs-test figcaption { margin-top: 16px; font-size: 12.5px; }
.cs-test .name { font-weight: 600; color: var(--ink); }
.cs-test .role { color: var(--ink-soft); }

.cs-final { margin-top: 32px; padding: 56px; text-align: center; color: #fff; background: linear-gradient(135deg, #0B1220 0%, #0E1A33 50%, #0B1220 100%); border-radius: 28px; }
@media (min-width: 1024px) { .cs-final { padding: 72px; } }
.cs-final h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; }
.cs-final p { margin: 12px auto 0; max-width: 560px; color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width:768px){

    .container,
    .container-lg,
    .container-md,
    .container-sm{
        padding-left:18px;
        padding-right:18px;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:30px;
    }

    h3{
        font-size:22px;
    }

    section{
        padding:56px 0;
    }

    img{
        max-width:100%;
        height:auto;
    }
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-cta > .btn-primary,
    .hero-cta > .btn-on-dark {
        width: 50% !important;
        min-width: 150px;
        padding: 14px 28px;
        flex: 0 0 auto;
    }
.testimonial-card {
    max-width: 300px;
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .testimonial-card blockquote,
  .testimonial-card .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 16px 0;
  }

  .testimonial-card .quote-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .testimonial-card .author {
    margin-top: 20px;
    gap: 12px;
  }

  .testimonial-card .author img {
    width: 56px;
    height: 56px;
  }

  .testimonial-card .author h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .testimonial-card .author p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .testimonial-card .badge {
    padding: 6px 14px;
    font-size: 11px;
  }
  .stories-stage{
        height:auto;
        min-height:540px;
    }

    .story-card{
        width:100%;
        max-width:100%;
        left:50%;
    }

    .story-card .card-inner{
        min-height:auto;
        height:auto;
        padding:20px;
        border-radius:24px;
    }

    .story-card .top-row{
        gap:8px;
        align-items:flex-start;
    }

    .story-card .featured-badge,
    .story-card .tag{
        font-size:10px;
        padding:5px 10px;
    }

    .story-card .quote-zone{
        margin-top:16px;
    }

    .story-card .quote-icon{
        width:28px;
        height:28px;
    }

    .story-card blockquote{
        font-size:16px;
        line-height:1.45;
        -webkit-line-clamp:5;
    }

    .story-card .footer-row{
        margin-top:18px;
        padding-top:18px;
        flex-direction:row;
        align-items:center;
    }

    .story-card .author{
        gap:10px;
    }

    .story-card .author .avatar{
        width:48px;
        height:48px;
    }

    .story-card .author .name{
        font-size:15px;
    }

    .story-card .author .role{
        font-size:12px;
        line-height:1.35;
    }

    .story-card .impact{
        display:none;
    }

    .roi-main{
            padding:16px;
            border-radius:20px;
        }

        .roi-main-head{
            display:flex;
            flex-direction:column;
            align-items:flex-start;
            gap:12px;
        }

        .roi-main-title .t{
            font-size:20px;
            line-height:1.25;
        }

        .roi-main-title .s{
            font-size:13px;
            line-height:1.45;
        }

        .roi-tag{
            font-size:11px;
            padding:5px 10px;
        }

        .roi-hero{
            padding:18px;
            border-radius:18px;
        }

        .roi-hero-row{
            display:flex;
            flex-direction:column;
            align-items:center;
            text-align:center;
            gap:14px;
        }

        .roi-hero .label{
            font-size:12px;
        }

        .roi-hero .value{
            font-size:52px;
            line-height:1;
            margin-top:6px;
        }

        .roi-hero .pill{
            margin:10px auto 0;
            font-size:11px;
        }

        .roi-hero .desc{
            max-width:100%;
            text-align:center;
            font-size:14px;
            line-height:1.5;
        }

        .roi-bar{
            margin:18px 0;
            height:8px;
        }

        .roi-legend{
            display:grid;
            grid-template-columns:1fr;
            gap:10px;
        }

        .roi-legend span{
            display:flex;
            justify-content:space-between;
            align-items:center;
            font-size:13px;
        }

        .kpi-grid{
            grid-template-columns:1fr;
            gap:14px;
        }

        .kpi{
            min-height:auto;
            padding:18px;
        }

        .kpi .v{
            margin-top:40px;
            font-size:28px;
        }
  }

  .delta{
      display: inline-flex;
      align-items: center;
      gap: 2px;
  }

  .delta img{
      width: 18px;
      height: 18px;
  }
          .bc-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px -12px rgba(15, 42, 80, 0.10);
    padding: 28px;
    max-width: 380px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F2A50;
  }

  .bc-header {
    display: flex;
      align-items: center;
      gap: 14px;
       padding: 0 0 18px 0;
  }

  .bc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F2F1;
    color: #007F79;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    width: fit-content;
  }

  .bc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: block;
    line-height: 0;
    align-items: center;
    justify-content: center;
  }

  .bc-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .bc-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    color: #0B1220;
    letter-spacing: -0.01em;
  }

  .bc-subtext {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    color: #6B7A8F;
  }

  .bc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
  }

  .bc-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .bc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #52637A;
  }

  .bc-value {
    font-size: 34px;
    font-weight: 700;
    color: #0F2A50;
    line-height: 1;
  }

  .bc-unit {
    font-size: 18px;
    font-weight: 600;
    margin-left: 2px;
  }

  .bc-right {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .bc-right img{
        width: 18px;
        height: 18px;
    }

  .bc-change {
    font-size: 14px;
    font-weight: 700;
    color: #007F79;
  }

  .bc-from {
    font-size: 12px;
    font-weight: 500;
    color: #52637A;
  }

  .bc-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 4px 0;
  }

  .newsletter {gap: 8px; }
  .newsletter p { margin-top: 10px; font-size: 11.5px; color: var(--ink-soft); }
  .newsletter input {
    flex: 1; height: 40px; padding: 0 14px;
    border-radius: 12px; background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 13px; color: #0B1220;
    transition: border-color .2s, box-shadow .2s, opacity .2s;
    outline: none;
  }
  .newsletter input::placeholder { color: rgba(74,85,102,0.4); }
  .newsletter input:focus {
    border-color: rgba(11,169,170,0.3);
    box-shadow: 0 0 0 1px rgba(11,169,170,0.4);
  }
  .newsletter input:disabled { opacity: .7; }

  /* subscribed state on input */
  .newsletter.is-subscribed input {
    border-color: rgba(16,185,129,0.5);
    box-shadow: 0 0 0 1px rgba(16,185,129,0.3);
  }
.newsletter{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
}

.newsletter button{
    width:140px;
    min-width:140px;
    flex:0 0 140px;
    white-space:nowrap;
}
  .newsletter button {
    height: 40px; padding: 0 20px;
    border-radius: 12px; border: 0; color: #fff;
    font-size: 13px; font-weight: 600;
    background: #007F79;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    transition: background-color .3s, transform .3s;
    cursor: pointer;
  }
  .newsletter button:hover:not(:disabled) { background: #006B66; }
  .newsletter button:disabled { cursor: not-allowed; }

  .newsletter.is-sending button    { background: rgba(0,127,121,0.9); }
  .newsletter.is-subscribed button { background: #059669; transform: scale(0.97); }

  /* fade-in on label swap */
  .nl-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: fadeIn .3s ease-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===== Request Demo submit button ===== */
  .fd-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: #007F79;
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    transition:
      background-color .25s ease,
      transform .25s ease,
      box-shadow .25s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  }

  .fd-submit:hover:not(:disabled) {
    background: #006B66;
  }

  .fd-submit:active:not(:disabled) {
    transform: translateY(1px);
  }

  .fd-submit:disabled {
    cursor: not-allowed;
  }

  .fd-submit .label-idle,
  .fd-submit .label-sending,
  .fd-submit .label-sent {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    animation: fdLabelIn .25s ease both;
  }

  .fd-submit[data-status="idle"] .label-idle {
    display: inline-flex;
  }

  .fd-submit[data-status="sending"] {
    background: rgba(0, 127, 121, .9);
  }

  .fd-submit[data-status="sending"] .label-sending {
    display: inline-flex;
  }

  .fd-submit[data-status="sent"] {
    background: #059669;
    transform: scale(.98);
  }

  .fd-submit[data-status="sent"] .label-sent {
    display: inline-flex;
  }

  .fd-submit[data-status="sent"]:hover {
    background: #059669;
  }

  @keyframes fdLabelIn {
    from {
      opacity: 0;
      transform: translateY(2px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .fd-foot {
    margin: 4px 0 0;
    text-align: center;
    font-size: 11.5px;
    color: rgba(74, 85, 102, .8);
  }

  /* ===== Success state ===== */
  .fd-success {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fd-success[hidden] {
    display: none !important;
  }

  .fd-check {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--fd-teal), var(--fd-teal-2));
    font-size: 28px;
  }

  .fd-success h3 {
    margin: 20px 0 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
  }

  .fd-success p {
    margin: 8px 0 0;
    max-width: 360px;
    font-size: 14px;
    color: var(--fd-ink-soft);
  }

  .fd-success button {
    margin-top: 24px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 0;
    background: rgba(11, 18, 32, .05);
    color: var(--fd-ink);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
  }

  .fd-success button:hover {
    background: rgba(11, 18, 32, .08);
  }

  /* ===== Decorative blobs on left panel ===== */
  .fd-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(48px);
    pointer-events: none;
  }

  .fd-blob.a {
    top: -128px;
    left: -96px;
    width: 288px;
    height: 288px;
    background: rgba(11, 169, 170, .30);
  }

  .fd-blob.b {
    bottom: -128px;
    right: -96px;
    width: 320px;
    height: 320px;
    background: rgba(84, 145, 254, .25);
  }
