@font-face{
  font-family:"Estedad";
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url("https://cdn.jsdelivr.net/fontsource/fonts/estedad:vf@5.3.0/arabic-wght-normal.woff2") format("woff2-variations");
}
@font-face{
  font-family:"Estedad";
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url("https://cdn.jsdelivr.net/fontsource/fonts/estedad:vf@5.3.0/latin-wght-normal.woff2") format("woff2-variations");
}

/* RONIKA FINAL ESTEDAD V21 — HERO TITLE + VIDEO + FULL LOGO */
:root{
  --navy:#07162d;
  --navy-2:#102846;
  --navy-3:#1b4167;
  --gold:#d9b85e;
  --gold-light:#f3dc99;
  --gold-dark:#9c7b29;
  --ink:#102238;
  --muted:#6f7b8b;
  --line:#e2e8ef;
  --soft:#f4f7fa;
  --white:#fff;
  --danger:#a63a3a;
  --success:#14704b;
  --container:min(1160px,calc(100% - 40px));
  --radius:24px;
  --shadow:0 20px 55px rgba(7,22,45,.10);
  --shadow-soft:0 10px 30px rgba(7,22,45,.07);
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:136px;
}
body{
  margin:0;
  min-width:320px;
  overflow-x:hidden;
  background:#fbfcfe;
  color:var(--ink);
  font-family:"Estedad",Tahoma,Arial,sans-serif;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll{overflow:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
button{cursor:pointer}
.container{width:var(--container);margin-inline:auto}

.skip-link{
  position:fixed;
  inset-inline-start:16px;
  top:-100px;
  z-index:100;
  padding:10px 16px;
  border-radius:12px;
  background:#fff;
  color:var(--navy);
  box-shadow:var(--shadow-soft);
}
.skip-link:focus{top:16px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,22,45,.97);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  transition:box-shadow .2s ease;
}
.site-header.scrolled{box-shadow:0 12px 30px rgba(3,13,29,.18)}
.header-inner{
  min-height:82px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  width:52px;
  height:52px;
  flex:0 0 52px;
  overflow:hidden;
  border-radius:15px;
  background:#050505;
  border:1px solid rgba(217,184,94,.35);
}
.brand-logo img{width:100%;height:100%;object-fit:cover}
.brand-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  color:#fff;
  line-height:1.35;
}
.brand-copy strong{font-size:1rem;white-space:nowrap}
.brand-copy small{font-size:.7rem;color:rgba(255,255,255,.58)}
.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
}
.main-nav a{
  color:rgba(255,255,255,.72);
  font-size:.88rem;
  transition:color .18s ease;
}
.main-nav a:hover,.main-nav a:focus-visible{color:#fff}
.header-cta{
  min-height:46px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  white-space:nowrap;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-size:.9rem;
  font-weight:900;
  box-shadow:0 12px 28px rgba(217,184,94,.18);
}

/* Compact project ribbon */
.project-ribbon{
  position:fixed;
  top:82px;
  right:0;
  left:0;
  z-index:45;
  pointer-events:none;
  opacity:0;
  transform:translateY(-14px);
  transition:opacity .2s ease,transform .2s ease;
}
.project-ribbon.is-visible{
  opacity:1;
  transform:translateY(0);
}
.ribbon-card{
  width:min(440px,100%);
  min-height:52px;
  margin:8px auto 0;
  padding:6px 10px;
  display:grid;
  grid-template-columns:40px minmax(0,1fr) 40px;
  grid-template-areas:"logo copy person";
  align-items:center;
  gap:9px;
  border-radius:18px;
  background:rgba(18,47,80,.95);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 14px 34px rgba(4,15,32,.18);
  backdrop-filter:blur(12px);
}
.ribbon-person{grid-area:person}
.ribbon-copy{grid-area:copy}
.ribbon-logo{grid-area:logo}
.ribbon-person,.ribbon-logo{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:50%;
  background:#fff;
  border:1px solid rgba(217,184,94,.70);
  isolation:isolate;
  padding:0;
}
.ribbon-person img{width:100%;height:100%;object-fit:cover;object-position:center 23%}
.ribbon-logo img{
  width:86%;
  height:86%;
  object-fit:contain;
  object-position:center;
  display:block;
}
.ribbon-copy{
  min-width:0;
  text-align:center;
  line-height:1.2;
}
.ribbon-copy strong{
  display:block;
  color:#fff;
  font-size:.84rem;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ribbon-copy span{
  display:block;
  margin-top:2px;
  color:rgba(243,220,153,.92);
  font-size:.55rem;
  font-weight:780;
}

/* Hero */
.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:760px;
  background:var(--navy);
  color:#fff;
}
.hero-background{
  position:absolute;
  inset:0;
  z-index:-2;
  background:url("/assets/images/hero.webp") center/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(5,17,34,.94) 0%,rgba(7,24,46,.83) 44%,rgba(7,24,46,.42) 72%,rgba(7,24,46,.58) 100%),
    linear-gradient(180deg,rgba(5,17,34,.10),rgba(5,17,34,.84));
}
.hero-grid{
  min-height:760px;
  padding:56px 0 66px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(350px,410px);
  align-items:center;
  gap:54px;
}
.hero-content{max-width:700px}
.hero-identity{
  width:fit-content;
  max-width:100%;
  margin-bottom:22px;
  padding:6px 8px;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) 44px;
  grid-template-areas:"logo copy person";
  align-items:center;
  gap:9px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}
