:root{
  --blue:#004f85;
  --blue2:#1a7fc1;
  --orange:#f7941d;
  --bg:#f4fbff;
  --gray:#565657;
  --gray2:#58595B;
  --btnBlue:#d9ebf8;

  --text:#0b1b2b;
  --white:#ffffff;

  --container:1440px;
  --page-pad:44px;

  --radius-lg:18px;
  --radius-pill:24px;

  --shadow:0 10px 30px rgba(0,0,0,.10);
  --shadow-soft:0 12px 35px rgba(0,32,60,.10);
  --shadow-btn-blue:0 10px 22px rgba(0,79,133,.10);
  --shadow-btn-orange:0 10px 22px rgba(247,148,29,.28);
  --shadow-btn-orange-hover:0 14px 30px rgba(247,148,29,.34);

  --font:"Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html {
  overflow-x: hidden;
  
}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
  text-rendering:optimizeLegibility;
  min-height: 100vh;
}
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  color:#000;
  z-index:9999;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}
img,svg{max-width:100%;height:auto}
p,h1,h2,h3{overflow-wrap:anywhere}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:50px;
  padding:10px 18px;
  border-radius:var(--radius-pill);
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  line-height:1;
  border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--orange);
  color:#000;
  box-shadow:var(--shadow-btn-orange);
}
.btn--primary:hover{box-shadow:var(--shadow-btn-orange-hover)}
.btn--ghost{
  background:var(--btnBlue);
  color:var(--blue);
  border-color:rgba(0,79,133,.10);
}
.btn--ghost:hover{
  border-color:rgba(0,79,133,.22);
  box-shadow:var(--shadow-btn-blue);
}
.wide{width:100%}

.site-header{
  height:69px;
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  height:69px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-inline:var(--page-pad);
}
.brand{
  text-decoration:none;
  color:var(--blue);
  font-weight:700;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
}
.brand-mark{font-size:23px}
.brand-mark span{color:var(--orange)}

.hero{
  min-height:735px;
  height:calc(100svh - 69px);
  max-height:900px;
  position:relative;
  background-image:url("assets/img/hero.jpg");
  background-image:image-set(
    url("assets/img/hero.webp") type("image/webp"),
    url("assets/img/hero.jpg") type("image/jpeg")
  );
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:var(--white);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,0) 70%);
}
.hero-inner{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  padding-block:48px;
  padding-inline:var(--page-pad);
}
.hero-copy{max-width:640px}
.hero-title{
  margin:0 0 34px;
  font-size:58px;
  line-height:64px;
  font-weight:400;
}
.hero-title span{font-weight:700}
.hero-lead{
  margin:0 0 38px;
  max-width:458px;
  font-size:22px;
  line-height:30px;
  font-weight:400;
  color:rgba(255,255,255,.95);
}
.hero-cta{
  font-size:20px;
  line-height:30px;
  padding-inline:22px;
}

.section{padding:64px 0}
.section-title{
  text-align:center;
  margin:0 0 34px;
  color:var(--blue);
  font-size:34px;
  line-height:1.15;
  font-weight:700;
}
.section-title .accent{color:var(--blue2)}
.section-title--left{text-align:left}

