
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root{
  --background: #000000;
  --foreground: #ffffff;
  --foreground-soft: rgba(255,255,255,.76);
  --foreground-muted: rgba(255,255,255,.58);
  --foreground-faint: rgba(255,255,255,.38);
  --card: rgba(255,255,255,.045);
  --card-strong: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.13);
  --border-strong: rgba(255,255,255,.20);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1280px;
  --header-h: 84px;
  --success: #25d366;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:'Barlow',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
button{cursor:pointer}

body.menu-open{overflow:hidden}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.05), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.04), transparent 32%);
  opacity:.55;
  z-index:-1;
}

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

.liquid-glass,
.liquid-glass-strong,
.glass-card,
.glass-panel,
.glass-input,
.pricing-card,
.feature-card,
.kpi-card,
.legal-card,
.portfolio-card,
.contact-card,
.calc-panel,
.calc-result-card{
  background: rgba(255,255,255,0.018);
  background-blend-mode: luminosity;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.10), var(--shadow);
  position:relative;
  overflow:hidden;
}
.liquid-glass::before,
.liquid-glass-strong::before,
.glass-card::before,
.glass-panel::before,
.glass-input::before,
.pricing-card::before,
.feature-card::before,
.kpi-card::before,
.legal-card::before,
.portfolio-card::before,
.contact-card::before,
.calc-panel::before,
.calc-result-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1.2px;
  background:linear-gradient(180deg,
    rgba(255,255,255,.45) 0%,
    rgba(255,255,255,.18) 16%,
    rgba(255,255,255,.04) 34%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,.04) 68%,
    rgba(255,255,255,.18) 84%,
    rgba(255,255,255,.40) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.liquid-glass{border-radius:var(--radius-pill)}
.liquid-glass-strong{
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius:var(--radius-pill);
  box-shadow: 0 20px 70px rgba(0,0,0,.45), inset 0 1px 1px rgba(255,255,255,.14);
}
.glass-panel,.calc-panel{border-radius:30px}
.glass-card,.portfolio-card,.feature-card,.pricing-card,.contact-card,.legal-card,.kpi-card,.calc-result-card{border-radius:26px}
.glass-input{
  border-radius:18px;
  min-height:58px;
  display:flex;
  align-items:center;
}