.identity-person{grid-area:person}
.identity-copy{grid-area:copy}
.identity-logo{grid-area:logo}
.identity-person,.identity-logo{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:50%;
  background:#fff;
  border:1px solid rgba(217,184,94,.75);
  isolation:isolate;
  padding:0;
}
.identity-person img{width:100%;height:100%;object-fit:cover;object-position:center 23%}
.identity-logo img{
  width:86%;
  height:86%;
  object-fit:contain;
  object-position:center;
  display:block;
}
.identity-copy{min-width:0;line-height:1.25}
.identity-copy small{
  display:block;
  color:rgba(243,220,153,.90);
  font-size:.66rem;
  font-weight:760;
}
.identity-copy strong{
  display:block;
  color:#fff;
  font-size:.92rem;
  font-weight:900;
  white-space:nowrap;
}
.hero-kicker{
  margin:0 0 10px;
  color:var(--gold-light);
  font-size:.94rem;
  font-weight:820;
}
.hero h1{
  margin:0 0 22px;
  font-size:clamp(3.4rem,7vw,6.4rem);
  line-height:.97;
  letter-spacing:-2px;
  font-weight:950;
  text-wrap:balance;
}
.hero h1 span{display:block;color:var(--gold-light)}
.offer-card{
  width:min(100%,560px);
  padding:20px 22px;
  border-radius:24px;
  background:linear-gradient(145deg,rgba(8,31,59,.84),rgba(11,39,70,.72));
  border:1px solid rgba(217,184,94,.34);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}
.offer-label{
  display:block;
  margin-bottom:3px;
  color:rgba(255,255,255,.82);
  font-size:.92rem;
  font-weight:760;
}
.offer-price{
  display:block;
  color:var(--gold-light);
  font-size:clamp(2.2rem,4vw,3.7rem);
  line-height:1.2;
  font-weight:950;
  letter-spacing:-1px;
}
.offer-price b{font-size:1.25em}
.offer-features{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.offer-features span{
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:.8rem;
  font-weight:800;
}
.hero-description{
  max-width:620px;
  margin:18px 0 0;
  color:rgba(255,255,255,.77);
  font-size:1rem;
  line-height:1.95;
}
.hero-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.button{
  min-height:52px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  border:0;
  font-weight:900;
  text-align:center;
  transition:transform .18s ease,box-shadow .18s ease;
}
.button:hover{transform:translateY(-1px)}
.button-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  box-shadow:0 14px 34px rgba(217,184,94,.20);
}
.button-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.03);
}
.button-navy{
  background:linear-gradient(135deg,var(--navy),var(--navy-3));
  color:#fff;
  box-shadow:var(--shadow-soft);
}
.hero-proof{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:rgba(255,255,255,.72);
  font-size:.78rem;
}
.hero-proof span::before{
  content:"✓";
  margin-left:6px;
  color:var(--gold-light);
  font-weight:900;
}