.section--why,
.section--steps,
.section--preview,
.section--final{background:#fff}

.why-title{
  margin:0;
  text-align:center;
  font-weight:600;
  font-size:48px;
  line-height:54px;
  color:var(--gray);
}
.why-title span{
  display:block;
  font-weight:600;
  font-size:48px;
  line-height:54px;
  color:var(--blue);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:40px;
  align-items:start;
  margin-top:64px;
}
.feature{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  text-align:center;
}
.feature-ico{
  width:132px;
  height:132px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
}
.feature-ico img{
  width:132px;
  height:132px;
  display:block;
}
.feature-title{
  margin:48px 0 12px;
  font-weight:600;
  font-size:28px;
  line-height:32px;
  color:var(--blue);
}
.feature-text{
  margin:48px auto 0;
  max-width:246px;
  font-weight:500;
  font-size:20px;
  line-height:24px;
  color:var(--gray);
}

.section--pricing{background:var(--bg)}
.section--pricing .section-title{
  font-weight:600;
  font-size:48px;
  line-height:54px;
  color:var(--gray);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  align-items:start;
  margin-top:64px;
}
.price-card{
  background:#fff;
  border-radius:22px;
  padding:32px 32px 18px;
  border:1px solid rgba(0,79,133,.10);
  box-shadow:var(--shadow-soft);
  position:relative;
  min-height:608px;
}
.price-title{
  margin:18px 0 24px;
  font-weight:600;
  font-size:32px;
  line-height:24px;
  text-transform:uppercase;
  color:var(--blue);
}
.price-value{
  margin:0 0 16px;
  font-weight:700;
  font-size:52px;
  line-height:58px;
  color:var(--blue);
}
.currency{font-size:.55em; vertical-align:top; margin-right:2px}
.price-desc{
  margin:25px 0 20px;
  max-width:322px;
  font-weight:500;
  font-size:18px;
  line-height:30px;
  letter-spacing:-0.05em;
  color:var(--gray2);
}
.price-divider{
  width:322px;
  height:1px;
  background:#8593A329;
  margin:25px 0;
}
.price-list{
  margin:0 0 25px;
  padding:0;
  list-style:none;
  font-weight:500;
  font-size:18px;
  line-height:24px;
  color:var(--gray2);
}
.price-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:0 0 14px;
}
.price-list li:last-child{margin-bottom:0}
.price-list li::before{
  content:"";
  width:18px;
  height:18px;
  flex:0 0 18px;
  margin-top:3px;
  background:no-repeat center/18px 18px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23004F85'/%3E%3Cpath d='M5 9.2l2.2 2.2L13.4 5.9' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.section--pricing .btn{
  background:var(--blue);
  color:#fff;
  border:none;
  font-weight:600;
  font-size:20px;
  line-height:24px;
  box-shadow:0 8px 80px rgba(83,86,92,.4);
  margin-bottom:32px;
}
.section--pricing .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 80px rgba(83,86,92,.4);
}

.price-card--featured{
  background:var(--blue);
  color:#fff;
  border:none;
  transform:translateY(-6px);
  min-height:auto;
}
.price-card--featured .chip{
  position:absolute;
  top:-19px;
  right:-19px;
  width:176px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 16px;
  border-radius:80px;
  background:var(--orange);
  color:#fff;
  font-weight:600;
  font-size:14px;
  line-height:18px;
}
.price-card--featured .price-title,
.price-card--featured .price-value,
.price-card--featured .price-desc,
.price-card--featured .price-list{color:#fff}
.price-card--featured .price-divider{background:rgba(255,255,255,.16)}
.price-card--featured .price-list li::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23FFFFFF'/%3E%3Cpath d='M5 9.2l2.2 2.2L13.4 5.9' fill='none' stroke='%23004F85' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.price-card--featured .btn{
  background:#fff;
  color:#282828;
}
.price-card--featured .btn:hover{
  box-shadow:0 10px 90px rgba(0,0,0,.35);
}

.price-card--accent .price-title{color:var(--orange)}
.price-card--accent .btn{
  background:var(--orange);
  color:#000;
}

.section--steps .section-title{
  font-weight:700;
  font-size:48px;
  line-height:1;
  text-align:center;
  color:var(--blue);
}
.steps{
  display:flex;
  flex-wrap:wrap;
  gap:28px 22px;
  justify-content:center;
  align-items:flex-start;
}
.step{
  width:260px;
  text-align:center;
  margin-inline:auto;
}
.step-bubble{
  width:146px;
  height:146px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  background:var(--btnBlue);
  font-weight:700;
  font-size:80px;
  line-height:1.15;
  color:var(--blue);
}
.step-text{
  margin:34px 0 0;
  text-align:center;
  font-weight:700;
  font-size:28px;
  line-height:24px;
  color:var(--gray2);
}
.step-arrow{
  width:66px;
  height:61px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:44px;
  pointer-events:none;
}
.arrow-icon{width:66px;height:61px;display:block}
.steps .step:last-child .step-bubble{
  background:var(--blue);
  color:#fff;
}