.site-header{
  position:fixed;
  inset:20px 0 auto;
  z-index:50;
  pointer-events:none;
}
.site-header .container{pointer-events:auto}
.header-shell{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  justify-self:start;
}
.brand img{
  width:56px;height:56px;object-fit:contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.brand-title{
  font-size:1.15rem;
  font-weight:700;
  line-height:1.05;
}
.brand-tag{
  font-size:.98rem;
  color:var(--foreground-soft);
  line-height:1.15;
  white-space:nowrap;
}

.nav-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 16px;
  min-height:60px;
}
.nav-pill a{
  color:var(--foreground-soft);
  font-size:.98rem;
  font-weight:500;
  transition:.25s ease;
}
.nav-pill a:hover,.nav-pill a.active{color:var(--foreground)}
.nav-pill .dot{
  color:rgba(255,255,255,.28);
  font-size:.95rem;
}
.header-cta{
  justify-self:end;
  display:flex;
  gap:12px;
  align-items:center;
}
.btn{
  border:none;
  border-radius:999px;
  padding:15px 24px;
  font-weight:600;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn:hover{transform:translateY(-1px)}
.btn-white{
  background:#fff;
  color:#000;
  box-shadow:0 10px 26px rgba(255,255,255,.12);
}
.btn-white:hover{box-shadow:0 16px 34px rgba(255,255,255,.18)}
.btn-glass{
  color:#fff;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.11);
}
.btn-outline{
  color:#fff;
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
}
.btn-block{width:100%}
.mobile-toggle{
  display:none;
  width:54px;height:54px;border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  align-items:center;justify-content:center;
  flex-direction:column;gap:5px;
}
.mobile-toggle span{
  width:20px;height:2px;background:#fff;border-radius:999px;display:block;
}
.mobile-menu{
  display:none;
  margin-top:12px;
  padding:14px;
  border-radius:24px;
  width:100%;
}
.mobile-menu.open{display:grid;gap:10px}
.mobile-menu a{padding:12px 14px;border-radius:16px;color:var(--foreground-soft)}
.mobile-menu a.active,.mobile-menu a:hover{background:rgba(255,255,255,.05);color:#fff}
.mobile-menu .btn{width:100%;display:flex;justify-content:center;align-items:center;text-align:center}
.mobile-menu .btn-white{background:#fff;color:#000 !important;box-shadow:0 10px 26px rgba(255,255,255,.12)}
.mobile-menu .btn-glass{color:#fff !important}

.page-top-space{height:0;display:none}
.section{
  position:relative;
  padding:120px 0;
}
.section-tight{padding:90px 0}
.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 56px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 16px;
  border-radius:999px;
  color:#fff;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:600;
  margin-bottom:20px;
}
.badge-small{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  color:#fff;
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:600;
}
.badge .pill-tag{
  background:#fff;
  color:#000;
  padding:7px 12px;
  border-radius:999px;
  letter-spacing:0;
  text-transform:none;
  font-size:.88rem;
}
.display-title,
h1,h2{
  font-family:'Instrument Serif', serif;
  font-style:italic;
  letter-spacing:-.04em;
  line-height:.95;
  margin:0;
}
.display-title{font-size:clamp(3.2rem, 8vw, 6.6rem)}
.display-title-lg{font-size:clamp(3.6rem, 9vw, 7.4rem)}
.section-title{
  font-size:clamp(2.55rem, 5vw, 4.5rem);
  margin-bottom:18px;
}
.subtext,
.section-head p,
.copy,
p{
  color:var(--foreground-soft);
  line-height:1.72;
  font-size:1.08rem;
  margin:0;
}
.copy-sm{font-size:.98rem}
.muted{color:var(--foreground-muted)}
.faint{color:var(--foreground-faint)}

.hero{
  position:relative;
  min-height:100svh;
  padding-top:150px;
  overflow:hidden;
  display:flex;
  align-items:stretch;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:1;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.44) 45%, rgba(0,0,0,.62));
}
.hero-bottom-fade{
  position:absolute;
  left:0;right:0;bottom:0;height:320px;
  background:linear-gradient(to bottom, rgba(0,0,0,0), #000 88%);
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}
.hero-copy{
  max-width:1020px;
  margin:0 auto;
}
.hero-copy .subtext{
  max-width:840px;
  margin:22px auto 0;
  font-size:1.15rem;
}
.hero-actions{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}
.partner-strip{
  margin-top:auto;
  padding:46px 0 18px;
  width:100%;
}
.partner-strip-inner{
  width:min(100%, 1120px);
  margin:0 auto;
  text-align:center;
}
.partner-marquee{
  position:relative;
  margin-top:22px;
  overflow:hidden;
  width:100%;
  mask-image:linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.partner-track{
  display:flex;
  align-items:center;
  gap:36px;
  width:max-content;
  animation:partnerScroll 32s linear infinite;
}
.partner-track span{
  flex:0 0 auto;
  font-family:'Instrument Serif', serif;
  font-style:italic;
  font-size:clamp(1.35rem,2.2vw,2.15rem);
  color:#fff;
  opacity:.94;
  white-space:nowrap;
}
@keyframes partnerScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.hero-grid-mini{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:34px;
}
.hero-mini-card{
  padding:22px 22px 24px;
  border-radius:24px;
  text-align:left;
}
.hero-mini-card h3{
  margin:16px 0 10px;
  font-size:1.2rem;
  font-weight:600;
}
.hero-mini-card .icon-chip{
  width:52px;height:52px;border-radius:999px;
  display:grid;place-items:center;
  color:#fff;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  font-size:1.2rem;
}

.hero-mini-card,
.step-card,
.feature-card,
.pricing-card,
.portfolio-card,
.contact-card,
.legal-card,
.kpi-card,
.calc-result-card{
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.10);
}

.video-section{
  position:relative;
  min-height:760px;
  overflow:hidden;
}
.video-bg,.video-bg video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.video-bg video{opacity:.88}
.video-fade-top,.video-fade-bottom{
  position:absolute;left:0;right:0;height:220px;z-index:1;pointer-events:none;
}
.video-fade-top{top:0;background:linear-gradient(to bottom, #000, rgba(0,0,0,0))}
.video-fade-bottom{bottom:0;background:linear-gradient(to top, #000, rgba(0,0,0,0))}
.video-dark{position:absolute;inset:0;background:rgba(0,0,0,.42);z-index:1}
.video-content{
  position:relative;
  z-index:2;
  min-height:760px;
  display:flex;
  align-items:center;
}
.center-stack{
  width:min(900px, 100%);
  margin:0 auto;
  text-align:center;
}
.center-stack .section-title{margin-top:10px}
.center-stack .subtext{max-width:760px;margin:0 auto 28px}
.steps{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.step-card{
  padding:24px;
  border-radius:24px;
  text-align:left;
}
.step-card .step-no{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  font-size:.88rem;font-weight:700;
  margin-bottom:18px;
}
.step-card h3{margin:0 0 10px;font-size:1.18rem}

.chess-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  margin-top:28px;
}
.chess-row.reverse .visual{order:-1}
.text-block{
  padding:18px 4px;
}
.text-block h3{
  font-size:2.2rem;
  line-height:1.05;
  letter-spacing:-.03em;
  margin:0 0 14px;
  font-family:'Instrument Serif', serif;
  font-style:italic;
}
.text-block p{margin-bottom:24px}
.visual{
  border-radius:28px;
  overflow:hidden;
  min-height:430px;
}
.visual img,.visual video{
  width:100%;height:100%;object-fit:cover;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.feature-card,.kpi-card,.pricing-card,.portfolio-card,.contact-card,.legal-card,.calc-result-card{
  padding:26px;
}
.feature-icon{
  width:50px;height:50px;border-radius:999px;
  display:grid;place-items:center;
  margin-bottom:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.11);
  font-size:1.15rem;
}
.feature-card h3,.pricing-card h3,.portfolio-card h3,.contact-card h3,.legal-card h3{
  margin:0 0 12px;
  font-size:1.28rem;
  letter-spacing:-.02em;
}
.kpi-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.kpi-card{text-align:center;padding:34px 22px}
.kpi-card .num{
  font-family:'Instrument Serif', serif;
  font-style:italic;
  font-size:clamp(2.5rem,4vw,4.4rem);
  line-height:1;
  margin-bottom:8px;
}
.kpi-card .label{font-size:.98rem;color:var(--foreground-soft)}
.logo-marquee{
  display:flex;flex-wrap:wrap;justify-content:center;gap:18px;margin-top:24px;
}
.logo-marquee span{
  padding:14px 22px;border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.pricing-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.pricing-card.featured{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-8px);
}
.pricing-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.price{
  font-family:'Instrument Serif', serif;
  font-style:italic;
  font-size:3rem;
  line-height:1;
  margin:10px 0 14px;
}
.price-note{
  color:var(--foreground-muted);
  font-size:.96rem;
}
.checklist{
  display:grid;
  gap:12px;
  margin:22px 0 28px;
}
.checklist li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--foreground-soft);
}
.checklist li::before{
  content:"•";
  color:#fff;
  font-size:1.1rem;
  line-height:1.2;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}
.portfolio-preview-grid,
.portfolio-romans-grid{
  width:min(100%, 1080px);
  margin:0 auto;
}
.portfolio-centered-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.portfolio-link-wrap{
  display:flex;
  flex-direction:column;
  height:100%;
}
.portfolio-romans-grid .portfolio-card,
.portfolio-preview-grid .portfolio-card{
  text-align:center;
}
.portfolio-romans-grid .meta,
.portfolio-preview-grid .meta{
  justify-content:center;
}
.portfolio-card img{
  border-radius:18px;
  margin-bottom:18px;
}

.portfolio-card .card-media,
.visual .card-media{
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
  background:rgba(255,255,255,.02);
}
.portfolio-card .card-media{
  aspect-ratio:16/10;
  display:flex;
  align-items:center;
  justify-content:center;
}
.portfolio-card .card-media video,
.portfolio-card .card-media img,
.visual .card-media video,
.visual .card-media img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  object-position:center center;
}
.visual .card-media{
  height:100%;
  min-height:430px;
  margin-bottom:0;
}

.portfolio-card .meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.meta span{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--foreground-muted);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.info-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.contact-info-card{
  padding:34px 34px 42px;
}
.contact-info-card > p{
  max-width:680px;
  margin-top:12px;
}
.contact-list{
  display:grid;
  gap:18px;
  margin:28px 0 0;
}
.contact-line{
  display:grid;
  grid-template-columns:minmax(150px, 170px) 1fr;
  align-items:flex-start;
  gap:16px;
}
.contact-line strong{
  min-width:0;
  color:#fff;
}
.form-grid{
  display:grid; gap:14px;
}
.input,.textarea,select{
  width:100%;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  border-radius:18px;
  padding:18px 18px;
  outline:none;
}
.input::placeholder,.textarea::placeholder{color:rgba(255,255,255,.44)}
.input:focus,.textarea:focus,select:focus{border-color:rgba(255,255,255,.26)}
.textarea{min-height:180px;resize:vertical}

.mini-cta{
  display:flex;flex-wrap:wrap;gap:14px;margin-top:26px;
}
.form-status{
  font-size:.96rem;
  color:#fff;
  margin-top:12px;
}

.legal-card h3{margin-top:12px}
.legal-card section + section{margin-top:26px}

.footer{
  padding:24px 0 40px;
}
.footer-inner{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:26px;
  display:flex;
  justify-content:space-between;
  gap:16px 24px;
  align-items:center;
}
.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.footer p,.footer a{font-size:.92rem;color:var(--foreground-muted)}

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:65;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(7,7,7,.78);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:0 22px 44px rgba(0,0,0,.45);
}
.whatsapp-float .bubble{
  width:46px;height:46px;border-radius:999px;background:var(--success);
  display:grid;place-items:center;color:#fff;flex:0 0 auto;
  box-shadow:0 10px 24px rgba(37,211,102,.3);
}
.whatsapp-float .text{
  color:#fff;
  font-weight:600;
  padding-right:8px;
}
.whatsapp-float svg{width:22px;height:22px;fill:currentColor}

.whatsapp-popup{
  position:fixed;
  right:24px;
  bottom:92px;
  z-index:64;
  width:min(360px, calc(100vw - 32px));
  padding:20px;
  border-radius:22px;
  background:rgba(12,12,12,.84);
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 24px 50px rgba(0,0,0,.46);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
  transition:.3s ease;
}
.whatsapp-popup.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.whatsapp-popup h4{
  margin:0 0 8px;font-size:1.18rem;
}
.whatsapp-popup p{font-size:.98rem;margin-bottom:16px}
.whatsapp-popup-close{
  position:absolute;top:10px;right:10px;
  width:34px;height:34px;border-radius:999px;border:none;
  background:rgba(255,255,255,.05);color:#fff;
}
.cookie-note{
  position:fixed;left:50%;bottom:24px;transform:translateX(-50%);
  z-index:62;padding:12px 18px;border-radius:999px;
  background:rgba(12,12,12,.84);border:1px solid rgba(255,255,255,.11);
  color:var(--foreground-soft);font-size:.92rem;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity:0;pointer-events:none;transition:.3s ease;
}
.cookie-note.show{opacity:1}

.page-hero{
  position:relative;
  min-height:100svh;
  padding-top:150px;
  padding-bottom:84px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.page-hero .page-backdrop{
  position:absolute;
  inset:0;
  opacity:.72;
}
.page-hero .page-backdrop img,
.page-hero .page-backdrop video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.page-hero .page-dark{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.16) 0%, rgba(0,0,0,.40) 36%, rgba(0,0,0,.72) 100%);
}
.page-hero .content{
  position:relative;
  z-index:1;
  max-width:940px;
  margin:0 auto;
  text-align:center;
}
.page-hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:220px;
  background:linear-gradient(to top, #000 10%, rgba(0,0,0,0));
  pointer-events:none;
}
.page-hero .content p{max-width:760px;margin:18px auto 0}
.page-hero .actions{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:30px}

.list-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.price-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
}
.price-row strong{color:#fff}
.dual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.calculator-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  overflow:hidden;
}
.calc-panel{
  padding:34px;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  background:#0d0d0d;
}
.calc-panel .segment + .segment{
  border-top:1px solid #1e1e1e;
  margin-top:24px;
  padding-top:24px;
}
.calc-panel h3{
  margin:0 0 16px;
  font-size:1.08rem;
  letter-spacing:-.01em;
}
.calc-options{
  display:grid;
  gap:12px;
}
.choice-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.choice-main{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
}
.radio-ui,.check-ui{
  width:22px;height:22px;border-radius:999px;border:2px solid rgba(255,255,255,.28);
  display:grid;place-items:center;flex:0 0 auto;transition:.2s ease;
}
.radio-ui .dot{
  width:8px;height:8px;border-radius:999px;background:#fff;opacity:0;transition:.2s ease;
}
.choice-row.active .radio-ui{border-color:#fff}
.choice-row.active .radio-ui .dot{opacity:1}
.check-ui{border-radius:8px}
.check-ui svg{width:13px;height:13px;opacity:0;transition:.2s ease}
.choice-row.checked .check-ui{
  background:#fff;border-color:#fff;color:#000;
}
.choice-row.checked .check-ui svg{opacity:1}
.price-tag{
  color:#fff;
  font-weight:600;
  white-space:nowrap;
}
.range-wrap{padding:10px 0 2px}
.range-top{
  display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:14px;
}
.range-val{color:#fff;font-weight:700}
.range{
  width:100%;
  appearance:none;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  outline:none;
}
.range::-webkit-slider-thumb{
  appearance:none;
  width:20px;height:20px;border-radius:999px;background:#fff;border:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.12);
}
.range::-moz-range-thumb{
  width:20px;height:20px;border-radius:999px;background:#fff;border:none;
}
.range-labels{
  display:flex;justify-content:space-between;color:var(--foreground-muted);font-size:.92rem;margin-top:12px;
}
.calc-results{
  padding:34px;
  min-height:718px;
  border:1px solid rgba(255,255,255,.1);
  border-left:none;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
  display:flex;
  flex-direction:column;
}
.calc-results > p{max-width:520px}
.result-stack{
  display:grid;
  gap:16px;
  margin-top:28px;
}
.calc-result-card .big{
  font-size:2.4rem;
  line-height:1;
  font-weight:700;
  letter-spacing:-.04em;
}
.calc-result-card.highlight{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.22);
}
.note-box{
  margin-top:auto;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:var(--foreground-soft);
  font-size:.95rem;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  filter:blur(8px);
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

.blur-text span{
  display:inline-block;
  opacity:0;
  transform:translateY(38px);
  filter:blur(10px);
}
.blur-text.ready span{
  animation:blurRise .55s ease forwards;
}
@keyframes blurRise{
  0%{opacity:0;transform:translateY(42px);filter:blur(10px)}
  55%{opacity:.7;transform:translateY(-3px);filter:blur(4px)}
  100%{opacity:1;transform:translateY(0);filter:blur(0)}
}

.mobile-only{display:none}

@media (max-width: 1180px){
  .header-shell{grid-template-columns:auto 1fr auto}
  .nav-pill{gap:10px;padding:10px 14px}
  .brand-tag{display:none}
  .hero-grid-mini,.grid-4,.pricing-grid,.list-grid,.kpi-grid,.steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .portfolio-grid,.dual-grid,.info-grid,.calculator-wrap,.chess-row{grid-template-columns:1fr}
  .chess-row.reverse .visual{order:0}
  .calc-panel{border-radius:30px 30px 0 0}
  .calc-results{border-left:1px solid rgba(255,255,255,.1);border-top:none;border-radius:0 0 30px 30px;min-height:unset}
}
@media (max-width: 920px){
  .site-header{inset:12px 0 auto}
  .page-top-space{display:none;height:0}
  .header-shell{grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:12px}
  .nav-pill,.header-cta .btn-white{display:none !important}
  .header-cta{justify-self:end}
  .mobile-toggle{display:flex;width:70px;height:70px;background:rgba(9,9,9,.55);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}
  .mobile-only{display:block}
  .brand{justify-self:start;align-items:center;gap:12px}
  .brand-copy{align-items:flex-start;text-align:left;max-width:260px}
  .brand img{width:58px;height:58px}
  .brand-title{font-size:1.1rem}
  .brand-tag{display:block;font-size:.92rem;white-space:normal;line-height:1.2}
  .mobile-menu{margin-top:12px;padding:16px;border-radius:28px;text-align:center}
  .mobile-menu.open{display:grid;gap:12px}
  .mobile-menu a{font-size:1.14rem;padding:16px 18px;text-align:center}
  .hero,.page-hero{padding-top:170px}
  .hero-content{min-height:100svh;padding-bottom:36px}
  .hero-copy{max-width:100%}
  .display-title,.display-title-lg{line-height:.92;letter-spacing:-.03em}
  .hero-grid-mini,.grid-4,.pricing-grid,.list-grid,.kpi-grid,.portfolio-grid,.steps{grid-template-columns:1fr}
  .partner-track{gap:26px;animation-duration:28s}
  .section{padding:92px 0}
  .section-head{margin-bottom:40px}
  .page-hero{min-height:100svh;padding-bottom:72px}
  .chess-row{gap:20px}
  .text-block{text-align:center;padding:0 4px}
  .text-block h3{font-size:1.95rem}
  .visual{min-height:unset;display:block}
  .visual .card-media{height:auto;min-height:unset;aspect-ratio:4/5}
  .visual .card-media video,.visual .card-media img{min-height:unset;height:100%}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width: 640px){
  .contact-line{grid-template-columns:1fr;gap:6px}
  .contact-info-card{padding:28px 24px 32px}
  .container{width:min(calc(100% - 22px), var(--container))}
  .header-shell{gap:10px}
  .brand{gap:12px;align-items:center}
  .brand-copy{max-width:220px}
  .brand img{width:54px;height:54px}
  .brand-title{font-size:1.02rem}
  .brand-tag{font-size:.86rem;white-space:normal;line-height:1.22}
  .mobile-toggle{width:66px;height:66px}
  .mobile-menu a{font-size:1rem}
  .mobile-menu .btn-white{min-height:58px;font-size:1rem}
  .hero,.page-hero{padding-top:184px}
  .hero-content{min-height:100svh}
  .display-title-lg{font-size:clamp(2.35rem, 12vw, 3.7rem)}
  .display-title{font-size:clamp(2.2rem, 11vw, 3.4rem)}
  .hero-copy .subtext{max-width:100%;font-size:1rem;margin-top:18px}
  .hero-actions,.page-hero .actions,.mini-cta{flex-direction:column}
  .btn{width:100%}
  .hero-mini-card{text-align:left}
  .hero-copy .subtext,.subtext,.section-head p,p{font-size:1rem}
  .pricing-card.featured{transform:none}
  .calc-panel,.calc-results,.pricing-card,.feature-card,.glass-card,.portfolio-card,.contact-card,.legal-card,.kpi-card,.calc-result-card{padding:22px}
  .portfolio-card .card-media{aspect-ratio:1/1}
  .visual .card-media{aspect-ratio:1/1}
  .whatsapp-float{right:14px;bottom:18px;padding:10px 12px}
  .whatsapp-float .text{display:none}
  .whatsapp-popup{right:14px;bottom:84px}
}


.centered-card{
  text-align:center;
}
.centered-card p,.centered-card .copy-sm{max-width:42ch;margin-inline:auto}
.center-actions{justify-content:center}
.trust-strip-section{padding-top:34px;padding-bottom:28px}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.trust-strip span{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  font-size:.92rem;
  letter-spacing:.01em;
}
.steps-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.package-guide{
  padding:32px;
  display:grid;
  gap:22px;
}
.guide-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.guide-group{
  text-align:center;
}
.guide-group h3{
  margin:0 0 14px;
  font-size:1.02rem;
}
.guide-options{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.guide-chip{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--foreground-soft);
  padding:12px 14px;
  border-radius:999px;
  min-width:0;
  font-weight:500;
}
.guide-chip.active{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.guide-result{
  border-radius:26px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.guide-result h3{margin:12px 0 10px;font-size:1.7rem}
.guide-result p{max-width:48ch}
.guide-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.compare-table-wrap{
  border-radius:28px;
  overflow:auto;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.02);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.compare-table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
}
.compare-table th,.compare-table td{
  padding:18px 20px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--foreground-soft);
}
.compare-table th:first-child,.compare-table td:first-child{
  text-align:left;
  color:#fff;
  width:28%;
}
.compare-table thead th{
  color:#fff;
  font-weight:700;
  background:rgba(255,255,255,.03);
}
.compare-table tbody tr:last-child td{border-bottom:none}
.compare-table a{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.result-grid,.extras-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.inline-price{
  display:inline-flex;
  justify-content:center;
  margin-top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  font-size:.92rem;
}
.compact-list .price-row{padding:14px 16px}
.faq-list{
  display:grid;
  gap:16px;
  width:min(100%, 920px);
  margin:0 auto;
}
.faq-item{
  border-radius:24px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.09);
  padding:0 22px;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-size:1.08rem;
  font-weight:600;
  color:#fff;
  position:relative;
  padding-right:32px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  position:absolute;
  right:0;
  top:18px;
  color:var(--foreground-soft);
  font-size:1.35rem;
}
.faq-item[open] summary::after{content:'−'}
.faq-item p{
  padding:0 0 20px;
  margin:0;
}
.mobile-menu .menu-cta,
.mobile-menu .btn-white{
  background:#fff !important;
  color:#000 !important;
  font-weight:700;
  min-height:60px;
  justify-content:center;
}
.visual{display:flex;align-items:stretch;padding:0}
.visual .card-media{position:relative;flex:1 1 auto;height:100%;min-height:430px}
.visual .card-media video,
.visual .card-media img,
.portfolio-card .card-media video,
.portfolio-card .card-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  min-height:unset;
}
.portfolio-card .card-media,
.visual .card-media{position:relative}

@media (max-width: 1180px){
  .steps-4,.result-grid,.extras-grid,.guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 920px){
  .site-header{inset:max(10px, env(safe-area-inset-top)) 0 auto}
  .mobile-menu{padding:18px;border-radius:30px}
  .mobile-menu a{display:flex;align-items:center;justify-content:center;min-height:58px}
  .mobile-menu .btn-white{margin-top:4px}
  .hero,.page-hero{padding-top:200px}
  .hero-copy{padding-top:12px}
  .display-title,.display-title-lg{max-width:11ch;margin-inline:auto}
  .hero-copy .subtext{max-width:34ch}
  .text-block{display:flex;flex-direction:column;align-items:center;text-align:center}
  .text-block h3{max-width:12ch;margin:0 auto 14px;text-wrap:balance}
  .text-block p{max-width:30ch;margin:0 auto 22px;text-align:center;text-wrap:balance;line-height:1.7}
  .package-guide{padding:26px}
  .guide-result{flex-direction:column;text-align:center}
  .guide-result p{max-width:36ch;margin-inline:auto}
  .compare-table-wrap{margin-inline:-2px}
  .split-grid{gap:18px}
  .result-grid,.extras-grid,.guide-grid,.steps-4{grid-template-columns:1fr}
  .trust-strip{gap:10px}
  .visual{min-height:unset}
  .visual .card-media{min-height:unset;aspect-ratio:1 / 1.02}
}
@media (max-width: 640px){
  .site-header .container{width:min(calc(100% - 18px), var(--container))}
  .header-shell{align-items:start}
  .brand{align-items:center;max-width:calc(100% - 82px)}
  .brand-copy{max-width:200px}
  .brand-title{font-size:1.05rem}
  .brand-tag{font-size:.82rem}
  .mobile-toggle{width:64px;height:64px;flex:0 0 64px}
  .hero,.page-hero{padding-top:214px}
  .hero-copy{padding-top:18px}
  .display-title-lg{font-size:clamp(2.15rem, 11.4vw, 3.15rem);line-height:.94}
  .display-title{font-size:clamp(2rem, 10.5vw, 3rem);line-height:.95}
  .section-title{font-size:clamp(2rem, 9vw, 2.8rem)}
  .hero-actions .btn,.page-hero .actions .btn,.guide-actions .btn,.mini-cta .btn{width:100%}
  .hero-mini-card,.feature-card,.portfolio-card,.pricing-card,.contact-card,.glass-card,.calc-result-card,.calc-panel,.calc-results{padding:20px}
  .trust-strip span{width:100%;text-align:center}
  .guide-chip{flex:1 1 calc(50% - 10px);justify-content:center}
  .guide-group h3{font-size:1rem}
  .compare-table th,.compare-table td{padding:14px 14px;font-size:.92rem}
  .faq-item{padding:0 18px}
  .faq-item summary{font-size:1rem}
  .visual .card-media,
  .portfolio-card .card-media{aspect-ratio:1 / 1.02}
  .footer-inner{align-items:center;text-align:center}
  .footer-links{justify-content:center}
}

.hero-mini-card .icon-chip{display:grid;place-items:center}