/* Form */
.lead-card{
  align-self:center;
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.985);
  color:var(--ink);
  border:1px solid rgba(255,255,255,.70);
  box-shadow:0 28px 75px rgba(0,0,0,.24);
}
.form-heading{margin-bottom:16px}
.form-badge{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:#f7f0dc;
  color:var(--gold-dark);
  font-size:.72rem;
  font-weight:820;
}
.form-heading h2{
  margin:7px 0 3px;
  font-size:1.38rem;
  line-height:1.35;
}
.form-heading p{
  margin:0;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.75;
}
.field-list{display:grid;gap:11px}
.field{
  position:relative;
  display:grid;
  gap:6px;
}
.field>span{
  color:var(--navy);
  font-size:.82rem;
  font-weight:820;
}
.field input,.field select{
  width:100%;
  height:49px;
  display:block;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:14px;
  outline:none;
  background:#fff;
  color:var(--ink);
  transition:border-color .18s ease,box-shadow .18s ease;
}
.field input::placeholder{color:#99a4b1}
.field input:focus,.field select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(217,184,94,.14);
}
.field input.invalid,.field select.invalid{
  border-color:#cf5454;
  box-shadow:0 0 0 4px rgba(207,84,84,.11);
}
.field input[name="phone"]{
  direction:ltr;
  text-align:left;
  unicode-bidi:plaintext;
}
.field-select::after{
  content:"";
  position:absolute;
  left:17px;
  bottom:19px;
  width:8px;
  height:8px;
  border-left:2px solid #26415f;
  border-bottom:2px solid #26415f;
  transform:rotate(-45deg);
  pointer-events:none;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  direction:rtl;
  text-align:right;
  text-align-last:right;
  padding-right:14px;
  padding-left:44px;
}
.field select:invalid{color:#8c98a6}
.field select option{color:var(--ink)}
.submit-button{
  width:100%;
  min-height:52px;
  margin-top:16px;
  border:0;
  border-radius:15px;
  background:linear-gradient(135deg,var(--navy),var(--navy-3));
  color:#fff;
  font-weight:950;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  box-shadow:var(--shadow-soft);
}
.submit-button:disabled{opacity:.72}
.spinner{
  display:none;
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .75s linear infinite;
}
.submit-button.loading .spinner{display:inline-block}
@keyframes spin{to{transform:rotate(360deg)}}
.form-message{
  display:none;
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  font-size:.82rem;
}
.form-message.success{display:block;background:#e9f7ef;color:var(--success)}
.form-message.error{display:block;background:#fbebeb;color:var(--danger)}
.privacy-note{
  margin:10px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:.71rem;
}
.honeypot{
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
  pointer-events:none!important;
}

/* Facts */
.facts-section{
  position:relative;
  z-index:2;
  margin-top:-24px;
}
.facts-panel{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.fact{
  min-width:0;
  padding:20px;
  border-left:1px solid var(--line);
}
.fact:last-child{border-left:0}
.fact span{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:.72rem;
}
.fact strong{
  display:block;
  color:var(--navy);
  font-size:1rem;
  line-height:1.5;
}

/* Shared sections */
.section{padding:88px 0}
.section-heading{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--gold-dark);
  font-size:.82rem;
  font-weight:850;
}
.section-kicker::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:3px;
  background:var(--gold);
}
.section-heading h2,.section-copy h2,.final-card h2{
  margin:0 0 12px;
  color:var(--navy);
  font-size:clamp(2rem,3.8vw,3.3rem);
  line-height:1.2;
  letter-spacing:-1px;
  text-wrap:balance;
}
.section-heading p,.section-copy>p{
  margin:0;
  color:var(--muted);
  line-height:2;
}
.split-layout{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  align-items:center;
  gap:52px;
}
.media-card{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.media-card img{
  width:100%;
  height:470px;
  object-fit:cover;
}
.feature-list{
  margin:22px 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.feature-list li{
  position:relative;
  padding-right:26px;
  color:var(--ink);
}
.feature-list li::before{
  content:"✓";
  position:absolute;
  right:0;
  color:var(--gold-dark);
  font-weight:950;
}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--navy);
  font-weight:900;
}
.text-link::after{content:"←";color:var(--gold-dark)}

/* Benefits */
.benefits-section{background:var(--soft)}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.benefit-card{
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.benefit-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.benefit-number{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#f7f0dc;
  color:var(--gold-dark);
  font-size:.92rem;
  font-weight:950;
}
.benefit-head h3{
  margin:0;
  color:var(--navy);
  font-size:1.08rem;
  line-height:1.4;
}
.benefit-card p{
  margin:0;
  padding-right:56px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.9;
}
.inline-cta{
  margin-top:24px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
}
.inline-cta strong{display:block;margin-bottom:3px}
.inline-cta span{color:rgba(255,255,255,.68);font-size:.84rem}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.gallery-item{
  position:relative;
  min-height:280px;
  padding:0;
  overflow:hidden;
  border:0;
  border-radius:22px;
  background:#e7edf2;
  box-shadow:var(--shadow-soft);
}
.gallery-wide{grid-column:1/-1;min-height:410px}
.gallery-item img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item:hover img{transform:scale(1.025)}
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(3,16,32,.78));
}
.gallery-item span{
  position:absolute;
  z-index:2;
  right:20px;
  bottom:16px;
  color:#fff;
  font-weight:900;
}
.gallery-plan img{object-fit:contain;background:#fff}

/* Builder */
.builder-section{background:var(--soft)}
.builder-panel{
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);
  align-items:stretch;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.builder-photo{
  margin:0;
  min-height:520px;
  background:#edf1f4;
}
.builder-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
}
.builder-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.builder-brand{
  width:fit-content;
  max-width:100%;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:16px;
}
.builder-brand img{
  width:140px;
  height:72px;
  padding:8px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
}
.builder-brand strong{
  display:block;
  color:var(--navy);
  line-height:1.5;
}
.builder-brand span{
  display:block;
  color:var(--muted);
  font-size:.78rem;
}
.builder-content h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.25;
}
.builder-content>p{
  margin:0;
  color:var(--muted);
  line-height:2;
}
.builder-tags{
  margin:18px 0 24px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.builder-tags span{
  padding:6px 11px;
  border-radius:999px;
  background:#f5f7f9;
  border:1px solid var(--line);
  color:var(--navy);
  font-size:.76rem;
  font-weight:800;
}
.builder-content .button{align-self:flex-start}

/* FAQ */
.faq-section{background:#fff}
.faq-list{
  max-width:850px;
  margin-inline:auto;
  display:grid;
  gap:12px;
}
.faq-list details{
  padding:0 20px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.faq-list summary{
  padding:17px 0;
  display:flex;
  justify-content:space-between;
  gap:16px;
  list-style:none;
  color:var(--navy);
  font-weight:900;
  cursor:pointer;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  color:var(--gold-dark);
  font-size:1.25rem;
}
.faq-list details[open] summary::after{content:"−"}
.faq-list details p{
  margin:0;
  padding:0 0 18px;
  color:var(--muted);
  line-height:1.9;
}

/* Final CTA and footer */
.final-cta{
  padding:0 0 88px;
  background:#fff;
}
.final-card{
  padding:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
}
.section-kicker-light{color:var(--gold-light)}
.final-card h2{color:#fff;font-size:clamp(1.8rem,3vw,2.7rem)}
.final-card p{margin:0;color:rgba(255,255,255,.70)}
.site-footer{
  padding:34px 0 18px;
  background:#041122;
  color:#fff;
}
.footer-layout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-logo{
  width:58px;
  height:58px;
  overflow:hidden;
  border-radius:15px;
  border:1px solid rgba(217,184,94,.25);
}
.footer-logo img{width:100%;height:100%;object-fit:cover}
.footer-brand strong{display:block;margin-bottom:2px}
.footer-brand p{margin:0;color:rgba(255,255,255,.62);font-size:.82rem}
.footer-contact{text-align:left}
.footer-contact span{display:block;color:rgba(255,255,255,.55);font-size:.7rem}
.footer-contact strong{font-size:.92rem}
.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.46);
  font-size:.72rem;
}
.mobile-lead{
  display:none;
  position:fixed;
  right:12px;
  left:12px;
  bottom:max(12px,env(safe-area-inset-bottom));
  z-index:60;
  min-height:52px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
  font-weight:950;
  box-shadow:0 16px 38px rgba(0,0,0,.22);
}
.lightbox{
  width:min(980px,calc(100% - 28px));
  max-height:90vh;
  padding:0;
  overflow:hidden;
  border:0;
  border-radius:22px;
  background:#07162d;
  color:#fff;
}
.lightbox::backdrop{background:rgba(2,9,18,.82)}
.lightbox-close{
  position:absolute;
  top:10px;
  left:10px;
  z-index:3;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:1.3rem;
}
.lightbox-content img{width:100%;max-height:80vh;object-fit:contain}
.lightbox-content p{margin:0;padding:10px 16px;text-align:center}

@media (max-width:980px){
  .main-nav{display:none}
  .header-inner{grid-template-columns:1fr auto}
  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .hero-content{max-width:760px}
  .lead-card{width:min(100%,560px)}
  .split-layout{grid-template-columns:1fr;gap:34px}
  .benefits-grid{grid-template-columns:1fr}
  .builder-panel{grid-template-columns:1fr}
  .builder-photo{min-height:420px}
  .builder-content{padding:30px}
}

@media (max-width:760px){
  :root{--container:calc(100% - 28px);--radius:22px}
  html{scroll-padding-top:124px}
  body{padding-bottom:0}
  main{padding-bottom:78px}

  .header-inner{min-height:72px;gap:12px}
  .brand{gap:9px}
  .brand-logo{width:46px;height:46px;flex-basis:46px;border-radius:13px}
  .brand-copy strong{font-size:.88rem}
  .brand-copy small{display:none}
  .header-cta{
    min-height:40px;
    padding:0 13px;
    border-radius:14px;
    font-size:.78rem;
  }

  .project-ribbon{top:72px}
  .ribbon-card{
    width:calc(100% - 12px);
    min-height:48px;
    margin-top:6px;
    grid-template-columns:34px minmax(0,1fr) 34px;
    padding:5px 8px;
    border-radius:16px;
  }
  .ribbon-person,.ribbon-logo{width:32px;height:32px}
  .ribbon-logo img{width:86%;height:86%;object-fit:contain;object-position:center}
  .ribbon-copy strong{font-size:.74rem}
  .ribbon-copy span{font-size:.49rem}

  .hero{
    min-height:auto;
  }
  .hero-background{
    background-image:url("/assets/images/hero-mobile.webp");
    background-position:center top;
  }
  .hero-overlay{
    background:
      linear-gradient(180deg,rgba(5,17,34,.72) 0%,rgba(5,17,34,.88) 45%,rgba(5,17,34,.98) 100%);
  }
  .hero-grid{
    min-height:auto;
    padding:26px 0 42px;
    gap:28px;
  }
  .hero-content{text-align:center}
  .hero-identity{
    width:100%;
    margin:0 auto 20px;
    grid-template-columns:40px minmax(0,1fr) 40px;
    padding:5px 7px;
    border-radius:16px;
  }
  .identity-person,.identity-logo{width:38px;height:38px}
  .identity-logo img{width:86%;height:86%;object-fit:contain;object-position:center}
  .identity-copy{text-align:center}
  .identity-copy small{font-size:.58rem}
  .identity-copy strong{font-size:.78rem}
  .hero-kicker{font-size:.83rem}
  .hero h1{
    margin-bottom:18px;
    font-size:clamp(3rem,16vw,4.6rem);
    line-height:1;
    letter-spacing:-1.5px;
  }
  .offer-card{
    margin-inline:auto;
    padding:17px 16px;
    border-radius:22px;
  }
  .offer-label{font-size:.82rem}
  .offer-price{font-size:2.35rem}
  .offer-features{justify-content:center}
  .offer-features span{font-size:.73rem}
  .hero-description{
    margin:15px auto 0;
    font-size:.91rem;
    line-height:1.9;
  }
  .hero-actions{flex-direction:column}
  .hero-actions .button{width:100%}
  .hero-proof{justify-content:center;gap:10px;font-size:.7rem}

  .lead-card{
    width:100%;
    padding:17px 15px;
    border-radius:22px;
  }
  .form-heading{text-align:center;margin-bottom:12px}
  .form-heading h2{font-size:1.2rem}
  .form-heading p{font-size:.77rem}
  .field-list{gap:9px}
  .field>span{font-size:.78rem}
  .field input,.field select{height:46px;font-size:.94rem}
  .field-select::after{left:16px;bottom:18px}
  .submit-button{min-height:49px;margin-top:13px;font-size:.94rem}
  .privacy-note{font-size:.67rem}

  .facts-section{margin-top:0;padding:18px 0}
  .facts-panel{grid-template-columns:repeat(2,minmax(0,1fr));border-radius:20px}
  .fact{padding:15px;border-left:1px solid var(--line);border-bottom:1px solid var(--line)}
  .fact:nth-child(2n){border-left:0}
  .fact:nth-last-child(-n+2){border-bottom:0}
  .fact span{font-size:.66rem}
  .fact strong{font-size:.88rem}

  .section{padding:66px 0}
  .section-heading{margin-bottom:24px}
  .section-heading h2,.section-copy h2,.final-card h2{
    font-size:clamp(1.8rem,9vw,2.45rem);
    line-height:1.23;
  }
  .section-heading p,.section-copy>p{font-size:.94rem;line-height:1.9}
  .media-card img{height:320px}
  .feature-list{font-size:.91rem}
  .benefit-card{padding:18px}
  .benefit-head{gap:10px}
  .benefit-number{width:40px;height:40px;flex-basis:40px}
  .benefit-head h3{font-size:1rem}
  .benefit-card p{padding-right:50px;font-size:.86rem}
  .inline-cta{align-items:stretch;flex-direction:column;padding:18px}
  .inline-cta .button{width:100%}

  .gallery-grid{grid-template-columns:1fr}
  .gallery-wide{grid-column:auto;min-height:280px}
  .gallery-item{min-height:250px}
  .gallery-plan{min-height:320px}

  .builder-photo{min-height:300px;max-height:390px}
  .builder-content{padding:22px 18px}
  .builder-brand{
    width:100%;
    gap:12px;
    margin-bottom:18px;
  }
  .builder-brand img{width:110px;height:60px}
  .builder-brand strong{font-size:.9rem}
  .builder-content h3{font-size:2rem}
  .builder-content>p{font-size:.92rem;line-height:1.9}
  .builder-content .button{width:100%}

  .faq-list details{padding:0 16px}
  .faq-list summary{font-size:.91rem}

  .final-cta{padding-bottom:64px}
  .final-card{align-items:stretch;flex-direction:column;padding:22px}
  .final-card .button{width:100%}
  .footer-layout{align-items:flex-start;flex-direction:column}
  .footer-contact{text-align:right}
  .footer-bottom{flex-direction:column}
  .mobile-lead.is-visible{display:flex}
}


/* V21 hero title refinement */
.hero-identity{
  grid-template-columns:46px minmax(0,1fr) 46px;
  gap:12px;
  padding:8px 12px;
}
.identity-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:5px;
  text-align:center;
}
.identity-copy small{
  margin:0;
  color:rgba(243,220,153,.94);
  font-size:.74rem;
  font-weight:820;
  line-height:1.15;
}
.identity-copy strong{
  display:block;
  color:#fff;
  font-size:1.2rem;
  font-weight:910;
  line-height:1.28;
  letter-spacing:-.3px;
}
.identity-logo img,.ribbon-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}
.hero-title-wrap{
  width:min(100%,720px);
  margin:0 0 24px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 104px;
  align-items:end;
  gap:16px;
}
.hero h1{
  margin:0;
  font-size:clamp(3.45rem,7.1vw,6.45rem);
  line-height:1;
  letter-spacing:-2px;
  font-weight:950;
}
.hero-title-line{display:block;text-wrap:balance}
.hero-title-main{color:#fff;margin-bottom:.15em}
.hero-title-accent{color:var(--gold-light);padding-top:.03em}
.hero-mini-video{
  margin:0;
  width:104px;
  padding:8px;
  display:grid;
  gap:7px;
  justify-items:center;
  border-radius:24px;
  background:rgba(13,36,63,.62);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 36px rgba(2,10,24,.22);
  backdrop-filter:blur(12px);
}
.hero-mini-video video{
  width:100%;
  aspect-ratio:1/1;
  display:block;
  object-fit:cover;
  border-radius:18px;
  background:#102c4b;
}
.hero-mini-video figcaption{
  color:rgba(255,255,255,.92);
  font-size:.68rem;
  font-weight:860;
  line-height:1;
}
.hero-kicker{margin:0 0 14px}
.hero-description{max-width:680px}

@media (max-width:980px){
  .hero-title-wrap{
    width:100%;
    grid-template-columns:minmax(0,1fr) 92px;
    gap:12px;
    margin:0 auto 22px;
  }
  .hero-mini-video{width:92px;padding:6px;border-radius:20px}
  .hero-mini-video video{border-radius:15px}
}
@media (max-width:760px){
  .hero-identity{
    grid-template-columns:40px minmax(0,1fr) 40px;
    gap:10px;
    padding:6px 9px;
  }
  .identity-copy{gap:4px}
  .identity-copy small{font-size:.66rem;line-height:1.12}
  .identity-copy strong{font-size:1.05rem;line-height:1.32}
  .hero-title-wrap{
    grid-template-columns:minmax(0,1fr) 78px;
    gap:10px;
    align-items:center;
    margin:0 auto 18px;
  }
  .hero h1{
    font-size:clamp(3rem,16vw,4.7rem);
    line-height:1.02;
    letter-spacing:-1.4px;
  }
  .hero-title-main{margin-bottom:.19em}
  .hero-mini-video{
    width:78px;
    padding:5px;
    border-radius:18px;
    gap:5px;
  }
  .hero-mini-video video{border-radius:14px}
  .hero-mini-video figcaption{font-size:.58rem}
}


/* V22_SINGLELINE_TITLE_MARKER: 20260723estedad22videofit */
/* V22_VIDEO_FIT_MARKER: 20260723estedad22videofit */
/* Hero-only refinement: single-line title, large 16:9 video, contained identity logo */
.hero-content{
  min-width:0;
  max-width:720px;
}
.hero-identity{
  width:min(100%,620px);
  grid-template-columns:48px minmax(0,1fr) 48px;
  grid-template-areas:"logo copy person";
  align-items:center;
  gap:12px;
  padding:8px 12px;
  margin-bottom:18px;
}
.identity-person,.identity-logo{
  width:46px;
  height:46px;
  flex:0 0 auto;
}
.identity-logo{
  padding:5px;
  background:rgba(255,255,255,.98);
}
.identity-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transform:none;
}
.identity-copy{
  min-width:0;
  overflow:hidden;
  text-align:center;
}
.identity-copy strong{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hero-kicker{margin:0 0 12px}
.hero-title-wrap{
  width:100%;
  margin:0 0 18px;
  display:block;
  overflow:visible;
}
.hero h1,
#hero-title{
  width:100%;
  margin:0;
  color:#fff;
  font-size:clamp(2.45rem,5.3vw,4.8rem);
  line-height:1.12;
  font-weight:950;
  letter-spacing:clamp(-2.1px,-.045em,-.7px);
  white-space:nowrap;
  text-wrap:nowrap;
  text-align:right;
}
.hero-video{
  width:clamp(390px,31vw,430px);
  max-width:100%;
  aspect-ratio:56 / 45;
  margin:0 0 20px;
  padding:0;
  border-radius:26px;
  overflow:hidden;
  background:#102c4b;
  border:1px solid rgba(217,184,94,.58);
  box-shadow:0 20px 52px rgba(2,10,24,.28);
  backdrop-filter:blur(12px);
}
.hero-video video{
  width:100%;
  height:100%;
  aspect-ratio:auto;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:inherit;
  background:transparent;
}
.hero-video figcaption,
.hero-mini-video figcaption{display:none!important}
.hero-actions{margin-top:18px}
.hero-actions .button-gold{min-width:250px}

