/* ==========================================================================
   Keen's Buildings — Standalone landing styles (no external dependencies)
   ========================================================================== */

:root {
  --background: hsl(40 33% 98%);
  --foreground: hsl(222 47% 11%);
  --border: hsl(214 32% 91%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222 47% 11%);
  --primary: hsl(15 88% 55%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(21 82% 56%);
  --muted: hsl(214 32% 91%);
  --muted-foreground: hsl(215 25% 35%);
  --accent: hsl(40 33% 94%);
  --radius: 0.25rem;
  --shadow-sm: 0 2px 0 0 rgba(15,23,42,.05), 0 1px 2px -1px rgba(15,23,42,.1);
  --shadow-md: 0 2px 0 0 rgba(15,23,42,.05), 0 2px 4px -1px rgba(15,23,42,.1);
  --shadow-lg: 0 2px 0 0 rgba(15,23,42,.05), 0 4px 6px -1px rgba(15,23,42,.1);
  --shadow-xl: 0 2px 0 0 rgba(15,23,42,.05), 0 8px 10px -1px rgba(15,23,42,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(15,23,42,.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
[id] { scroll-margin-top: 6rem; }

.container { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; border: none; border-radius: var(--radius);
  background: var(--primary); color: var(--primary-foreground);
  padding: 0 1.5rem; height: 2.75rem; font-size: .9375rem;
  transition: background .15s, transform .1s, box-shadow .15s; text-align: center;
}
.btn:hover { background: hsl(15 88% 50%); }
.btn:active { transform: translateY(1px); }
.btn-lg { height: 3rem; font-size: 1rem; }
.btn-xl { height: 3.25rem; font-size: 1.0625rem; padding: 0 2rem; }
.btn-block { width: 100%; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover { background: hsla(15,88%,55%,.06); }
.btn-outline-light {
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: var(--card);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.icon { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid hsla(214,32%,91%,.4);
  background: hsla(40,33%,98%,.92); backdrop-filter: blur(8px);
}
.header-inner { height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header-logo img { height: 2.5rem; width: auto; object-fit: contain; }
.header-nav { display: none; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: .875rem; font-weight: 700; color: hsla(222,47%,11%,.7); transition: color .15s; }
.header-nav a:hover { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone-block { display: none; flex-direction: column; align-items: flex-end; }
.header-phone-block .label { font-size: .6875rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .05em; }
.header-phone-block .num { font-size: 1.25rem; font-weight: 900; color: var(--primary); transition: color .15s; }
.header-phone-block .num:hover { color: var(--secondary); }
.header-phone-btn {
  display: inline-flex; align-items: center; justify-content: center; height: 2.25rem; padding: 0 .75rem;
  border-radius: var(--radius); border: 1px solid var(--primary); color: var(--primary);
  font-weight: 700; font-size: .75rem; transition: background .15s;
}
.header-phone-btn:hover { background: hsla(15,88%,55%,.05); }
.header-phone-btn .num { display: none; margin-left: .375rem; }
.header-cta { display: none; }

@media (min-width: 640px) {
  .header-phone-btn .num { display: inline; }
  .header-cta { display: inline-flex; }
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
  .header-logo img { height: 3rem; }
  .header-cta { height: 3rem; padding: 0 1.5rem; font-size: 1rem; }
}
@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-phone-block { display: flex; }
  .header-phone-btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: calc(100svh - 4rem); padding: 3rem 0; overflow: hidden;
  background: var(--foreground); color: var(--card);
}
@media (min-width: 768px) { .hero { min-height: calc(100svh - 5rem); padding: 4rem 0; } }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--foreground), hsla(222,47%,11%,.85) 50%, hsla(222,47%,11%,.4)); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(to right,#80808012 1px,transparent 1px), linear-gradient(to bottom,#80808012 1px,transparent 1px); background-size: 24px 24px; }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: 9999px; background: hsla(15,88%,55%,.2); border: 1px solid hsla(15,88%,55%,.3); margin-bottom: 1.5rem; }
.hero-badge .dot { width: .5rem; height: .5rem; border-radius: 9999px; background: var(--primary); animation: pulse 2s infinite; }
.hero-badge span:last-child { font-size: .75rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--card); }
@media (min-width: 768px) { .hero-badge span:last-child { font-size: .875rem; } }
.hero h1 { font-size: 2.25rem; font-weight: 900; line-height: 1.05; margin-bottom: 1.25rem; color: var(--card); }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1, .hero-sub { white-space: nowrap; } }
.hero h1 .accent { color: var(--primary); }
.hero-sub { font-size: 1.125rem; color: hsla(0,0%,100%,.85); margin-bottom: 2rem; font-weight: 500; line-height: 1.6; }
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }
.hero-sub strong, .hero-sub .hl { color: var(--card); font-weight: 700; }
.hero-calc-wrap { width: 100%; }
.hero-cta-wrap { width: 100%; max-width: 36rem; margin-top: 1.5rem; }
.hero-cta-wrap .btn { width: 100%; height: 3.25rem; font-size: 1rem; }
@media (min-width: 768px) { .hero-cta-wrap .btn { height: 3.5rem; font-size: 1.125rem; } }
.hero-note { font-size: .75rem; color: hsla(0,0%,100%,.6); font-weight: 500; margin-top: .75rem; }
.hero-note .em { color: var(--primary); margin-right: .25rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.hero-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1.5rem; margin-top: 2rem; }
.hero-stat { display: flex; align-items: baseline; gap: .375rem; }
.hero-stat .big { font-size: 1.25rem; font-weight: 900; color: var(--card); letter-spacing: -.02em; }
@media (min-width: 768px) { .hero-stat .big { font-size: 1.5rem; } }
.hero-stat .big .plus, .hero-stat .big .star { color: var(--primary); }
.hero-stat .lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .03em; color: hsla(0,0%,100%,.7); font-weight: 600; transition: color .15s; }
.hero-stat:hover .lbl { color: var(--primary); }
.hero-stat-divider { height: 1.5rem; width: 1px; background: hsla(0,0%,100%,.2); display: none; }
@media (min-width: 640px) { .hero-stat-divider { display: block; } }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Payment estimator card ---------- */
.estimator { background: var(--card); color: var(--foreground); border-radius: 1.5rem; padding: 1.25rem; box-shadow: var(--shadow-2xl); border: 1px solid hsla(214,32%,91%,.5); text-align: left; }
@media (min-width: 768px) { .estimator { padding: 2rem; } }
.estimator-head { margin-bottom: 1.25rem; }
.estimator-head .title { font-size: .875rem; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; }
@media (min-width: 768px) { .estimator-head .title { font-size: 1rem; } }
.estimator-head .desc { font-size: .8125rem; color: var(--muted-foreground); font-weight: 500; margin-top: .25rem; }
.estimator-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .estimator-grid { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; } }
.estimator-controls { display: flex; flex-direction: column; }
.price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: .75rem; }
.price-row label { font-size: .75rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .05em; }
.price-row .price { font-size: 1.5rem; font-weight: 900; line-height: 1; }
@media (min-width: 768px) { .price-row .price { font-size: 1.875rem; } }
.slider-wrap { padding: .75rem 0; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 9999px; background: var(--muted); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--card); border: 2px solid var(--primary); box-shadow: var(--shadow-sm); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--card); border: 2px solid var(--primary); cursor: pointer; }
.slider-fill { background: var(--primary); }
.slider-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted-foreground); margin-top: .5rem; font-weight: 500; }
.plan-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; padding: .25rem; background: hsla(214,32%,91%,.5); border-radius: .75rem; }
.plan-tab { padding: .625rem; font-size: .8125rem; font-weight: 700; border: none; background: transparent; border-radius: .5rem; color: var(--foreground); transition: background .15s; }
.plan-tab.active[data-plan="finance"] { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-sm); }
.plan-tab:hover{    background: transparent;     color: var(--foreground); border-color: rgb(15, 23, 41);}
/*.plan-tab.active[data-plan="zero"] { background: var(--background); box-shadow: var(--shadow-sm);  color: hsl(222 47% 11%);}*/