.section--preview .section-title{
  max-width:549px;
  font-weight:700;
  font-size:48px;
  line-height:1.25;
  color:var(--blue);
}
.preview-grid{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:26px;
  align-items:center;
}
.section--preview .muted{
  margin:0 0 16px;
  max-width:520px;
  font-weight:500;
  font-size:20px;
  line-height:24px;
  text-align:left;
  color:var(--gray);
}
.section--preview .btn{margin-top:34px}
.preview-image{display:flex;align-items:flex-start}
.preview-image img{
  width:1024px;
  height:auto;
  max-width:100%;
  transform:translateX(24px);
}

.section--final{background:var(--bg)}
.section--final .btn{
  margin-top:34px;
  width:220px;
  height:50px;
  font-weight:700;
  font-size:22px;
  line-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.final-box{
  text-align:center;
  padding:58px 18px 66px;
}
.final-title{
  max-width:578px;
  margin:0 auto 18px;
  font-weight:600;
  font-size:48px;
  line-height:54px;
  text-align:center;
  color:var(--blue);
}

.site-footer{background:#ffffff}

.footer-inner{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  align-items:start;
  padding:22px 24px 26px;
}

.site-footer .footer-text,
.site-footer .footer-strong{
  font-family:"Quicksand", sans-serif;
  font-weight:500;
  font-size:16px;
  line-height:24px;
  letter-spacing:0;
  color:#565657;
}

.site-footer .footer-strong{display:inline-block}

.footer-powered{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
}
.footer-powered .powered-by{
  font-family:"Quicksand", sans-serif;
  font-weight:500;
  font-size:14px;
  line-height:18px;
  letter-spacing:0;
  color:#58595B;
  display:block;
  margin:0;
  padding:0;
}
.footer-link{
  color:#565657;
  text-decoration:none;
}
.footer-link:hover{text-decoration:underline}
.footer-powered .studio-helios{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  font-family:"Quicksand", sans-serif;
  font-weight:500;
  font-size:24px;
  line-height:30px;
  letter-spacing:0;
}
.footer-powered .studio{color:#065C62;font-weight:500}
.footer-powered .helios{color:#065C62;font-weight:700}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-right{
  text-align:right;
  justify-self:end;
}
.site-footer{
  border-top:1px solid rgba(0,0,0,.06);
  background:#fafbfd;
}
.footer-inner{
  padding:36px 24px 40px;
}
@media (max-width:1100px){
  .footer-inner{
    grid-template-columns:240px 1fr;
    row-gap:14px;
  }
  .footer-right{
    justify-self:start;
    text-align:left;
  }
}

@media (max-width:720px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:14px;
    padding:18px 16px 22px;
    text-align:center;
    justify-items:center;
  }
  .footer-col:nth-child(2){
    margin-bottom:-12px;
  }
  .site-footer .footer-text,
  .site-footer .footer-strong{
    font-size:15px;
    line-height:22px;
  }
  .footer-link{
    padding:0;
    display:inline-block;
  }
  .footer-col{align-items:center;}
  .footer-powered{
    align-items:center;
  }
  .footer-right{
    text-align:center;
    justify-self:center;
  }
}

@media (min-width:1200px){
  .steps{
    display:grid;
    grid-template-columns:260px 66px 260px 66px 260px 66px 260px;
  }
  .step-arrow{display:flex}
}
@media (max-width:1199px){
  .steps{display:flex;flex-wrap:wrap}
  .step-arrow{display:none}
}
@media (max-width:1100px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr}
  .price-card--featured{transform:none}
  .preview-grid{grid-template-columns:1fr}
}

@media (max-width:720px){
  :root{--page-pad:14px}
  .container{width:min(var(--container), calc(100% - 28px))}
  .site-header,.header-inner{height:62px}
  .brand-mark{font-size:20px}
  .header-inner{padding-inline:var(--page-pad)}
  .header-actions .btn{height:44px;padding:10px 14px;font-size:14px}
  .header-actions{display:none;}
  .hero{
    min-height:clamp(560px, 75svh, 657px);
    height:auto;
    padding-block:0;
    background-position:60% center;
  }
  .hero-overlay{
    background:linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.30) 52%, rgba(0,0,0,0) 100%);
  }
  .hero-copy{ max-width:28ch;}
  .hero-inner{
    height:100%;
    align-items:flex-start;
    padding-inline:var(--page-pad);
    padding-top:clamp(110px, 18svh, 178px);
    padding-bottom:clamp(20px, 5svh, 42px);
  }
  .hero-title{
    font-size:clamp(34px, 7vw, 42px);
    line-height:clamp(42px, 9vw, 54px);
    margin:0;
  }
  .hero-lead{
    margin-top:clamp(32px, 8vw, 80px);
    margin-bottom:clamp(32px, 8vw, 80px);
    font-size:clamp(16px, 4.4vw, 18px);
    line-height:1.45;
    max-width:38ch;
  }
  .hero-cta{
    width:min(100%, 200px);
    height:48px;
    font-size:14px;
    padding-inline:16px;
    border-radius:20px;
  }

  .section{padding:44px 0}
  .section-title{
    margin:0 0 22px;
    font-size:clamp(22px, 5.6vw, 28px);
    line-height:1.18;
  }
  .why-title,
  .why-title span{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.12;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:26px;
    margin-top:34px;
  }
  .feature-ico{
    width:96px;
    height:96px;
    margin:0 auto 10px;
  }
  .feature-ico img{
    width:96px;
    height:96px;
  }
  .feature-title{
    margin:12px 0 8px;
    font-size:22px;
    line-height:1.2;
  }
  .feature-text{
    margin:0 auto;
    max-width:34ch;
    font-size:16px;
    line-height:1.45;
  }

  .section--pricing .section-title{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.12;
  }
  .pricing-grid{margin-top:34px;gap:18px}

  .price-card{
    padding:22px 18px 16px;
    min-height:0;
    box-shadow:0 10px 26px rgba(0,32,60,.10);
  }
  .price-title{
    margin:10px 0 14px;
    font-size:22px;
    line-height:1.15;
  }
  .price-value{
    font-size:42px;
    line-height:1.1;
  }
  .price-desc{
    margin:14px 0 14px;
    max-width:none;
    width:auto;
    font-size:16px;
    line-height:1.5;
    letter-spacing:normal;
  }
  .price-divider{
    width:100%;
    margin:16px 0;
  }
  .price-list{
    font-size:16px;
    line-height:1.45;
    margin:0 0 16px;
  }
  .section--pricing .btn{
    width:100%;
    height:52px;
    font-size:16px;
    line-height:1;
    margin-bottom:12px;
    box-shadow:0 10px 34px rgba(83,86,92,.25);
  }
  .price-card--featured{transform:none}
  .price-card--featured .chip{
    right:12px;
    top:12px;
    width:auto;
    height:auto;
    padding:10px 14px;
    border-radius:999px;
  }

  .section--steps .section-title{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.1;
  }
  .steps{width:100%;margin:0;gap:28px;justify-items:center}
  .step{width:100%;max-width:420px}
  .step-arrow{display:none}
  .step-bubble{
    width:112px;
    height:112px;
    font-size:64px;
  }
  .step-text{
    margin:16px 0 0;
    font-size:18px;
    line-height:1.3;
  }
  .preview-copy{
    padding-inline:14px;
  }
  .preview-grid{gap:28px}
  .section--preview .section-title{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.18;
    max-width:none;
  }
  .section--preview .muted{
    font-size:16px;
    line-height:1.5;
    max-width:none;
  }
  .preview-image{
    margin-inline:0;
    width:auto;
  }
  .preview-image img{
    width:calc(100% + 28px);
    max-width:none;
    margin-left:-14px;
    margin-right:-14px;
    display:block;
    transform:none;
    aspect-ratio:16/10;
    object-fit:cover;
    border-radius:16px;
  }

  .final-box{padding:44px 16px 52px}
  .final-title{
    font-size:clamp(28px, 7vw, 36px);
    line-height:1.12;
    margin:0 auto 14px;
  }
  .section--final .btn{
    width:100%;
    max-width:420px;
    height:52px;
    font-size:18px;
  }
}