@media (max-width:980px){
  .hero h1,#hero-title{
    font-size:clamp(2.2rem,7.4vw,4rem);
    text-align:center;
  }
  .hero-video{
    width:min(100%,430px);
    margin:0 auto 20px;
  }
  .offer-card{margin-inline:auto}
  .hero-actions{justify-content:center}
}
@media (max-width:760px){
  .hero-grid{overflow:hidden}
  .hero-content{width:100%;max-width:100%;min-width:0}
  .hero-identity{
    width:100%;
    grid-template-columns:40px minmax(0,1fr) 40px;
    gap:8px;
    padding:6px 8px;
    margin-bottom:14px;
  }
  .identity-person,.identity-logo{width:40px;height:40px}
  .identity-logo{padding:4px}
  .identity-copy small{font-size:.62rem}
  .identity-copy strong{font-size:clamp(.76rem,3.55vw,.98rem);letter-spacing:-.2px}
  .hero-kicker{font-size:.82rem;margin-bottom:10px}
  .hero-title-wrap{margin-bottom:14px}
  .hero h1,#hero-title{
    font-size:clamp(1.95rem,8.4vw,2.72rem);
    line-height:1.16;
    letter-spacing:clamp(-1.25px,-.04em,-.45px);
    text-align:center;
  }
  .hero-video{
    width:100%;
    max-width:100%;
    margin:0 auto 16px;
    padding:0;
    border-radius:21px;
  }
  .hero-video video{border-radius:inherit}
  .offer-card{width:100%;padding:17px 16px;border-radius:21px}
  .offer-features{justify-content:center}
  .hero-actions{width:100%;margin-top:16px}
  .hero-actions .button-gold{width:100%;min-width:0}
}
@media (max-width:380px){
  .hero-identity{
    grid-template-columns:36px minmax(0,1fr) 36px;
    gap:6px;
    padding:5px 6px;
  }
  .identity-person,.identity-logo{width:36px;height:36px}
  .identity-copy small{font-size:.56rem}
  .identity-copy strong{font-size:.72rem}
  .hero h1,#hero-title{
    font-size:clamp(1.75rem,8vw,2.05rem);
    letter-spacing:-.75px;
  }
}

/* V23_ADMIN_SETTINGS_MARKER: 20260723admin23 */