.plan-tab.active[data-plan="zero"]{background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-sm);}


.rto-badge { display: inline-flex; align-items: center; gap: .5rem; border-radius: .75rem; background: hsla(15,88%,55%,.1); border: 1px solid hsla(15,88%,55%,.2); padding: .625rem 1rem; }
.rto-badge .b1 { font-size: .875rem; font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: .03em; }
.rto-badge .b2 { font-size: .8125rem; font-weight: 700; color: hsla(222,47%,11%,.7); }
.estimate-box { background: hsla(40,33%,94%,.4); border-radius: 1rem; padding: 1.25rem; text-align: center; border: 1px solid hsla(214,32%,91%,.3); display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .estimate-box { padding: 1.5rem; gap: 10px; } }
.estimate-box .lbl { font-size: .75rem; font-weight: 700; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .375rem; }
.estimate-box .amount { font-size: 2.25rem; font-weight: 900; color: var(--primary); margin-bottom: .75rem; letter-spacing: -.03em; line-height: 1; }
@media (min-width: 768px) { .estimate-box .amount { font-size: 3rem; } }
.estimate-box .amount .cur { font-size: 1.5rem; vertical-align: top; color: hsla(15,88%,55%,.7); }
.estimate-box .amount .per { font-size: 1.125rem; color: var(--muted-foreground); vertical-align: baseline; font-weight: 700; letter-spacing: normal; }
.estimate-box .fine { font-size: .75rem; color: hsla(222,47%,11%,.8); line-height: 1.6; }
@media (min-width: 768px) { .estimate-box .fine { font-size: .8125rem; } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--card); padding: 1rem 0; border-bottom: 1px solid hsla(214,32%,91%,.5); box-shadow: var(--shadow-sm); position: relative; z-index: 20; }
@media (min-width: 768px) { .trust-strip { padding: 1.25rem 0; } }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; } }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 0 .5rem; }
@media (min-width: 768px) { .trust-item:not(:first-child) { border-left: 1px solid var(--border); } }
.trust-item .icon { color: var(--primary); width: 1rem; height: 1rem; }
@media (min-width: 768px) { .trust-item .icon { width: 1.25rem; height: 1.25rem; } }
.trust-item span { font-weight: 700; font-size: .75rem; color: var(--foreground); }
@media (min-width: 768px) { .trust-item span { font-size: .8125rem; } }