@media (hover:none){
  .btn:hover{transform:none}
  .btn--primary:hover{box-shadow:var(--shadow-btn-orange)}
  .btn--ghost:hover{box-shadow:none}
  .section--pricing .btn:hover{box-shadow:0 10px 34px rgba(83,86,92,.25)}
}

@media (prefers-reduced-motion:reduce){
  .btn{transition:none}
}

/* =========================
   CONTACT OVERLAY (with themes)
   ========================= */

.cf-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;

  /* Theme tokens (defaults match your original overlay) */
  --cf-bg:#F4FBFF;
  --cf-title:#004F85;
  --cf-lead:#565657;
  --cf-label:#004F85;
  --cf-field-border: rgba(0,79,133,.16);
  --cf-field-focus: rgba(0,79,133,.45);
  --cf-field-ring: rgba(0,79,133,.12);
  --cf-close-border: rgba(0,79,133,.14);
  --cf-close-color:#004F85;
  --cf-close-hover: rgba(0,79,133,.08);
}
.cf-overlay.is-open{display:block}

.cf-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.cf-modal{
  position:relative;
  height:100%;
  width:100%;
  background:var(--cf-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  overflow:auto;
}

.cf-wrap{
  width:100%;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  position:relative;
}

.cf-title{
  margin:0 0 16px;
  color:var(--cf-title);
  font-family:"Quicksand", sans-serif;
  font-weight:600;
  font-size:54px;
  line-height:58px;
  letter-spacing:0;
}
.cf-brand{
  display:flex;
  justify-content:center;
  margin-bottom:26px;
}

.brand--overlay{
  text-decoration:none;
  font-family:var(--font);
  font-weight:700;
  letter-spacing:.2px;
  font-size:22px;
  line-height:1;
  color:#004F85;
}

.brand--overlay .brand-mark span{
  color:#F7941D;
}
.cf-lead{
  margin:0 auto 28px;
  max-width:620px;
  color:var(--cf-lead);
  font-family:"Quicksand", sans-serif;
  font-weight:500;
  font-size:20px;
  line-height:24px;
  letter-spacing:0;
}

.cf-form{
  width:100%;
  max-width:520px;
  margin:0 auto;
  text-align:left;
  display:grid;
  gap:14px;
}

.cf-label{
  font-family:"Quicksand", sans-serif;
  font-weight:600;
  font-size:16px;
  line-height:22px;
  color:var(--cf-label);
  margin-top:6px;
}

.cf-input,
.cf-textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--cf-field-border);
  background:#ffffff;
  padding:14px 14px;
  font-family:"Quicksand", sans-serif;
  font-weight:500;
  font-size:18px;
  line-height:24px;
  color:#0b1b2b;
  outline:none;
}

