@font-face {
  font-family: "Zoho_Puvi_Regular";
  src: url("https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zoho_Puvi_Medium";
  src: url("https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zoho_Puvi_SemiBold";
  src: url("https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Semibold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zoho_Puvi_Bold";
  src: url("https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Bold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --zf-primary-regular: "Zoho_Puvi_Regular", Arial, sans-serif;
  --zf-primary-medium: "Zoho_Puvi_Medium", Arial, sans-serif;
  --zf-primary-semibold: "Zoho_Puvi_SemiBold", Arial, sans-serif;
  --zf-primary-bold: "Zoho_Puvi_Bold", Arial, sans-serif;
  --navy: #07162e;
  --navy-2: #0d1f3d;
  --ink: #0d1b33;
  --muted: #536174;
  --orange: #ff7a00;
  --orange-2: #ef3f36;
  --blue: #0067ff;
  --green: #19b66a;
  --cream: #fff2e0;
  --page: #fff7ea;
  --pale-blue: #eef6ff;
  --card: #ffffff;
  --line: rgba(13, 27, 51, .1);
  --shadow: 0 24px 70px rgba(10, 33, 64, .12);
  --soft-shadow: 0 12px 34px rgba(13, 27, 51, .08);
  --radius-xl: 44px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 17px/1.5 var(--zf-primary-regular);
  color: var(--ink);
  background: var(--page);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  z-index: 1000;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip-link:focus { top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 240, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 27, 51, .08);
}
.top-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 7px 16px;
  font: 13px/1.3 var(--zf-primary-medium);
  color: #fff;
  background: linear-gradient(90deg, var(--navy), #172e55);
}
.top-strip a { color: #ffbe76; }
.nav-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--zf-primary-bold); letter-spacing: -.2px; }
.brand-text { font-size: 24px; }
.nav-links { display: flex; gap: 30px; align-items: center; margin-left: auto; }
.nav-links a, .login-link { font: 15px/1 var(--zf-primary-medium); color: #23334d; }
.nav-links a:hover, .login-link:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 20px; margin-left: 18px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 10px; }
/* Header "Tools" dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { font: 15px/1 var(--zf-primary-medium); color: #23334d; background: none; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown-trigger:hover { color: var(--orange); }
.nav-dropdown-trigger .caret { font-size: 10px; transition: transform .15s ease; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); min-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--soft-shadow); padding: 8px; display: none; flex-direction: column; z-index: 99; }
.nav-dropdown-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; } /* hover bridge across the gap */
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown:hover .nav-dropdown-trigger .caret, .nav-dropdown.open .nav-dropdown-trigger .caret { transform: rotate(180deg); }
.nav-dropdown-menu a { padding: 9px 12px; border-radius: 9px; font: 14px/1.3 var(--zf-primary-medium); color: var(--navy); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: #f4f7fc; color: var(--orange); }
.nav-dropdown-all { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 11px !important; color: var(--orange) !important; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font: 15px/1 var(--zf-primary-semibold);
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--orange), #ff5d00); box-shadow: 0 12px 24px rgba(255, 122, 0, .25); }
.btn-secondary { color: var(--navy); background: #fff; border-color: rgba(13, 27, 51, .18); box-shadow: 0 10px 24px rgba(13, 27, 51, .05); }
.btn-small { min-height: 42px; padding: 0 20px; border-radius: 10px; }
.btn-white { color: var(--orange); background: #fff; }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.full { width: 100%; }

.section { padding: 98px 24px; }
.section-inner, .hero-inner, .dark-inner, .footer-mega, .footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
}
.centered { text-align: center; }
.narrow { max-width: 760px; }
.section-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr); gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 13px;
  font: 13px/1.1 var(--zf-primary-bold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  font: 84px/1.02 var(--zf-primary-semibold);
  letter-spacing: -2.4px;
  margin-bottom: 24px;
  color: var(--navy);
}
h1 span { display: block; color: var(--orange); }
h2 {
  font: 54px/1.02 var(--zf-primary-medium);
  letter-spacing: -1.7px;
  margin-bottom: 18px;
  color: var(--navy);
}
h2 span { color: var(--orange); }
h3 { font: 22px/1.15 var(--zf-primary-semibold); letter-spacing: -.3px; margin-bottom: 10px; }
p { color: var(--muted); }
.section-inner > p { font-size: 20px; line-height: 1.55; }

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 74px 24px 38px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.soft-gradient {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 122, 0, .18), transparent 28%),
    radial-gradient(circle at 74% 10%, rgba(0, 103, 255, .17), transparent 28%),
    radial-gradient(circle at 52% 42%, rgba(71, 216, 180, .18), transparent 26%),
    linear-gradient(120deg, #fff5e8 0%, #eefbff 55%, #f8f0ff 100%);
}
.hero-text { max-width: 630px; font: 24px/1.42 var(--zf-primary-regular); color: #354153; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-badges { list-style: none; padding: 0; margin: 22px 0 0; display: flex; gap: 22px; flex-wrap: wrap; color: #637185; font: 14px/1.4 var(--zf-primary-medium); }
.hero-badges li::before { content: "◎"; color: var(--orange); margin-right: 6px; }
.hero-product { position: relative; }
.product-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(13, 27, 51, .1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.main-insight-card { padding: 20px; transform: rotate(-1deg); }
.product-topbar { display: flex; align-items: center; gap: 8px; padding-bottom: 17px; border-bottom: 1px solid var(--line); color: #27334a; }
.product-topbar strong { font: 15px/1.2 var(--zf-primary-semibold); }
.product-topbar span { margin-left: auto; color: #758199; font-size: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.green { background: var(--green); }
.insight-panel { padding: 20px 2px 16px; }
.insight-label { font: 11px/1 var(--zf-primary-bold); letter-spacing: 1.4px; text-transform: uppercase; color: #7e889b; margin-bottom: 8px; }
.insight-panel h2 { font: 25px/1.22 var(--zf-primary-semibold); letter-spacing: -.6px; margin-bottom: 10px; }
.insight-panel p:last-child { font-size: 14px; margin-bottom: 0; }
.signal-list { display: grid; gap: 12px; }
.signal-list article { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 13px; border: 1px solid rgba(13, 27, 51, .09); border-radius: 16px; background: #fff; }
.signal-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-family: var(--zf-primary-bold); }
.signal-icon.dark { background: var(--navy); }
.signal-icon.orange { background: var(--orange); }
.signal-icon.blue { background: var(--blue); }
.signal-list strong { display: block; font: 14px/1.25 var(--zf-primary-semibold); color: var(--ink); }
.signal-list small { color: #6f7c8d; }
.signal-list small b { color: var(--orange); }
.signal-list a { color: var(--blue); font: 13px/1 var(--zf-primary-semibold); }
.trust-strip { max-width: 900px; margin: 64px auto 0; text-align: center; }
.trust-strip p { font: 13px/1 var(--zf-primary-semibold); color: #526071; margin-bottom: 22px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; color: rgba(15, 31, 55, .58); font: 24px/1 var(--zf-primary-bold); }
.trust-logos img { height: 34px; width: auto; max-width: 150px; object-fit: contain; opacity: .6; filter: grayscale(1); align-self: center; transition: opacity .15s ease, filter .15s ease; }
.trust-logos img:hover { opacity: .9; filter: grayscale(0); }

.light-blue { background: linear-gradient(180deg, #eef8ff 0%, #f7fbff 100%); }
.three-card-row { max-width: 1030px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-card { background: #fff; border: 1px solid rgba(13, 27, 51, .08); border-radius: 18px; padding: 24px; box-shadow: var(--soft-shadow); }
.mini-card.active { border-color: rgba(255, 122, 0, .3); box-shadow: 0 18px 40px rgba(255, 122, 0, .12); }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px; font: 16px/1 var(--zf-primary-bold); }
.mini-icon.blue { color: var(--blue); background: rgba(0, 103, 255, .1); }
.mini-icon.green { color: var(--green); background: rgba(25, 182, 106, .11); }
.mini-icon.orange { color: var(--orange); background: rgba(255, 122, 0, .12); }
.mini-card h3 { font-size: 19px; }
.mini-card p { margin-bottom: 0; font-size: 15px; }

.steps-section { background: #fff; }
.steps-grid { max-width: 1000px; margin: 52px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps-grid article { text-align: center; position: relative; }
.step-number { width: 34px; height: 34px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #fff2e5; color: var(--orange); font-family: var(--zf-primary-bold); }
.step-visual { height: 60px; margin: 0 auto 20px; position: relative; }
.orbit::before, .orbit::after { content:""; position:absolute; left:50%; top:50%; border:2px solid rgba(0,103,255,.6); border-radius:50%; transform:translate(-50%,-50%) rotate(-20deg); }
.orbit::before { width:56px; height:24px; } .orbit::after { width:24px; height:56px; }
.bars { width:70px; display:flex; gap:7px; align-items:flex-end; justify-content:center; }
.bars::before, .bars::after, .bars span { content:""; display:block; width:10px; border-radius:20px 20px 0 0; background: var(--orange); }
.bars::before { height:34px; background:var(--green);} .bars::after { height:52px; background:var(--blue); }
.target::before { content:""; position:absolute; left:50%; top:50%; width:56px; height:56px; border:5px solid var(--orange); border-radius:50%; transform:translate(-50%,-50%); box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 13px rgba(25,182,106,.9); }
.steps-grid h3 { font-size: 20px; }
.steps-grid p { font-size: 15px; margin: 0; }

.suite-section { background: #f2f5fa; }
.suite-shell { max-width: 1030px; margin: 48px auto 0; display: grid; grid-template-columns: .94fr 1.06fr; gap: 22px; align-items: stretch; }
.navy-card { min-height: 270px; background: linear-gradient(135deg, #07162e, #112c53); color: #fff; border-radius: 20px; padding: 30px; overflow: hidden; position: relative; }
.navy-card h3, .navy-card p { color: #fff; }
.navy-card p { opacity: .78; }
.chart-line { position: absolute; right: 26px; bottom: 20px; width: 260px; height: 115px; opacity: .85; }
.chart-line::before { content:""; position:absolute; inset:0; background: repeating-linear-gradient(to top, rgba(255,255,255,.08), rgba(255,255,255,.08) 1px, transparent 1px, transparent 23px); }
.chart-line span { position:absolute; inset:0; background: linear-gradient(140deg, transparent 5%, transparent 20%, rgba(25,182,106,.8) 21%, rgba(25,182,106,.8) 23%, transparent 24%, transparent 38%, rgba(0,103,255,.9) 39%, rgba(0,103,255,.9) 41%, transparent 42%, transparent 54%, rgba(255,122,0,.9) 55%, rgba(255,122,0,.9) 57%, transparent 58%); clip-path: polygon(0 75%, 15% 70%, 28% 48%, 43% 55%, 56% 34%, 72% 40%, 84% 18%, 100% 23%, 100% 100%, 0 100%); }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tool-card { text-align: left; border: 1px solid rgba(13,27,51,.08); background: #fff; border-radius: 18px; padding: 20px; cursor: pointer; box-shadow: 0 8px 22px rgba(13,27,51,.05); transition: transform .2s ease, border-color .2s ease; }
.tool-card:hover, .tool-card.active { transform: translateY(-2px); border-color: rgba(255,122,0,.42); }
.tool-card strong { display: block; font: 18px/1.1 var(--zf-primary-semibold); color: var(--ink); margin-bottom: 7px; }
.tool-card small { color: var(--muted); font-size: 14px; }

.compare-section { background: #fff; }
.differentiators { max-width: 1030px; margin: 46px auto 26px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.differentiators article { padding: 18px; border-radius: 16px; background: linear-gradient(180deg,#fff,#fbfcff); border: 1px solid rgba(13,27,51,.08); }
.differentiators span { font: 26px/1 var(--zf-primary-bold); color: var(--orange); }
.differentiators h3 { font-size: 16px; margin-top: 12px; }
.differentiators p { font-size: 13px; margin: 0; }
.comparison-table-wrap { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 18px; box-shadow: var(--soft-shadow); overflow-x: auto; border: 1px solid rgba(13,27,51,.08); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.comparison-table th, .comparison-table td { padding: 15px 18px; text-align: center; border-bottom: 1px solid rgba(13,27,51,.08); font-size: 14px; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th { background: #f6f8fb; font-family: var(--zf-primary-semibold); }
.comparison-table th:nth-child(2) { background: var(--navy); color: #fff; }
.comparison-table .yes { color: var(--green); font-family: var(--zf-primary-bold); }

.dark-feature { padding: 96px 24px; background: #091833; color: #fff; }
.dark-feature h2 { color: #fff; }
.dark-feature p { color: rgba(255,255,255,.72); font-size: 20px; }
.check-list { padding: 0; list-style: none; margin: 28px 0 0; display: grid; gap: 13px; color: #fff; }
.check-list li::before { content: "✓"; color: var(--orange); margin-right: 10px; font-family: var(--zf-primary-bold); }
.agency-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 26px; box-shadow: 0 28px 60px rgba(0,0,0,.24); }
.agency-topbar, .metric-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.agency-topbar { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 16px; }
.agency-topbar span, .metric-row span { color: rgba(255,255,255,.62); }
.metric-row { padding: 10px 0; }
.metric-row b { font: 22px/1 var(--zf-primary-bold); color: #fff; }
.metric-row em { color: #31d58d; font-style: normal; }
.mini-analytics { margin-top: 24px; height: 100px; border-radius: 16px; background: linear-gradient(180deg, rgba(0,103,255,.18), transparent); position: relative; overflow: hidden; }
.mini-analytics span { position: absolute; inset: 18px 15px; background: linear-gradient(135deg, transparent 10%, rgba(25,182,106,.7) 11%, rgba(25,182,106,.7) 13%, transparent 14%, transparent 26%, rgba(0,103,255,.9) 27%, rgba(0,103,255,.9) 29%, transparent 30%); clip-path: polygon(0 80%, 16% 72%, 32% 78%, 47% 50%, 60% 58%, 74% 32%, 100% 25%, 100% 100%, 0 100%); }

.pricing-section { background: #fff; }
.billing-toggle { margin: 24px auto 0; display: inline-flex; padding: 5px; background: #f4f6f9; border-radius: 999px; border: 1px solid rgba(13,27,51,.08); }
.billing-toggle button { border: 0; background: transparent; padding: 9px 18px; border-radius: 999px; cursor: pointer; font-family: var(--zf-primary-semibold); color: var(--muted); }
.billing-toggle button.active { background: #fff; color: var(--orange); box-shadow: 0 6px 18px rgba(13,27,51,.08); }
.billing-toggle span { color: var(--green); }
.pricing-grid { max-width: 1030px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1px solid rgba(13,27,51,.12); border-radius: 24px; padding: 30px; box-shadow: var(--soft-shadow); }
.price-card.featured { border-color: rgba(255,122,0,.55); transform: translateY(-14px); box-shadow: 0 30px 70px rgba(255,122,0,.15); }
.plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; border-radius: 999px; padding: 8px 16px; font: 12px/1 var(--zf-primary-bold); text-transform: uppercase; letter-spacing: 1px; }
.price-card > p:first-of-type { color: #526174; font-family: var(--zf-primary-semibold); }
.price-card h3 { font: 52px/1 var(--zf-primary-bold); letter-spacing: -1.5px; margin: 10px 0 14px; }
.price-card h3 small { font: 17px/1 var(--zf-primary-medium); color: var(--muted); letter-spacing: 0; }
.currency { font-size: 27px; vertical-align: 18px; margin-right: 2px; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.price-card li { font-size: 15px; color: #23334d; }
.price-card li::before { content: "✓"; color: var(--green); margin-right: 8px; font-family: var(--zf-primary-bold); }
.pricing-note { text-align: center; font-size: 13px; margin: 22px 0 0; }

/* --- Pricing page: toggle + currency + trust --- */
.pricing-toggles-wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin: 28px auto 0; }
.currency-toggle { display: inline-flex; padding: 5px; background: #f4f6f9; border-radius: 999px; border: 1px solid rgba(13,27,51,.08); }
.currency-btn { display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 999px; font: 14px/1 var(--zf-primary-semibold); color: var(--muted); text-decoration: none; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.currency-btn.active { background: #fff; color: var(--orange); box-shadow: 0 6px 18px rgba(13,27,51,.08); }
.trust-signals-strip { max-width: 720px; margin: 32px auto 0; }
.trust-signals-inner { padding: 18px 28px; background: #f5f8fc; border: 1px solid rgba(13,27,51,.1); border-radius: 14px; text-align: center; }
.trust-signals-headline { font: 15px/1.3 var(--zf-primary-semibold); color: var(--navy); margin-bottom: 12px; }
.trust-signals-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; font-size: 13px; color: var(--muted); }
.coupon-block { max-width: 560px; margin: 28px auto 0; text-align: center; }
.coupon-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
.coupon-label { font: 14px/1 var(--zf-primary-semibold); color: var(--muted); }
.coupon-input { height: 42px; border: 1.5px solid rgba(13,27,51,.18); border-radius: 10px; padding: 0 14px; font: 15px/1 var(--zf-primary-regular); width: 180px; background: #fff; }
.coupon-feedback { margin-top: 10px; min-height: 28px; }

.proof-section { background: linear-gradient(180deg, #eef8ff, #f8fbff); }
.proof-grid { max-width: 1030px; margin: 42px auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-shell { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 48px 1fr 48px; gap: 16px; align-items: center; }
.testimonial-track { display: grid; }
.testimonial { display: none; background: #fff; border: 1px solid rgba(13,27,51,.08); border-radius: 24px; padding: 32px; box-shadow: var(--soft-shadow); }
.testimonial.active { display: block; animation: fadeIn .35s ease; }
.stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { font-size: 22px; color: var(--ink); }
.person { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.person span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--orange); font-family: var(--zf-primary-bold); }
.person strong, .person small { display: block; }
.person small { color: var(--muted); }
.slider-arrow { border: 0; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--navy); box-shadow: var(--soft-shadow); font-size: 28px; cursor: pointer; }

.final-cta { padding: 84px 24px; background: #fff; }
.final-cta-inner { max-width: 980px; margin: 0 auto; text-align: center; border-radius: 28px; padding: 56px 24px; background: linear-gradient(135deg, #ff8b00, #ff6500); box-shadow: 0 30px 70px rgba(255, 122, 0, .25); color: #fff; }
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,.86); font-size: 20px; max-width: 680px; margin: 0 auto 24px; }
.center-actions { justify-content: center; }

.faq-section { background: var(--page); }
.faq-list { max-width: 850px; margin: 36px auto 0; display: grid; gap: 14px; }
details { background: #fff; border: 1px solid rgba(13,27,51,.08); border-radius: 18px; padding: 20px 24px; box-shadow: 0 8px 18px rgba(13,27,51,.04); }
summary { cursor: pointer; font: 20px/1.2 var(--zf-primary-semibold); color: var(--navy); }
details p { margin: 14px 0 0; }

.site-footer {
  background: #fff;
  color: #172017;
  padding: 96px 56px 34px;
  border-top: 1px solid rgba(13,27,51,.08);
}
.footer-mega {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(620px, 1.55fr);
  gap: 96px;
  align-items: start;
}
.footer-start h2 {
  max-width: 660px;
  margin: 0;
  color: #172017;
  font: 78px/.94 var(--zf-primary-bold);
  letter-spacing: -4px;
  text-transform: uppercase;
}
.footer-start p {
  margin: 34px 0 42px;
  color: #172017;
  font: 25px/1.34 var(--zf-primary-regular);
}
.footer-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b1a, #ff6a00);
  color: #fff;
  font: 25px/1 var(--zf-primary-bold);
  box-shadow: 0 24px 48px rgba(255,122,0,.24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 56px rgba(255,122,0,.30);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 54px;
}
.footer-column h3 {
  margin: 0 0 44px;
  color: #172017;
  font: 27px/1.05 var(--zf-primary-bold);
  letter-spacing: -.5px;
}
.footer-column a {
  display: block;
  max-width: 230px;
  margin: 0 0 24px;
  color: #172017;
  font: 23px/1.25 var(--zf-primary-regular);
  letter-spacing: -.35px;
}
.footer-column a:hover { color: var(--orange); }
.footer-support-group { display: grid; gap: 62px; }
.footer-support-group h3 { margin-bottom: 44px; }
.footer-bottom {
  margin-top: 74px;
  padding-top: 26px;
  border-top: 1px solid rgba(13,27,51,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(23,32,23,.58);
  font: 14px/1.4 var(--zf-primary-regular);
}
.footer-mini-brand {
  color: #172017;
  gap: 8px;
}
.footer-mini-brand .brand-text { font-size: 20px; }
.footer-bottom a { color: rgba(23,32,23,.68); }
.footer-bottom a:hover { color: var(--orange); }
.sticky-mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  h1 { font-size: 68px; }
  h2 { font-size: 46px; }
  .section-grid, .suite-shell { grid-template-columns: 1fr; gap: 42px; }
  .hero-product { max-width: 640px; margin: 0 auto; }
  .differentiators { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .top-strip { display: none; }
  .nav-shell { padding: 14px 18px; }
  .nav-toggle { display: block; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: grid; position: fixed; top: 64px; left: 14px; right: 14px; background: #fff; border-radius: 22px; padding: 22px; box-shadow: var(--shadow); gap: 18px; z-index: 99; }
  .nav-links.open a { font-size: 20px; }
  .nav-links.open .nav-dropdown { width: 100%; }
  .nav-links.open .nav-dropdown-trigger { font-size: 20px; width: 100%; justify-content: space-between; }
  .nav-links.open .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 8px 0 0 14px; min-width: 0; }
  .nav-links.open .nav-dropdown-menu::before { display: none; }
  .nav-links.open .nav-dropdown-menu a { font-size: 16px; white-space: normal; }
  .hero-section { padding-top: 48px; border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; }
  h1 { font-size: 54px; line-height: 1.04; letter-spacing: -1.6px; }
  h2 { font-size: 38px; letter-spacing: -1px; }
  .hero-text, .section-inner > p, .dark-feature p { font-size: 18px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .hero-badges { gap: 10px; display: grid; }
  .trust-logos { gap: 24px; font-size: 18px; }
  .three-card-row, .steps-grid, .pricing-grid, .proof-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .site-footer { padding: 72px 24px 32px; }
  .footer-mega { grid-template-columns: 1fr; gap: 54px; }
  .footer-start h2 { font-size: 54px; letter-spacing: -2.2px; }
  .footer-start p { font-size: 21px; margin: 24px 0 28px; }
  .footer-start-btn { min-height: 68px; padding: 0 40px; font-size: 21px; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 32px; }
  .footer-column h3 { margin-bottom: 20px; font-size: 24px; }
  .footer-column a { margin-bottom: 15px; font-size: 19px; }
  .footer-support-group { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sticky-mobile-cta { display: block; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 80; }
  .sticky-mobile-cta a { display: grid; place-items: center; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--orange), #ff5b00); color: #fff; font-family: var(--zf-primary-bold); box-shadow: 0 18px 40px rgba(255,122,0,.32); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .brand-text { font-size: 21px; }
  .section { padding: 76px 18px; }
  .hero-section { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 46px; }
  h2 { font-size: 33px; }
  .main-insight-card { padding: 14px; transform: none; border-radius: 22px; }
  .signal-list article { grid-template-columns: 34px 1fr; }
  .signal-list a { grid-column: 2; }
  .product-topbar span { display: none; }
  .insight-panel h2 { font-size: 22px; }
  .suite-shell, .dark-inner { gap: 28px; }
  .navy-card { padding: 24px; min-height: 240px; }
  .chart-line { width: 180px; }
  .final-cta-inner { padding: 42px 18px; }
  .site-footer { padding: 58px 18px 96px; }
  .footer-start h2 { font-size: 42px; line-height: .98; letter-spacing: -1.6px; }
  .footer-start p { font-size: 18px; }
  .footer-start-btn { width: 100%; min-height: 60px; font-size: 18px; padding: 0 24px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-column h3 { font-size: 22px; }
  .footer-column a { max-width: 100%; font-size: 17px; }
  .footer-bottom { margin-top: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Footer responsive refinement v2
   Keeps the Semrush-inspired footer layout while preventing oversized columns,
   overflow, and awkward wrapping across desktop, tablet, and mobile widths. */
.site-footer.footer-mega-style {
  background: #fff;
  color: #172017;
  padding: clamp(58px, 7vw, 104px) clamp(20px, 5vw, 72px) 34px;
  overflow-x: hidden;
}

.site-footer.footer-mega-style .footer-mega,
.site-footer.footer-mega-style .footer-bottom {
  width: 100%;
  max-width: 1760px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer.footer-mega-style .footer-mega {
  display: grid;
  grid-template-columns: minmax(330px, .86fr) minmax(0, 1.5fr);
  gap: clamp(52px, 7vw, 128px);
  align-items: start;
}

.site-footer.footer-mega-style .footer-start {
  min-width: 0;
}

.site-footer.footer-mega-style .footer-start h2 {
  max-width: 760px;
  margin: 0;
  color: #172017;
  font: clamp(52px, 5vw, 92px) / .94 var(--zf-primary-bold);
  letter-spacing: clamp(-4.8px, -.25vw, -1.5px);
  text-transform: uppercase;
  text-wrap: balance;
}

.site-footer.footer-mega-style .footer-start p {
  max-width: 620px;
  margin: clamp(22px, 2.1vw, 38px) 0 clamp(28px, 2.7vw, 46px);
  color: #172017;
  font: clamp(19px, 1.45vw, 27px) / 1.34 var(--zf-primary-regular);
}

.site-footer.footer-mega-style .footer-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(60px, 4.7vw, 88px);
  padding: 0 clamp(34px, 3.8vw, 62px);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b1a, #ff6a00);
  color: #fff;
  font: clamp(18px, 1.35vw, 25px) / 1 var(--zf-primary-bold);
  box-shadow: 0 22px 48px rgba(255,122,0,.22);
  white-space: nowrap;
}

.site-footer.footer-mega-style .footer-columns {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 76px);
  align-items: start;
}

.site-footer.footer-mega-style .footer-column {
  min-width: 0;
}

.site-footer.footer-mega-style .footer-column h3 {
  margin: 0 0 clamp(18px, 2.25vw, 44px);
  color: #172017;
  font: clamp(22px, 1.45vw, 29px) / 1.08 var(--zf-primary-bold);
  letter-spacing: -.45px;
}

.site-footer.footer-mega-style .footer-column a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(13px, 1.25vw, 24px);
  color: #172017;
  font: clamp(17px, 1.18vw, 24px) / 1.28 var(--zf-primary-regular);
  letter-spacing: -.3px;
  overflow-wrap: anywhere;
}

.site-footer.footer-mega-style .footer-support-group {
  display: grid;
  gap: clamp(28px, 3.6vw, 66px);
}

.site-footer.footer-mega-style .footer-support-group h3 {
  margin-bottom: clamp(18px, 2.25vw, 44px);
}

.site-footer.footer-mega-style .footer-bottom {
  margin-top: clamp(48px, 5.2vw, 82px);
  padding-top: 24px;
  border-top: 1px solid rgba(13,27,51,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  color: rgba(23,32,23,.58);
  font: 14px/1.45 var(--zf-primary-regular);
}

.site-footer.footer-mega-style .footer-mini-brand {
  flex: 0 0 auto;
}

.site-footer.footer-mega-style .footer-bottom > span {
  min-width: 0;
}

@media (max-width: 1280px) {
  .site-footer.footer-mega-style .footer-mega {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .site-footer.footer-mega-style .footer-start h2 {
    max-width: 920px;
  }

  .site-footer.footer-mega-style .footer-start p {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .site-footer.footer-mega-style {
    padding: 68px 24px 34px;
  }

  .site-footer.footer-mega-style .footer-start h2 {
    font-size: clamp(46px, 8.2vw, 68px);
    letter-spacing: -2px;
    max-width: 720px;
  }

  .site-footer.footer-mega-style .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .site-footer.footer-mega-style .footer-column h3 {
    margin-bottom: 18px;
  }

  .site-footer.footer-mega-style .footer-column a {
    margin-bottom: 13px;
  }

  .site-footer.footer-mega-style .footer-support-group {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .site-footer.footer-mega-style {
    padding: 56px 18px 96px;
  }

  .site-footer.footer-mega-style .footer-mega {
    gap: 44px;
  }

  .site-footer.footer-mega-style .footer-start h2 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: .96;
    letter-spacing: -1.4px;
  }

  .site-footer.footer-mega-style .footer-start p {
    margin: 18px 0 24px;
    font-size: 18px;
  }

  .site-footer.footer-mega-style .footer-start-btn {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 18px;
  }

  .site-footer.footer-mega-style .footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer.footer-mega-style .footer-column h3 {
    font-size: 22px;
  }

  .site-footer.footer-mega-style .footer-column a {
    width: auto;
    font-size: 17px;
    max-width: 100%;
  }

  .site-footer.footer-mega-style .footer-support-group {
    gap: 30px;
  }

  .site-footer.footer-mega-style .footer-bottom {
    margin-top: 44px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Uploaded Ranklogs logo integration */
.brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 174px;
  object-fit: contain;
}

.footer-brand-logo {
  height: 34px;
  max-width: 142px;
}

@media (max-width: 900px) {
  .brand-logo {
    height: 38px;
    max-width: 158px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 34px;
    max-width: 142px;
  }

  .footer-brand-logo {
    height: 32px;
    max-width: 134px;
  }
}

/* ===== Hero v2 ===== */

/* Two-column layout: copy left, product right */
.hero-v2-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* Kicker line with rotating word */
.hero-kicker {
  font: 32px/1.25 var(--zf-primary-medium);
  color: var(--muted);
  margin: 0 0 22px;
  letter-spacing: -.4px;
}
[data-rotating-word] {
  display: inline-block;
  color: var(--orange);
  min-width: 130px;
  transition: opacity .22s ease, transform .22s ease;
  vertical-align: baseline;
}
[data-rotating-word].is-rotating {
  opacity: 0;
  transform: translateY(6px);
}

/* USP demo tabs row */
.hero-usp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.hero-usp-tab {
  border: 1px solid rgba(13, 27, 51, .14);
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 8px 18px;
  font: 13px/1 var(--zf-primary-semibold);
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.hero-usp-tab:hover {
  background: #fff;
  color: var(--navy);
  border-color: rgba(13, 27, 51, .28);
}
.hero-usp-tab.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(255, 122, 0, .22);
}

/* Product side: positioning context for floats */
.hero-intelligence {
  position: relative;
}

/* Floating contextual cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(13, 27, 51, .1);
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: 0 12px 32px rgba(13, 27, 51, .1);
  backdrop-filter: blur(14px);
  font: 13px/1.3 var(--zf-primary-medium);
  color: var(--ink);
  z-index: 2;
  white-space: nowrap;
}
.hero-float-card strong { display: block; font-family: var(--zf-primary-semibold); font-size: 13px; color: var(--navy); }
.hero-float-card small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(13, 27, 51, .08);
  color: var(--navy);
  font-size: 14px;
  flex-shrink: 0;
}
.float-icon.orange { background: rgba(255, 122, 0, .14); color: var(--orange); }

/* Float positions */
.float-a {
  top: -18px;
  right: -14px;
  animation: heroFloatA 6s ease-in-out infinite;
}
.float-b {
  bottom: 24px;
  left: -16px;
  animation: heroFloatB 6.8s ease-in-out infinite .9s;
}

@keyframes heroFloatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes heroFloatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Intelligence card */
.intelligence-card {
  padding: 20px;
  position: relative;
}
.intelligence-topbar {
  margin-bottom: 14px;
}

/* Sidebar dots + main layout */
.intelligence-layout {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
}
.intelligence-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}
.side-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(13, 27, 51, .15);
  flex-shrink: 0;
  transition: background .3s ease, transform .3s ease, width .3s ease, height .3s ease;
}
.side-dot.active {
  background: var(--orange);
  transform: scale(1.4);
}

/* Brief header row */
.brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.brief-score {
  font: 11px/1 var(--zf-primary-bold);
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 122, 0, .1);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* Demo content area */
[data-demo-title] {
  font: 18px/1.26 var(--zf-primary-semibold);
  letter-spacing: -.4px;
  color: var(--navy);
  margin-bottom: 8px;
}
[data-demo-text] {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Metric row (3 cols) inside the card */
.intelligence-main .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(13, 27, 51, .08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.intelligence-main .metric-row article {
  padding: 10px 12px;
  border-right: 1px solid rgba(13, 27, 51, .08);
}
.intelligence-main .metric-row article:last-child { border-right: 0; }
.intelligence-main .metric-row small {
  display: block;
  font: 10px/1 var(--zf-primary-semibold);
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #7e889b;
  margin-bottom: 5px;
}
.intelligence-main .metric-row strong {
  display: block;
  font: 20px/1 var(--zf-primary-bold);
  color: var(--navy);
  letter-spacing: -.5px;
}

/* Animated mini-dashboard screen */
.animated-screen {
  border: 1px solid rgba(13, 27, 51, .08);
  border-radius: 10px;
  overflow: hidden;
  background: #f7f9fc;
  margin-bottom: 12px;
}
.screen-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #eef0f4;
  border-bottom: 1px solid rgba(13, 27, 51, .07);
}
.screen-toolbar span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(13, 27, 51, .18);
}
.screen-toolbar span:first-child  { background: #ff6b6b; }
.screen-toolbar span:nth-child(2) { background: #ffc24a; }
.screen-toolbar span:nth-child(3) { background: var(--green); }
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 44px 52px;
  gap: 6px;
  padding: 8px;
  height: 62px;
}
.screen-panel {
  border-radius: 6px;
  background: rgba(255, 255, 255, .8);
  overflow: hidden;
  position: relative;
}

/* Trend line panel */
.panel-large { display: flex; align-items: flex-end; }
.trend-line {
  position: absolute;
  inset: 0;
  display: block;
}
.trend-line i {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  animation: drawTrendLine 2.4s ease-out infinite 0.4s;
}
.trend-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 0%, rgba(0, 103, 255, .08) 100%);
  clip-path: polygon(0 90%, 18% 68%, 34% 75%, 50% 44%, 65% 52%, 80% 26%, 100% 18%, 100% 100%, 0 100%);
  animation: revealTrendArea 2.4s ease-out infinite 0.4s;
}

@keyframes drawTrendLine {
  0%   { clip-path: inset(0 100% 0 0); background: linear-gradient(90deg, var(--blue), rgba(0,103,255,.6)); }
  80%  { clip-path: inset(0 0% 0 0);   background: linear-gradient(90deg, var(--blue), rgba(0,103,255,.6)); }
  100% { clip-path: inset(0 0% 0 0);   background: linear-gradient(90deg, var(--blue), rgba(0,103,255,.6)); }
}
@keyframes revealTrendArea {
  0%  { opacity: 0; }
  50% { opacity: 0; }
  80% { opacity: 1; }
  100%{ opacity: 1; }
}

/* Stacked bars panel */
.panel-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  padding: 6px 5px;
}
.panel-stack b {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(13, 27, 51, .12);
}
.panel-stack b:nth-child(1) { animation: barPulse 2s ease-in-out infinite 0s; }
.panel-stack b:nth-child(2) { animation: barPulse 2s ease-in-out infinite .25s; }
.panel-stack b:nth-child(3) { animation: barPulse 2s ease-in-out infinite .5s; }

/* Vertical bars panel */
.panel-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 6px 5px;
}
.panel-bars span {
  display: block;
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 122, 0, .28);
  transform-origin: bottom;
  animation: growBar 2s ease-in-out infinite;
}
.panel-bars span:nth-child(1) { height: 55%; animation-delay: 0s; }
.panel-bars span:nth-child(2) { height: 85%; animation-delay: .15s; }
.panel-bars span:nth-child(3) { height: 42%; animation-delay: .3s; }
.panel-bars span:nth-child(4) { height: 70%; animation-delay: .45s; }

@keyframes barPulse {
  0%, 100% { background: rgba(13, 27, 51, .12); }
  50%       { background: var(--blue); opacity: .7; }
}
@keyframes growBar {
  0%   { transform: scaleY(.3); opacity: .5; }
  50%  { transform: scaleY(1);  opacity: 1; }
  100% { transform: scaleY(.3); opacity: .5; }
}

/* Intelligence signals (reuse signal-list look) */
.intelligence-signals { gap: 8px; }
.intelligence-signals article {
  padding: 10px;
  border-radius: 12px;
}

/* Card fade transition on tab switch */
[data-hero-card].is-switching {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
[data-hero-card] {
  transition: opacity .22s ease, transform .22s ease;
}

/* ===== Hero v2 responsive ===== */
@media (max-width: 1080px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-intelligence {
    max-width: 620px;
    margin: 0 auto;
  }
  .float-a { top: -14px; right: 0; }
  .float-b { bottom: 10px; left: 0; }
}

@media (max-width: 860px) {
  .hero-kicker { font-size: 24px; }
  .hero-usp-tabs { gap: 6px; }
  .hero-usp-tab { padding: 7px 13px; font-size: 12px; }
  .hero-float-card { font-size: 11px; }
  .float-icon { width: 24px; height: 24px; font-size: 11px; }
}

@media (max-width: 520px) {
  .hero-v2-inner { gap: 36px; }
  .hero-kicker { font-size: 20px; }
  [data-rotating-word] { min-width: 90px; }
  .float-a, .float-b { display: none; }
  .intelligence-card { padding: 14px; }
  .intelligence-layout { grid-template-columns: 1fr; }
  .intelligence-sidebar { display: none; }
  .screen-grid { height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .float-a, .float-b { animation: none; }
  .trend-line i, .trend-line::before { animation: none; }
  .panel-stack b, .panel-bars span { animation: none; }
  [data-rotating-word] { transition: none; }
  [data-hero-card], [data-hero-card].is-switching { transition: none; opacity: 1; transform: none; }
}

/* ===== Features page ===== */
/* Hero: a single centered column (NOT the 2-col .hero-v2-inner grid). */
.features-hero { max-width: 880px; margin: 0 auto; padding: 56px 24px 8px; text-align: center; }
.features-hero h1 { max-width: 820px; margin: 0 auto 18px; }
.features-hero h1 span { display: inline; }           /* keep the highlighted word inline-orange, not a block break */
.features-hero .hero-text { margin: 0 auto 28px; }
.features-hero .hero-actions { justify-content: center; }
.features-hero .hero-badges { justify-content: center; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 740px; margin: 30px auto 0; padding: 0 24px 6px; }
.feature-pill { font: 13px/1 var(--zf-primary-semibold); color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; box-shadow: var(--soft-shadow); transition: border-color .2s, color .2s; }
.feature-pill:hover { border-color: var(--orange); color: var(--orange); }

/* The tool sections reuse .agency-card / .check-list (built for the dark feature band)
   on LIGHT backgrounds. Give them dark-on-light treatment when inside a light .section. */
.section .check-list { color: var(--ink); }
.section .agency-card, .tool-hero .agency-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
.section .agency-card .agency-topbar strong, .tool-hero .agency-card .agency-topbar strong { color: var(--navy); }
.section .agency-card .agency-topbar span,
.section .agency-card .metric-row span,
.tool-hero .agency-card .agency-topbar span,
.tool-hero .agency-card .metric-row span { color: var(--muted); }
.section .agency-card .metric-row b, .tool-hero .agency-card .metric-row b { color: var(--navy); }
.section .agency-card .metric-row, .tool-hero .agency-card .metric-row { padding: 11px 0; border-bottom: 1px solid #f1f2f6; }
.section .agency-card .metric-row:last-of-type, .tool-hero .agency-card .metric-row:last-of-type { border-bottom: 0; }

/* Pricing page header is a PAGE TITLE, not the home hero — size it down from the 84px hero h1. */
.pricing-section h1 { font: 46px/1.05 var(--zf-primary-semibold); letter-spacing: -1.4px; max-width: 720px; margin: 0 auto 16px; color: var(--navy); }
@media (max-width: 600px) { .pricing-section h1 { font-size: 33px; letter-spacing: -1px; } }

/* ===== Tool marketing page (data-driven, shared across all 7 tools) ===== */
/* Hero is a 2-col grid (copy left / stat-card right) reusing .section-grid; it
   collapses to one stacked column on mobile via the existing .section-grid query. */
.tool-hero { padding: 38px 0 70px; }
/* This is a PAGE hero (per-tool), not the 84px home hero — size the h1 down. */
.tool-hero h1 { font: 50px/1.06 var(--zf-primary-semibold); letter-spacing: -1.6px; max-width: 600px; margin-bottom: 20px; }
.tool-hero h1 span { display: inline; color: var(--orange); }   /* highlighted phrase stays inline-orange, no block break */
.tool-hero .hero-text { font-size: 19px; margin-bottom: 26px; }
@media (max-width: 980px) { .tool-hero { padding-bottom: 48px; } }
@media (max-width: 600px) { .tool-hero h1 { font-size: 36px; letter-spacing: -1.1px; } }

/* "Explore more tools" internal-link row near the final CTA (pill links, reuses .feature-pill look). */
.explore-tools-links { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.explore-tools-links a { display: inline-block; font: 14px/1 var(--zf-primary-semibold); color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; box-shadow: var(--soft-shadow); transition: border-color .2s, color .2s; }
.explore-tools-links a:hover { border-color: var(--orange); color: var(--orange); }

/* ===== Contact form ===== */
.contact-form { display: grid; gap: 6px; max-width: 560px; margin: 0 auto; text-align: left; }
.contact-form label { font: 13px/1.4 var(--zf-primary-semibold); color: var(--navy); margin-top: 12px; display: block; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: 15px/1.4 var(--zf-primary-regular); color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #a5b4fc; }
.contact-form .btn { margin-top: 18px; }
.contact-err { color: var(--orange-2); font-size: 13px; }
.contact-err:empty { display: none; }
.contact-ok { max-width: 560px; margin: 0 auto 16px; padding: 12px 16px; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 10px; color: #065f46; font-size: 14px; text-align: center; }
.contact-office { max-width: 560px; margin: 22px auto 0; font-size: 13px; color: var(--muted); text-align: center; }

/* ===== Affiliate earnings math card ===== */
.aff-math { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--soft-shadow); padding: 26px 28px; text-align: left; }
.aff-math h3 { color: var(--navy); }
.aff-math__intro { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.aff-math__row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid #f1f2f6; font-size: 15px; color: #334155; }
.aff-math__row b { color: var(--navy); white-space: nowrap; }
.aff-math__row--total { border-bottom: 0; font-family: var(--zf-primary-semibold); }
.aff-math__row--total b { color: var(--orange); font-size: 20px; }
.aff-math__note { font-size: 12px; color: #94a3b8; margin: 14px 0 0; }

/* ===== Legal pages ===== */
.legal-hero { max-width: 820px; margin: 0 auto; padding: 52px 24px 8px; text-align: center; }
.legal-hero h1 { font: 44px/1.08 var(--zf-primary-semibold); letter-spacing: -1.2px; max-width: 720px; margin: 0 auto 10px; color: var(--navy); }
.legal-updated { font-size: 14px; color: var(--muted); }
.legal-prose { max-width: 820px; margin: 0 auto; padding: 16px 24px 40px; color: #334155; font-size: 16px; line-height: 1.7; }
.legal-prose h2 { font: 26px/1.25 var(--zf-primary-semibold); letter-spacing: -.5px; color: var(--navy); margin: 36px 0 12px; }
.legal-prose h3 { font: 19px/1.3 var(--zf-primary-semibold); color: var(--navy); margin: 26px 0 8px; }
.legal-prose h4 { font: 16px/1.4 var(--zf-primary-semibold); color: var(--navy); margin: 18px 0 8px; }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul, .legal-prose ol { margin: 0 0 16px; padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--blue); text-decoration: underline; }
.legal-callout { background: #fff6ee; border: 1px solid var(--orange); border-radius: 14px; padding: 20px 24px; margin: 8px 0 28px; }
.legal-callout-title { font: 17px/1.3 var(--zf-primary-semibold); color: var(--navy); margin: 0 0 8px; }
.legal-callout p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .legal-hero h1 { font-size: 32px; } }

/* ---- Auth (login / register / password) ---- */
.auth-body { background: #f6f8fc; }
.auth-header { display:flex; align-items:center; justify-content:space-between; max-width:1180px; margin:0 auto; padding:20px 24px; }
.auth-header .auth-logo img { height:30px; }
.auth-back { color:var(--muted); font-size:14px; }
.auth-shell { max-width:1100px; margin:8px auto 56px; padding:0 24px; }
.auth-split { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:var(--soft-shadow); background:#fff; }
.auth-form-col { padding:30px 36px 26px; }
.auth-form-col h1 { font:26px/1.15 var(--zf-primary-semibold); color:var(--navy); letter-spacing:-.6px; margin:0 0 4px; }
.auth-sub { color:var(--muted); font-size:14px; margin:0 0 16px; }
.auth-card .auth-sub { text-align:center; }
.auth-panel-col { background:linear-gradient(160deg,var(--navy),var(--navy-2)); color:#fff; padding:40px 38px; }
.auth-panel-col h2 { font:22px/1.2 var(--zf-primary-semibold); margin:0 0 20px; color:#fff; }
/* .auth-card: centered card used by register/forgot/reset/verify (T2/T3) */
.auth-card { max-width:440px; margin:8px auto 0; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--soft-shadow); padding:36px 34px; }
.auth-card h1 { font:26px/1.2 var(--zf-primary-semibold); color:var(--navy); margin:0 0 6px; text-align:center; }
.auth-field { margin-bottom:11px; }
.auth-field label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.auth-field input, .auth-field select { width:100%; padding:9px 12px; border:1px solid var(--line); border-radius:10px; font-size:14px; background:#fff; }
.auth-field input:focus { outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(255,122,0,.15); }
.auth-btn { width:100%; padding:12px; border:none; border-radius:10px; background:var(--orange); color:#fff; font-size:16px; font-weight:600; cursor:pointer; }
.auth-btn:hover { filter:brightness(.96); }
.auth-google { width:100%; display:flex; align-items:center; justify-content:center; gap:8px; padding:10px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--navy); font-size:15px; font-weight:600; }
.auth-divider { text-align:center; color:var(--muted); font-size:13px; margin:12px 0; }
.auth-alt { text-align:center; font-size:14px; margin-top:18px; }
.auth-alt a { color:var(--orange); font-weight:600; }
.auth-error { color:#d92d20; font-size:13px; margin-top:4px; display:block; }
.auth-alert { border-radius:10px; padding:10px 14px; font-size:14px; margin-bottom:14px; }
.auth-alert-success { background:#ecfdf3; color:#067647; border:1px solid #abefc6; }
.auth-alert-danger { background:#fef3f2; color:#b42318; border:1px solid #fecdca; }
/* trust panel */
.trust-list { list-style:none; padding:0; margin:0 0 26px; }
.trust-list li { display:flex; gap:10px; align-items:flex-start; margin-bottom:16px; font-size:15px; color:#dbe6f5; }
.trust-list li b { color:#fff; }
.trust-list .tick { color:var(--orange); font-weight:700; flex:none; }
.auth-plan-box { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:12px; padding:18px 20px; margin-bottom:24px; }
.auth-logos { display:flex; flex-wrap:wrap; gap:18px; align-items:center; opacity:.9; }
.auth-logos img { height:24px; filter:brightness(0) invert(1); opacity:.85; }
.auth-logos-label { font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:#9fb3cf; margin:0 0 12px; }
.auth-footer { text-align:center; padding:20px 24px 32px; font-size:13px; color:var(--muted); }
.auth-footer a { color:var(--muted); text-decoration:underline; }
/* phone country-code picker (select2) -> match .auth-field inputs */
.auth-form-col .select2-container { width:100% !important; }
.auth-form-col .select2-container--default .select2-selection--single { height:40px; border:1px solid var(--line); border-radius:10px; background:#fff; }
.auth-form-col .select2-container--default .select2-selection--single .select2-selection__rendered { line-height:38px; padding-left:10px; color:#1f2a44; font-size:14px; }
.auth-form-col .select2-container--default .select2-selection--single .select2-selection__rendered img { width:18px; height:auto; margin-right:6px; vertical-align:middle; }
.auth-form-col .select2-container--default .select2-selection--single .select2-selection__arrow { height:38px; right:6px; }
.auth-form-col .select2-container--default.select2-container--open .select2-selection--single,
.auth-form-col .select2-container--default .select2-selection--single:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(255,122,0,.15); outline:none; }
.select2-dropdown { border-color:var(--line); border-radius:10px; overflow:hidden; }
.select2-container .select2-results__option { font-size:14px; padding:7px 10px; line-height:1.3; }
.select2-container .select2-results__option img { width:18px; height:auto; margin-right:6px; vertical-align:middle; }
.select2-container .select2-search--dropdown .select2-search__field { font-size:14px; padding:6px 8px; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background:var(--orange); }
/* "your toolkit" chips + support note below the logos */
.auth-toolkit { margin-top:30px; }
.auth-tool-grid { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; }
.auth-tool-grid li { font-size:13px; color:#dbe6f5; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:6px 12px; }
.auth-support-note { margin-top:28px; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); font-size:13px; color:#9fb3cf; }
.auth-support-note a { color:#fff; text-decoration:underline; }
@media (max-width:820px){ .auth-split{ grid-template-columns:1fr; } .auth-panel-col{ order:-1; } }

/* ---- Schema generator tool ---- */
.schema-crumb { max-width:1180px; margin:0 auto; padding:16px 24px 0; font-size:13px; color:var(--muted); }
.schema-crumb a { color:var(--muted); }
.schema-hero { max-width:1040px; margin:0 auto; padding:4px 24px 0; text-align:center; }
.schema-hero h1 { max-width:none; font:36px/1.12 var(--zf-primary-semibold); letter-spacing:-1.2px; color:var(--navy); margin:2px 0 8px; white-space:nowrap; } /* clear global h1 max-width:680px so the centered hero text actually centers */
.schema-hero h1 span { display:inline; color:var(--orange); } /* override global 'h1 span{display:block}' so (JSON-LD) stays on the same line */
.schema-hero-sub { color:var(--muted); font-size:16px; max-width:620px; margin:0 auto; }
.schema-tool { max-width:1100px; margin:0 auto; border:1px solid var(--line); border-radius:18px; box-shadow:var(--soft-shadow); background:#fff; overflow:hidden; }
.schema-tool-bar { display:flex; align-items:center; gap:12px; flex-wrap:wrap; padding:16px 20px; border-bottom:1px solid var(--line); background:#fbfcfe; }
.schema-tool-bar label { font-weight:600; color:var(--navy); font-size:14px; }
.schema-tool-bar select { padding:9px 12px; border:1px solid var(--line); border-radius:10px; font-size:14px; min-width:200px; }
.schema-type-blurb { color:var(--muted); font-size:13px; }
.schema-tool-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.schema-form { padding:22px 20px; border-right:1px solid var(--line); }
.schema-output-col { padding:22px 20px; background:#0d1f3d; color:#e6edf7; display:flex; flex-direction:column; gap:12px; }
.schema-field { margin-bottom:12px; }
.schema-field label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.schema-field input, .schema-field textarea, .schema-field select { width:100%; padding:9px 12px; border:1px solid var(--line); border-radius:10px; font-size:14px; background:#fff; }
.schema-field textarea { min-height:70px; resize:vertical; }
.schema-field .schema-help { font-size:12px; color:var(--muted); margin-top:3px; }
.schema-group { border:1px dashed var(--line); border-radius:12px; padding:14px; margin-bottom:12px; }
.schema-group > .schema-group-label { font-weight:700; color:var(--navy); font-size:13px; margin-bottom:8px; display:block; }
.schema-group-item { position:relative; border-bottom:1px dashed var(--line); padding-bottom:10px; margin-bottom:10px; }
.schema-group-item:last-of-type { border-bottom:0; margin-bottom:6px; }
.schema-remove { background:none; border:0; color:#b42318; font-size:12px; cursor:pointer; padding:0; }
.schema-add { background:#fff; border:1px solid var(--orange); color:var(--orange); border-radius:8px; padding:6px 12px; font-size:13px; font-weight:600; cursor:pointer; }
.schema-output-actions { display:flex; gap:8px; flex-wrap:wrap; }
.schema-output-actions button { padding:8px 14px; font-size:13px; border-radius:8px; }
.schema-output { background:#06122a; color:#cfe3ff; border-radius:10px; padding:14px; font:13px/1.5 ui-monospace,Menlo,Consolas,monospace; white-space:pre-wrap; word-break:break-word; overflow:auto; max-height:520px; margin:0; }
.schema-validate { display:flex; gap:14px; flex-wrap:wrap; }
.schema-link { background:none; border:0; color:#7fb2ff; font-size:13px; cursor:pointer; padding:0; text-decoration:underline; }
.schema-noscript-note { font-size:12px; color:#9fb3cf; margin:0; }
.schema-copied { color:#4ade80 !important; }
/* content sections: tighter than the global 98px .section, with a centered reading
   column so headings and body align (was: headings full-width, lists centered) */
.schema-section { padding:38px 24px; }
.schema-prose { max-width:900px; margin:0 auto; }
.schema-prose h2 { margin-bottom:14px; }
.schema-steps { padding-left:20px; line-height:1.8; margin:0; }
.schema-types-list { columns:2; gap:24px; list-style:none; padding:0; margin:0; }
.schema-types-list li { margin-bottom:8px; font-size:15px; color:#334155; }
.schema-faq { margin:0; }
.schema-faq-item { border:1px solid var(--line); border-radius:10px; padding:12px 16px; margin-bottom:10px; }
.schema-faq-item summary { font-weight:600; color:var(--navy); cursor:pointer; }
.schema-faq-item p { color:#475569; margin:8px 0 0; }
.schema-related { text-align:center; }
@media (max-width:820px){ .schema-tool-grid{ grid-template-columns:1fr; } .schema-form{ border-right:0; border-bottom:1px solid var(--line); } .schema-types-list{ columns:1; } .schema-hero h1{ font-size:26px; white-space:normal; } }

/* ---- Free SEO Tools hub ---- */
.tools-hero { max-width:820px; margin:0 auto; padding:4px 24px 0; text-align:center; }
.tools-hero h1 { max-width:none; font:40px/1.1 var(--zf-primary-semibold); letter-spacing:-1.4px; color:var(--navy); margin:2px 0 8px; }
.tools-hero-sub { color:var(--muted); font-size:17px; max-width:640px; margin:0 auto; }
.tools-wrap { max-width:1080px; margin:0 auto; }
.tools-cat { margin-bottom:36px; }
.tools-cat-head h2 { font:24px/1.2 var(--zf-primary-semibold); color:var(--navy); margin:0 0 4px; }
.tools-cat-head p { color:var(--muted); margin:0 0 16px; font-size:15px; }
.tools-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:16px; }
.tool-card { position:relative; display:block; border:1px solid var(--line); border-radius:14px; padding:20px; background:#fff; box-shadow:var(--soft-shadow); transition:transform .12s ease, box-shadow .12s ease; }
.tool-card:hover { transform:translateY(-2px); box-shadow:0 16px 40px rgba(13,27,51,.12); }
.tool-card h3 { font:18px/1.3 var(--zf-primary-semibold); color:var(--navy); margin:0 0 6px; }
.tool-card p { color:#475569; font-size:14px; margin:0 0 8px; }
.tool-card .tool-arrow { color:var(--orange); font-weight:700; }
.tool-card--featured { border-color:var(--orange); }
.tool-tag { position:absolute; top:14px; right:14px; background:#fff6ee; color:var(--orange); border:1px solid var(--orange); border-radius:999px; font-size:11px; font-weight:700; padding:2px 8px; }

/* ---- Funnel: thank-you confirmation ---- */
.confirm-card { max-width:620px; margin:0 auto; text-align:center; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--soft-shadow); padding:48px 40px; }
.confirm-check { width:56px; height:56px; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; border-radius:9999px; background:#ecfdf3; color:#067647; font-size:28px; font-weight:700; }
.confirm-card h1 { font:34px/1.1 var(--zf-primary-semibold); color:var(--navy); margin:0 0 6px; max-width:none; }
.confirm-lead { color:var(--orange); font-size:18px; font-weight:600; margin:0 0 14px; }
.confirm-note { color:var(--muted); font-size:14px; max-width:460px; margin:0 auto 16px; }
.confirm-mission { color:#334155; font-size:15px; max-width:520px; margin:0 auto 22px; }
.confirm-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.confirm-sign { color:var(--orange); font-weight:600; margin:24px 0 0; }
@media (max-width:600px){ .tools-hero h1{ font-size:30px; } }

/* ---- Funnel: checkout ---- */
.checkout-wrap { max-width:760px; margin:0 auto; }
.checkout-card { background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--soft-shadow); padding:32px; }
.checkout-card h1 { font:26px/1.2 var(--zf-primary-semibold); color:var(--navy); margin:0 0 20px; text-align:center; max-width:none; }
.checkout-row { display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid var(--line); font-size:15px; color:#334155; }
.checkout-row b { color:var(--navy); }
.checkout-total { font-size:18px; font-weight:700; color:var(--navy); padding-top:14px; }
.checkout-total .amt { color:var(--orange); }
.checkout-pay { margin-top:22px; text-align:center; }
.checkout-foot { display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-top:22px; font-size:12px; color:var(--muted); }
.checkout-foot img { height:22px; vertical-align:middle; margin-right:6px; }
.paynowbutton, .cancelcheckoutbutton { display:inline-block; padding:10px 22px; border-radius:10px; border:none; font-weight:600; cursor:pointer; }
.paynowbutton { background:var(--orange); color:#fff; }
.cancelcheckoutbutton { background:#fff; border:1px solid var(--line); color:var(--navy); text-decoration:none; }