/* ---------- Section helpers ---------- */
.section { padding: 2.5rem 0; }
@media (min-width: 768px) { .section { padding: 3.5rem 0; } }
.section-bg-accent { background: hsla(40,33%,94%,.3); position: relative; overflow: hidden; }
.section-bg-light { background: var(--background); }
.section-bg-card { background: var(--card); border-top: 1px solid hsla(214,32%,91%,.5); border-bottom: 1px solid hsla(214,32%,91%,.5); }
.section-head-center { text-align: center; max-width: 48rem; margin: 0 auto 2rem; }
.section-head-center h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-head-center h2 { font-size: 1.875rem; } }
.section-head-center p { font-size: 1rem; color: hsla(222,47%,11%,.7); font-weight: 500; }

/* ---------- Financing paths ---------- */
.fp-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .5; pointer-events: none;  z-index: -1;}
.fp-grid { display: grid; gap: 1.5rem; max-width: 48rem; margin: 0 auto; position: relative; z-index: 10; }
@media (min-width: 768px) { .fp-grid { grid-template-columns: 1fr 1fr; } }
.fp-card { border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; position: relative; transition: transform .2s; }


.fp-card .fp-foot .btn:hover{background-color: #f15a27; color: #fff; border-color: #fff;}


.fp-card:hover { transform: translateY(-4px); }
.fp-card-dark { background: var(--foreground); color: var(--card); box-shadow: var(--shadow-xl); border: 1px solid var(--primary); }
.fp-card-light { background: var(--card); box-shadow: var(--shadow-lg); border: 1px solid hsla(214,32%,91%,.5); overflow: hidden; }
.fp-tag-top { position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--primary-foreground); font-size: .75rem; font-weight: 700; padding: .25rem 1rem; border-radius: 9999px; box-shadow: var(--shadow-md); white-space: nowrap; }
.fp-tag-corner { position: absolute; top: 0; right: 0; background: hsl(214 32% 85%); color: hsl(222 47% 25%); font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-bottom-left-radius: .5rem; }
.fp-card h3 { font-size: 1.25rem; font-weight: 900; margin-bottom: .5rem; }
.fp-card-dark h3 { margin-top: .5rem; }
.fp-card .sub { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.fp-body { margin-bottom: 1.5rem; flex: 1; }
.fp-big { font-size: 2.25rem; font-weight: 900; margin-bottom: .25rem; letter-spacing: -.04em; line-height: 1; }
@media (min-width: 768px) { .fp-big { font-size: 3rem; } }
.fp-big .cur { font-size: 1.25rem; vertical-align: top; }
.fp-card-dark .fp-big .cur { color: hsla(0,0%,100%,.6); }
.fp-big .pct { font-size: 1.5rem; vertical-align: baseline; }
@media (min-width: 768px) { .fp-big .pct { font-size: 1.875rem; } }
.fp-card-dark .fp-big { color: var(--card); }
.fp-card-light .fp-big { color: var(--foreground); }
.fp-cap { font-size: .8125rem; font-weight: 500; margin-bottom: 1rem; }
.fp-card-dark .fp-cap { color: hsla(0,0%,100%,.7); }
.fp-card-light .fp-cap { color: var(--muted-foreground); }
.fp-list { display: flex; flex-direction: column; gap: .75rem; font-size: .9375rem; font-weight: 500; }
.fp-card-dark .fp-list { color: hsla(0,0%,100%,.9); }
.fp-card-light .fp-list { color: hsla(222,47%,11%,.8); }
.fp-list li { display: flex; align-items: flex-start; gap: .5rem; }
.fp-list .icon { color: var(--primary); width: 1.25rem; height: 1.25rem; }
.fp-foot { margin-top: auto; display: flex; flex-direction: column; gap: .5rem; }
.fp-foot .btn { width: 100%; height: 2.75rem; font-size: .875rem; }
.fp-foot .fine { font-size: .6875rem; text-align: center; font-weight: 500; }
.fp-card-dark .fp-foot .fine { color: hsla(0,0%,100%,.7); }
.fp-card-light .fp-foot .fine { color: var(--muted-foreground); }

/* ---------- Building categories ---------- */
.bc-head { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; gap: 1rem; }
@media (min-width: 768px) { .bc-head { flex-direction: row; } }
.bc-head .text { max-width: 42rem; }
.bc-head h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: .75rem; }
@media (min-width: 768px) { .bc-head h2 { font-size: 1.875rem; } }
.bc-head p { font-size: 1rem; color: hsla(222,47%,11%,.7); font-weight: 500; }
.bc-head .btn { display: none; }
@media (min-width: 768px) { .bc-head .btn { display: inline-flex; } }
.bc-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .bc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bc-grid { grid-template-columns: repeat(3,1fr); } }
.bc-card { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid hsla(214,32%,91%,.5); width: 100%; text-align: left; background: var(--card); display: block; transition: transform .15s, box-shadow .15s; }
.bc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.bc-img { aspect-ratio: 16/10; overflow: hidden; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.bc-card:hover .bc-img img { transform: scale(1.05); }
.bc-body { padding: 1.25rem; }
.bc-body .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .25rem; }
.bc-body h3 { font-size: 1.25rem; font-weight: 700; color: #0f1729; }
.bc-arrow { height: 2rem; width: 2rem; border-radius: 9999px; background: hsla(15,88%,55%,.1); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: background .15s, color .15s; }
.bc-card:hover .bc-arrow { background: var(--primary); color: var(--primary-foreground); }
.bc-body .benefit { font-size: .8125rem; color: hsla(222,47%,11%,.7); font-weight: 500; margin-bottom: .75rem; }
.bc-price { display: flex; align-items: baseline; gap: .375rem; padding-top: .75rem; border-top: 1px solid hsla(214,32%,91%,.5); }
.bc-price .from { font-size: 12px; font-weight: 700; letter-spacing: 0; color: var(--muted-foreground); }
.bc-price .amt { font-size: 20px; font-weight: 900; color: var(--primary); }
.bc-price .upto { margin-left: auto; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); }
.bc-disclaimer { text-align: center; font-size: .75rem; color: hsla(222,47%,11%,.5); font-weight: 500; margin: 1.5rem auto 0; max-width: 42rem; }
.bc-mobile-cta { margin-top: 1.5rem; text-align: center; }
.bc-mobile-cta .btn { width: 100%; }
@media (min-width: 768px) { .bc-mobile-cta { display: none; } }