.cf-textarea{
  resize:vertical;
  min-height:140px;
}

.cf-input:focus,
.cf-textarea:focus{
  border-color:var(--cf-field-focus);
  box-shadow:0 0 0 4px var(--cf-field-ring);
}

.cf-submit{
  margin-top:10px;
  height:50px;
  width:220px;
  justify-self:center;
  border:none;
  border-radius:24px;
  background:#F7941D;
  color:#000000;
  font-family:"Quicksand", sans-serif;
  font-weight:700;
  font-size:22px;
  line-height:30px;
  letter-spacing:0;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease;
  box-shadow:0 10px 22px rgba(247,148,29,.28);
}

.cf-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(247,148,29,.34);
}

.cf-close{
  position:absolute;
  top:-56px;
  right:0;

  width:44px;
  height:44px;

  border-radius:14px;
  border:none;

  background:#F59A23; /* elegant orange */
  color:#000000;

  font-size:28px;
  line-height:1;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:transform .12s ease, box-shadow .12s ease;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.cf-close:hover{background:var(--cf-close-hover)}

/* Theme modifiers (scalable) */
.cf-overlay.theme--blue{
  --cf-bg: var(--blue);
  --cf-title:#ffffff;
  --cf-lead: rgba(255,255,255,.88);
  --cf-label:#ffffff;
  --cf-field-border: rgba(255,255,255,.22);
  --cf-field-focus: rgba(255,255,255,.60);
  --cf-field-ring: rgba(255,255,255,.14);
  --cf-close-border: rgba(255,255,255,.22);
  --cf-close-color:#ffffff;
  --cf-close-hover: rgba(255,255,255,.10);
}

.cf-overlay.theme--orange{

  /* Deep Navy Premium Theme */

  --cf-bg:#0F2A44;

  --cf-title:#ffffff;
  --cf-lead: rgba(255,255,255,.82);
  --cf-label:#ffffff;

  --cf-field-border: rgba(255,255,255,.18);
  --cf-field-focus: rgba(255,255,255,.55);
  --cf-field-ring: rgba(255,255,255,.12);

  --cf-close-border: rgba(255,255,255,.18);
  --cf-close-color:#ffffff;
  --cf-close-hover: rgba(255,255,255,.08);
}

.cf-overlay.theme--light{
  --cf-bg:#ffffff;
  --cf-title: var(--blue);
  --cf-lead: var(--gray);
  --cf-label: var(--blue);
}
.cf-overlay.theme--lightblue{
  --cf-bg:#F4FBFF;
  --cf-title:#004F85;
  --cf-lead:#565657;
  --cf-label:#004F85;
}
.theme--blue .brand--overlay,
.theme--orange .brand--overlay{
  color:#ffffff;
}

.theme--blue .brand--overlay .brand-mark span,
.theme--orange .brand--overlay .brand-mark span{
  color:#F59A23;
}
@media (max-width:720px){
  .cf-modal{padding:18px}
  .cf-wrap{padding-top:52px;text-align:left;max-width:360px;margin:0 auto}
  .cf-close{top:0;right:0}
  .cf-title{
    font-size:clamp(26px, 7vw, 36px);
    line-height:1.12;
    text-align:left;
  }
  .cf-lead{
    font-size:16px;
    line-height:1.5;
    text-align:left;
    margin-bottom:22px;
  }
  .cf-form{gap:4px;max-width:100%}
  .cf-submit{width:100%;height:52px;font-size:18px}
  .cf-input,
  .cf-textarea{
    padding:9px 12px;
    font-size:16px;
    line-height:20px;
    border-radius:10px;
  }
  .cf-textarea{min-height:96px}
  .cf-label{
    margin-top:4px;
    font-size:15px;
  }
}
/* WhatsApp floating button (mobile only + scroll reveal via .is-visible) */
/* =========================
   WhatsApp floating button
   (show on mobile after scroll)
   ========================= */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  box-shadow:2px 2px 12px rgba(0,0,0,.28);
  z-index:10050;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:opacity .18s ease, transform .2s ease, background-color .2s ease;
}

.whatsapp-float.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.whatsapp-float:hover{
  background:#128C7E;
  transform:scale(1.06);
}

.whatsapp-icon{
  width:34px;
  height:34px;
  fill:currentColor;
  display:block;
}

/* desktop: never show */
@media (min-width:721px){
  .whatsapp-float{ display:none !important; }
}

/* very small phones */
@media (max-width:360px){
  .whatsapp-float{ width:56px;height:56px;right:16px;bottom:16px; }
  .whatsapp-icon{ width:32px;height:32px; }
}
.cf-overlay.is-open ~ .whatsapp-float{
  display:none;
}