/* ---------- Risk reversal ---------- */
.rr-card { background: var(--foreground); color: var(--card); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-2xl); position: relative; overflow: hidden; margin-bottom: 2rem; }
@media (min-width: 768px) { .rr-card { padding: 2.5rem; } }
.rr-glow { position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: linear-gradient(to left, hsla(15,88%,55%,.2), transparent); pointer-events: none; }
.rr-inner { position: relative; z-index: 10; }
.rr-card h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .rr-card h2 { font-size: 1.875rem; margin-bottom: 2rem; } }
.rr-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .rr-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.rr-item { display: flex; align-items: flex-start; gap: .75rem; }
.rr-item .badge { height: 1.5rem; width: 1.5rem; border-radius: 9999px; background: hsla(15,88%,55%,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (min-width: 768px) { .rr-item .badge { height: 2rem; width: 2rem; } }
.rr-item .badge .icon { color: var(--primary); width: 1rem; height: 1rem; }
@media (min-width: 768px) { .rr-item .badge .icon { width: 1.25rem; height: 1.25rem; } }
.rr-item h4 { font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
@media (min-width: 768px) { .rr-item h4 { font-size: 1.125rem; } }
.rr-item p { font-size: .8125rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---------- Inline CTA bar ---------- */
.inline-cta { margin-top: 0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; background: var(--card); padding: 1.5rem; border-radius: 1rem; box-shadow: var(--shadow-sm); border: 1px solid hsla(214,32%,91%,.5); }
@media (min-width: 768px) { .inline-cta { flex-direction: row; gap: 1.5rem; } }
.inline-cta h4 { font-weight: 700; font-size: 1.125rem; color: var(--foreground); text-align: center; }
@media (min-width: 768px) { .inline-cta h4 { text-align: left; } }
.inline-cta-btns { display: flex; flex-direction: column; width: 100%; gap: .75rem; }
@media (min-width: 640px) { .inline-cta-btns { flex-direction: row; width: auto; } }
.inline-cta-btns .btn { width: 100%; }
@media (min-width: 640px) { .inline-cta-btns .btn { width: auto; } }

.inline-cta-btns .call_btn:hover .btn{background-color: var(--primary);color: var(--primary-foreground) !important; border-color: var(--primary);}
.inline-cta-btns .call_btn .btn:focus{    background: transparent; color: var(--primary) !important; border: 1px solid var(--primary);}
/* ---------- FAQ ---------- */
.faq-head { margin-bottom: 2rem; max-width: 48rem; }
.faq-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .75rem; border-radius: 9999px; background: hsla(15,88%,55%,.1); color: var(--primary); border: 1px solid hsla(15,88%,55%,.2); margin-bottom: .75rem; }
.faq-pill .icon { width: 1rem; height: 1rem; }
.faq-pill span { font-size: .6875rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.faq-head h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: .75rem; }
@media (min-width: 768px) { .faq-head h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .faq-head h2 { font-size: 2.25rem; } }
.faq-head > p { font-size: 1rem; color: hsla(222,47%,11%,.7); font-weight: 500; }
.faq-list { background: var(--card); border-radius: 1rem; box-shadow: var(--shadow-sm); border: 1px solid hsla(214,32%,91%,.5); padding: .25rem 1rem; }
@media (min-width: 768px) { .faq-list { padding: .25rem 1.5rem; } }
.faq-item { border-bottom: 1px solid hsla(214,32%,91%,.5); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; background: none; border: none; font-weight: 700; font-size: .9375rem; padding: 1rem 0; color: var(--foreground); transition: color .15s; }
.faq-q:focus{    color: var(--primary);}
@media (min-width: 768px) { .faq-q { font-size: 1rem; } }
.faq-q:hover { color: var(--primary); }
.faq-q .chev { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform .2s; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .25s ease; }
.faq-a-inner { font-size: .875rem; color: hsla(222,47%,11%,.8); line-height: 1.6; padding-bottom: 1rem; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--foreground); color: hsla(0,0%,100%,.7); padding: 3rem 0 6rem; border-top: 1px solid hsla(255,255,255,.1); }
@media (min-width: 640px) { .site-footer { padding-bottom: 3rem; } }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-brand a { display: inline-flex; align-items: baseline; gap: .375rem; margin-bottom: 1rem; }
.footer-brand .wm { font-size: 1.875rem; font-weight: 900; color: var(--card); line-height: 1; }
@media (min-width: 768px) { .footer-brand .wm { font-size: 2.25rem; } }
.footer-brand .sub { font-size: .6875rem; font-weight: 900; letter-spacing: .25em; color: var(--primary); text-transform: uppercase; }
.footer-brand p { font-size: .8125rem; font-weight: 500; max-width: 24rem; line-height: 1.6; }
.footer-col h4 { font-size: .6875rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--card); margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; font-size: .8125rem; font-weight: 500; }
.footer-col a, .footer-col button { color: inherit; background: none; border: none; font: inherit; text-align: left; padding: 0; transition: color .15s; display: inline-flex; align-items: flex-start; gap: .5rem; }
.footer-col a:hover, .footer-col button:hover { color: var(--primary); }
.footer-col .icon { color: var(--primary); width: 1rem; height: 1rem; margin-top: .125rem; }
.footer-bottom { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid hsla(255,255,255,.1); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: flex-end; } }
.footer-bottom .disc { font-size: .6875rem; opacity: .7; max-width: 42rem; line-height: 1.6; }
.footer-bottom .copy { font-size: .6875rem; font-weight: 500; color: hsla(0,0%,100%,.6); flex-shrink: 0; }

/* ---------- Sticky CTAs ---------- */
.sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; padding: .75rem; background: hsla(40,33%,98%,.95); backdrop-filter: blur(8px); border-top: 1px solid hsla(214,32%,91%,.5); box-shadow: 0 -4px 10px rgba(0,0,0,.05); display: flex; gap: .75rem; }
@media (min-width: 640px) { .sticky-mobile { display: none; } }
.sticky-mobile .btn { flex: 1; height: 3rem; }
.sticky-desktop { display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; transition: opacity .3s, transform .3s; opacity: 0; transform: translateY(1rem); pointer-events: none; }
@media (min-width: 768px) { .sticky-desktop { display: block; } }
.sticky-desktop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-desktop-inner { background: var(--foreground); color: var(--card); border-radius: 1rem; box-shadow: var(--shadow-2xl); border: 1px solid hsla(15,88%,55%,.2); padding: 1rem; display: flex; align-items: center; gap: 1rem; }
.sticky-desktop .lead { display: none; padding-right: .5rem; border-right: 1px solid hsla(255,255,255,.15); }
@media (min-width: 1024px) { .sticky-desktop .lead { display: block; } }
.sticky-desktop .lead .l { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: hsla(0,0%,100%,.6); }
.sticky-desktop .lead .n { display: block; font-size: 1.125rem; font-weight: 900; color: var(--primary); line-height: 1; margin-top: .25rem; }
.sticky-desktop .acts { display: flex; align-items: center; gap: .5rem; }
.sticky-desktop .acts .btn { height: 2.5rem; }

/* ---------- Modal / Popup overlay ---------- */
.overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: hsla(222,47%,11%,.7); backdrop-filter: blur(4px); padding: 1rem; overflow-y: auto; }
.overlay.open { display: flex; }
.modal-box { background: transparent; width: 100%; max-width: 42rem; margin: auto; }
.popup-box { background: var(--background); width: 100%; max-width: 48rem; border-radius: 1.5rem; box-shadow: var(--shadow-2xl); border: 1px solid hsla(214,32%,91%,.5); overflow: hidden; max-height: 90vh; overflow-y: auto; }
.popup-grid { display: grid; }
@media (min-width: 768px) { .popup-grid { grid-template-columns: 2fr 3fr; } }
.popup-left { background: var(--foreground); color: var(--card); padding: 1.5rem; position: relative; }
@media (min-width: 768px) { .popup-left { padding: 2rem; } }
.popup-left .pill { display: inline-flex; align-items: center; gap: .5rem; padding: .25rem .75rem; border-radius: 9999px; background: hsla(15,88%,55%,.2); border: 1px solid hsla(15,88%,55%,.4); color: var(--primary); margin-bottom: 1rem; }
.popup-left .pill .dot { width: .5rem; height: .5rem; border-radius: 9999px; background: var(--primary); animation: pulse 2s infinite; }
.popup-left .pill span:last-child { font-size: .6875rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.popup-left h2 { font-size: 1.5rem; font-weight: 900; line-height: 1.2; margin-bottom: .75rem; }
@media (min-width: 768px) { .popup-left h2 { font-size: 1.875rem; } }
.popup-left h2 .em { color: var(--primary); }
.popup-left .pitch { font-size: .875rem; color: hsla(0,0%,100%,.8); font-weight: 500; margin-bottom: 1.25rem; line-height: 1.6; }
.popup-left ul { display: flex; flex-direction: column; gap: .625rem; font-size: .8125rem; font-weight: 500; color: hsla(0,0%,100%,.9); margin-bottom: 1.5rem; }
.popup-left li { display: flex; align-items: center; gap: .5rem; }
.popup-left li .icon { color: var(--primary); width: 1rem; height: 1rem; }
.popup-right { padding: 1.25rem; position: relative; }
@media (min-width: 768px) { .popup-right { padding: 1.75rem; } }
.popup-close { position: absolute; top: 1rem; right: 1rem; height: 2.25rem; width: 2.25rem; border-radius: 9999px; background: var(--muted); color: var(--foreground); border: none; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.popup-close:hover { background: hsla(214,32%,91%,.7); }
.popup-close-mobile { background: hsla(255,255,255,.1); color: var(--card); }
.popup-dismiss { display: block; margin: .75rem auto 0; font-size: .75rem; color: hsla(222,47%,11%,.5); background: none; border: none; font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.popup-dismiss:hover { color: hsla(222,47%,11%,.8); }

/* ---------- Application form ---------- */
.appform { background: var(--card); color: var(--foreground); padding: 1.5rem; box-shadow: var(--shadow-xl); border: 1px solid hsla(214,32%,91%,.5); max-width: 42rem; margin: 0 auto; position: relative; }
.appform .popup_close { position: absolute; right: 10px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; height: 30px; width: 30px; background-color: #f15a27; border: 0; color: #fff; }
.appform .popup_close svg { height: 22px; width: 22px; }
@media (min-width: 768px) { .appform { padding: 2rem; max-height: 92vh; overflow-y: auto; border-radius: 0; } }
.appform-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .75rem; border-radius: 9999px; background: hsla(15,88%,55%,.1); color: var(--primary); border: 1px solid hsla(15,88%,55%,.2); margin-bottom: 1rem; }
.appform-pill .icon { width: 1rem; height: 1rem; }
.appform-pill span { font-size: .6875rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.appform h3 { font-size: 1.25rem; font-weight: 900; line-height: 1.2; }
@media (min-width: 768px) { .appform h3 { font-size: 1.5rem; } }
.appform .subh { font-size: .8125rem; color: hsla(222,47%,11%,.7); font-weight: 500; margin-top: .25rem; margin-bottom: 1rem; }
.appform-progress { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.appform-progress .bar { height: 6px; flex: 1; border-radius: 9999px; background: var(--muted); transition: background .2s; }
.appform-progress .bar.on { background: var(--primary); }
.appform-step-label { font-size: .75rem; color: var(--muted-foreground); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.25rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .8125rem; font-weight: 700; color: hsla(222,47%,11%,.8); margin-bottom: .375rem; }
.field label .req { color: var(--primary); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input, .select, .textarea { width: 100%; height: 2.5rem; padding: 0 .75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: .9375rem; font-family: inherit; background: var(--card); color: var(--foreground); transition: border-color .15s, box-shadow .15s; }
.textarea { height: auto; padding: .625rem .75rem; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px hsla(15,88%,55%,.2); }
.field-err { color: #dc2626; font-size: .6875rem; margin-top: .25rem; font-weight: 500; }
.input.invalid, .select.invalid, .textarea.invalid { border-color: #dc2626; }
.yesno { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.yesno button { font-size: .875rem; font-weight: 700; border-radius: .5rem; border: 2px solid var(--border); padding: .75rem; background: var(--card); color: var(--foreground); transition: border-color .15s, background .15s; }
.yesno button:hover { border-color: hsla(15,88%,55%,.4); }
.yesno button.selected { border-color: var(--primary); background: hsla(15,88%,55%,.05); }
.secure-note { display: flex; align-items: flex-start; gap: .5rem; border-radius: .5rem; background: hsla(40,33%,94%,.5); padding: .75rem; margin-bottom: 1rem; }
.secure-note .icon { color: #16a34a; width: 1rem; height: 1rem; margin-top: .125rem; }
.secure-note p { font-size: .75rem; color: hsla(222,47%,11%,.7); font-weight: 500; }
.appform-actions { display: flex; gap: .75rem; padding-top: .5rem; }
.appform-actions .btn { height: 3rem; }
.appform-actions .btn-next, .appform-actions .btn-submit { flex: 1; font-weight: 900; font-size: 1rem; }
.appform-actions .btn-back { padding: 0 1rem; }
.submit-error { color: #dc2626; font-size: .875rem; font-weight: 600; background: #fef2f2; border: 1px solid #fecaca; border-radius: .5rem; padding: .75rem; margin-top: 1rem; }
.appform-secure-foot { display: flex; align-items: center; justify-content: center; gap: .5rem; padding-top: .75rem; }
.appform-secure-foot .icon { color: #16a34a; width: .875rem; height: .875rem; }
.appform-secure-foot p { font-size: .6875rem; color: hsla(222,47%,11%,.6); font-weight: 500; }
.appform-success { background: var(--card); color: var(--foreground); padding: 2rem; border-radius: 1rem; box-shadow: var(--shadow-xl); text-align: center; border: 2px solid hsla(15,88%,55%,.3); max-width: 36rem; margin: 0 auto; }
.appform-success .check { height: 4rem; width: 4rem; border-radius: 9999px; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.appform-success .check .icon { color: #16a34a; width: 2.25rem; height: 2.25rem; }
.appform-success h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: .5rem; }
.appform-success p { color: hsla(222,47%,11%,.7); font-weight: 500; margin-bottom: 1.5rem; }
.hidden { display: none !important; }