:root{
  --green:#96bf48;
  --green-dark:#6f9730;
  --bg:#f3f4f6;
  --white:#fff;
  --text:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.10);
  --dark:#07101f;
  --dark2:#0d1829;
  --soft:#eef7df;
  --shadow:0 18px 45px rgba(15,23,42,.10);
  --shadow-soft:0 10px 28px rgba(15,23,42,.06);
  --radius:24px;
  --header-h:84px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
}

button,
a{
  -webkit-tap-highlight-color:transparent;
}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:68px 0;
}

.section-tight{
  padding:46px 0;
}

.surface{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.muted-section{
  background:#eef0f3;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 13px;
  border-radius:999px;
  background:var(--soft);
  color:var(--green-dark);
  font-size:13px;
  font-weight:1000;
  letter-spacing:.055em;
  text-transform:uppercase;
  line-height:1;
}

.section-head{
  max-width:900px;
  margin:0 auto 30px;
  text-align:center;
}

.section-head.left{
  margin-left:0;
  text-align:left;
}

.section-head h2{
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  margin:12px 0 10px;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.section-head p{
  margin:0 auto;
  color:var(--muted);
  font-size:17px;
  font-weight:750;
  max-width:820px;
  text-wrap:balance;
}

.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 20px;
  border-radius:13px;
  background:var(--green);
  color:#fff;
  text-decoration:none;
  font-weight:1000;
  text-align:center;
  border:2px solid transparent;
  box-shadow:0 10px 22px rgba(150,191,72,.22);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
  line-height:1.15;
}

.btn:before{
  content:"";
  position:absolute;
  top:-70%;
  left:-70%;
  width:35%;
  height:240%;
  transform:rotate(20deg);
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.42),
    transparent
  );
  transition:left .55s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(150,191,72,.28);
  background:#8ab33f;
}

.btn:hover:before{
  left:145%;
}

.btn.secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--green);
  box-shadow:none;
}

.btn.secondary:hover{
  background:var(--soft);
}

.btn.dark{
  background:var(--dark);
  border-color:var(--dark);
  box-shadow:none;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(243,244,246,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:10px;
  padding-bottom:10px;
}

.logo-link{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex:0 0 auto;
}

.logo{
  width:212px;
  height:auto;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:7px;
  justify-content:flex-end;
  flex-wrap:nowrap;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:43px;
  padding:10px 11px;
  border-radius:13px;
  text-decoration:none;
  font-size:13px;
  font-weight:1000;
  color:var(--text);
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  white-space:nowrap;
  box-shadow:0 7px 20px rgba(15,23,42,.04);
}

.nav-link:hover{
  background:var(--soft);
  border-color:rgba(150,191,72,.42);
}

.nav-link.active{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}

.nav-dropdown{
  position:relative;
}

.nav-dropdown summary{
  list-style:none;
  cursor:pointer;
}

.nav-dropdown summary::-webkit-details-marker{
  display:none;
}

.nav-dropdown summary:after{
  content:"⌄";
  margin-left:6px;
}

.nav-dropdown-menu{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  z-index:120;
  width:260px;
  padding:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 20px 50px rgba(15,23,42,.16);
}

.nav-dropdown-menu a{
  display:block;
  padding:12px 13px;
  border-radius:10px;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active{
  background:var(--soft);
  color:var(--green-dark);
}

.mobile-toggle{
  display:none;
  width:50px;
  height:50px;
  border:0;
  border-radius:15px;
  background:var(--green);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow:0 8px 20px rgba(15,23,42,.12);
}

.mobile-toggle span{
  width:22px;
  height:3px;
  background:#fff;
  border-radius:999px;
}

.mobile-menu{
  display:none;
  position:fixed;
  top:var(--header-h);
  left:0;
  right:0;
  bottom:auto;
  height:calc(100vh - var(--header-h));
  height:calc(100dvh - var(--header-h));
  max-height:calc(100vh - var(--header-h));
  max-height:calc(100dvh - var(--header-h));
  z-index:99;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y;
  background:rgba(243,244,246,.985);
  padding:10px 16px calc(56px + env(safe-area-inset-bottom));
}

.mobile-menu.is-open{
  display:block;
}

.mobile-menu-grid{
  display:grid;
  gap:8px;
  max-width:720px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:10px;
  box-shadow:var(--shadow);
}

.mobile-menu-grid:after{
  content:"";
  display:block;
  height:28px;
}

.mobile-menu a{
  display:block;
  text-decoration:none;
  font-weight:900;
  padding:13px 14px;
  border-radius:12px;
  background:#f8fafc;
}

.mobile-menu a.active{
  background:var(--green);
  color:#fff;
}

.breadcrumb{
  padding:14px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}

.breadcrumb ol{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.breadcrumb li:not(:last-child):after{
  content:"/";
  margin-left:8px;
  color:#94a3b8;
}

.breadcrumb a{
  text-decoration:none;
}

.hero{
  padding:42px 0 56px;
  background:linear-gradient(
    180deg,
    #f8fafc 0%,
    var(--bg) 100%
  );
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
  gap:46px;
  align-items:start;
}

.hero-content{
  min-width:0;
}

.hero h1,
.hero-title{
  margin:14px 0 16px;
  font-size:clamp(40px,4.6vw,64px);
  line-height:1.01;
  letter-spacing:-.055em;
  text-wrap:balance;
}

.hero h1 .subline,
.hero-title .subline{
  display:block;
  font-size:clamp(28px,3vw,43px);
  line-height:1.05;
  margin-top:8px;
  letter-spacing:-.045em;
}

.hero-sub{
  margin:0 0 22px;
  color:#334155;
  font-size:clamp(17px,1.45vw,20px);
  font-weight:790;
  line-height:1.5;
  max-width:760px;
}

.hero-panel{
  background:var(--dark);
  color:#fff;
  border-radius:26px;
  padding:25px;
  box-shadow:var(--shadow);
  min-width:0;
}

.hero-panel h2{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
}

.hero-panel p{
  color:#d7dee9;
}

.signal-list,
.check-list,
.clean-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.signal-list li,
.check-list li,
.clean-list li{
  position:relative;
  padding-left:22px;
  color:inherit;
  font-weight:730;
}

.signal-list li:before,
.check-list li:before,
.clean-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(150,191,72,.13);
}

.hero-panel .signal-list li{
  color:#e5e7eb;
}

.price-callout{
  margin-top:18px;
  padding:15px;
  border:1px solid rgba(150,191,72,.32);
  background:rgba(150,191,72,.11);
  border-radius:16px;
}

.price-callout strong{
  display:block;
  font-size:28px;
  line-height:1.05;
}

.price-callout span{
  display:block;
  margin-top:5px;
  color:#dbe7cc;
  font-size:13px;
  font-weight:800;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.trust-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:17px;
  padding:17px 15px;
  text-align:center;
  box-shadow:var(--shadow-soft);
}

.trust-item strong{
  display:block;
  font-size:20px;
  line-height:1.15;
  margin-bottom:4px;
}

.trust-item span{
  font-size:13px;
  color:var(--muted);
  font-weight:800;
}

.trust-item a{
  color:var(--green-dark);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

.card-grid.four{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  min-height:100%;
}

.card h2,
.card h3{
  margin:10px 0 8px;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.025em;
}

.card p{
  margin:0;
  color:#475569;
  font-weight:700;
}

.card ul{
  margin:14px 0 0;
  padding-left:20px;
  color:#334155;
  font-weight:700;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.split-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:27px;
  box-shadow:var(--shadow);
  min-width:0;
}

.split-card.dark{
  background:var(--dark);
  color:#fff;
}

.split-card h2{
  margin:10px 0 10px;
  font-size:clamp(27px,3vw,38px);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.split-card p{
  margin:0 0 12px;
  color:#475569;
  font-weight:720;
}

.split-card.dark p{
  color:#d7dee9;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow-soft);
}

.step-num{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-weight:1000;
  margin-bottom:12px;
}

.step h3{
  margin:0 0 8px;
  font-size:18px;
}

.step p{
  margin:0;
  color:#475569;
  font-weight:700;
  font-size:15px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
  align-items:start;
}

details.faq{
  background:#fff;
  border:1px solid var(--line);
  border-radius:17px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

details.faq summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:70px;
  padding:17px 19px;
  font-weight:1000;
  line-height:1.25;
}

details.faq summary::-webkit-details-marker{
  display:none;
}

details.faq summary:after{
  content:"+";
  width:32px;
  height:32px;
  min-width:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:22px;
}

details.faq[open] summary:after{
  content:"−";
}

.faq-content{
  padding:0 19px 17px;
  color:#475569;
  font-weight:700;
}

.cta-box{
  background:var(--dark);
  color:#fff;
  border-radius:27px;
  padding:34px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1fr auto;
  gap:22px;
  align-items:center;
}

.cta-box h2{
  margin:0 0 9px;
  font-size:clamp(29px,3.5vw,42px);
  line-height:1.07;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.cta-box p{
  margin:0;
  color:#d7dee9;
  max-width:760px;
  font-weight:730;
}

.price-note{
  max-width:980px;
  margin:18px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.ai-box{
  background:linear-gradient(135deg,#07101f,#0d1829);
  color:#fff;
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}

.ai-box h2{
  margin:10px 0 12px;
  font-size:clamp(29px,3.7vw,44px);
  line-height:1.06;
  letter-spacing:-.04em;
}

.ai-box p{
  color:#d7dee9;
  font-weight:720;
}

.ai-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}

.ai-mini{
  padding:17px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:17px;
  background:rgba(255,255,255,.045);
}

.ai-mini strong{
  display:block;
  color:#fff;
  margin-bottom:5px;
}

.ai-mini span{
  display:block;
  color:#cbd5e1;
  font-size:14px;
  font-weight:680;
}

.site-footer{
  background:#07101f;
  color:#fff;
  padding:32px 20px;
  text-align:center;
}

.footer-inner{
  max-width:1000px;
  margin:0 auto;
}

.footer-partner{
  width:150px;
  margin:0 auto 16px;
  padding:7px 9px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.footer-brand{
  font-weight:1000;
}

.footer-contact{
  margin-top:5px;
  color:#cbd5e1;
  font-size:14px;
  font-weight:700;
}

.footer-contact a{
  color:#fff;
}

.footer-nav,
.footer-meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 14px;
  margin-top:15px;
}

.footer-nav a,
.footer-meta a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.footer-nav a:hover,
.footer-meta a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.legal-pair{
  white-space:nowrap;
  display:inline-flex;
  gap:6px;
  align-items:center;
}

[data-reveal]{
  opacity:1;
  transform:none;
}

.js [data-reveal]{
  opacity:0;
  transform:translateY(20px);
  filter:blur(2px);
  transition:
    opacity .5s ease,
    transform .5s ease,
    filter .5s ease;
}

.js [data-reveal="left"]{
  transform:translateX(-26px);
}

.js [data-reveal="right"]{
  transform:translateX(26px);
}

.js [data-reveal].is-visible{
  opacity:1;
  transform:none;
  filter:none;
}

.mobile-buybar{
  display:none;
}

@media(max-width:1180px){

  .desktop-nav{
    display:none;
  }

  .mobile-toggle{
    display:flex;
  }

  .header-inner{
    min-height:78px;
  }

  .logo{
    width:200px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .hero{
    text-align:center;
  }

  .hero-sub{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-panel{
    max-width:760px;
    margin:0 auto;
    text-align:left;
  }

  .trust-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .card-grid.four{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .split{
    grid-template-columns:1fr;
  }

  .cta-box{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-box .btn{
    justify-self:center;
  }

  .ai-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){

  .container{
    padding:0 16px;
  }

  .section{
    padding:50px 0;
  }

  .section-tight{
    padding:38px 0;
  }

  .logo{
    width:184px;
  }

  .hero{
    padding:27px 0 40px;
  }

  .breadcrumb{
    padding-top:10px;
  }

  .eyebrow{
    font-size:11px;
    max-width:100%;
    white-space:normal;
    text-align:center;
  }

  .hero h1,
  .hero-title{
    font-size:clamp(36px,10.5vw,49px);
    margin-top:12px;
    margin-bottom:13px;
  }

  .hero h1 .subline,
  .hero-title .subline{
    font-size:clamp(25px,7.2vw,34px);
  }

  .hero-sub{
    font-size:17px;
    line-height:1.48;
  }

  .hero-actions{
    width:100%;
  }

  .hero-actions .btn{
    width:100%;
  }

  .trust-row,
  .card-grid,
  .card-grid.four,
  .steps-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .hero-panel,
  .split-card,
  .ai-box{
    padding:21px 17px;
    border-radius:20px;
  }

  .cta-box{
    padding:26px 18px;
  }

  .cta-box .btn{
    width:100%;
  }

  .site-footer{
    padding:28px 16px calc(28px + env(safe-area-inset-bottom));
  }

  .footer-nav{
    gap:10px 12px;
  }

  .js [data-reveal="left"],
  .js [data-reveal="right"]{
    transform:translateY(18px);
  }
}

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *:before,
  *:after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important;
  }

  .js [data-reveal]{
    opacity:1!important;
    filter:none!important;
    transform:none!important;
  }
}

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  width:0;
  height:3px;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    var(--green-dark),
    var(--green),
    #c7ef81
  );
  box-shadow:0 0 14px rgba(150,191,72,.55);
}

.home-hero{
  position:relative;
  overflow:hidden;
  padding:48px 0 54px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(150,191,72,.18),
      transparent 29%
    ),
    linear-gradient(
      180deg,
      #f8fafc 0%,
      var(--bg) 100%
    );
}

.home-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,610px) minmax(390px,520px);
  grid-template-areas:
    "topics media"
    "proof media"
    "title media"
    "copy media"
    "actions media";
  column-gap:50px;
  align-items:start;
  justify-content:center;
}

.hero-topics{
  grid-area:topics;
  justify-self:start;
  white-space:nowrap;
}

.hero-proof{
  grid-area:proof;
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:#334155;
  font-size:14px;
  font-weight:900;
  line-height:1.3;
  white-space:nowrap;
}

.hero-proof:before{
  content:"";
  flex:0 0 auto;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  box-shadow:
    0 0 0 5px rgba(150,191,72,.13),
    0 0 16px rgba(150,191,72,.30);
}

.home-title{
  grid-area:title;
  position:relative;
  width:100%;
  margin:16px 0 13px;
  color:var(--text);
  line-height:1;
  letter-spacing:-.055em;
}

.home-title .type-line{
  display:block;
  font-size:clamp(42px,3.2vw,52px);
  line-height:1.03;
  text-wrap:balance;
}

.home-title .subline{
  display:block;
  margin-top:7px;
  font-size:clamp(29px,2.45vw,39px);
  line-height:1.05;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.typebox{
  position:relative;
}

.type-live{
  display:none;
}

.js .type-measure{
  visibility:hidden;
}

.js .type-live{
  display:block;
  position:absolute;
  inset:0;
}

.typing-cursor{
  display:inline-block;
  width:.075em;
  height:.85em;
  margin-left:.07em;
  vertical-align:-.03em;
  background:var(--green);
  box-shadow:0 0 12px rgba(150,191,72,.75);
  animation:cursorBlink .65s step-end infinite;
}

@keyframes cursorBlink{

  0%,
  46%{
    opacity:1;
  }

  47%,
  100%{
    opacity:0;
  }
}

.home-copy{
  grid-area:copy;
  position:relative;
  width:100%;
  max-width:600px;
  color:#334155;
  font-size:17px;
  font-weight:800;
  line-height:1.42;
}

.home-copy .copy-line{
  display:block;
  margin:0 0 5px;
  text-wrap:balance;
}

.home-copy .copy-line:last-child{
  margin-bottom:0;
}

.copy-cursor{
  display:inline-block;
  width:6px;
  height:17px;
  margin-left:3px;
  vertical-align:-2px;
  background:var(--green);
  box-shadow:0 0 10px rgba(150,191,72,.65);
  animation:cursorBlink .65s step-end infinite;
}

.home-actions{
  grid-area:actions;
  margin-top:10px;
  width:100%;
}

.whatsapp-row{
  display:flex;
}

.package-row{
  display:flex;
  gap:9px;
  margin-top:8px;
}

.package-row .btn{
  min-width:170px;
}

.home-media{
  grid-area:media;
  width:100%;
  max-width:520px;
  padding-top:46px;
}

.hero-image-shell{
  position:relative;
  isolation:isolate;
  width:100%;
  overflow:hidden;
  padding:6px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 30px 76px rgba(15,23,42,.18);
}

.hero-image-shell img{
  position:relative;
  z-index:2;
  width:100%;
  border-radius:22px;
  user-select:none;
  -webkit-user-drag:none;
}

.hero-image-shell:before{
  content:"";
  position:absolute;
  z-index:5;
  top:-45%;
  bottom:-45%;
  left:-85%;
  width:31%;
  pointer-events:none;
  transform:rotate(18deg);
  opacity:0;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.05),
    rgba(255,255,255,.78),
    rgba(192,234,112,.43),
    rgba(255,255,255,.68),
    transparent
  );
  filter:blur(2px);
}

.hero-image-shell.is-shining:before{
  animation:heroShine 1.02s ease-in-out .15s 3;
}

@keyframes heroShine{

  0%{
    left:-85%;
    opacity:0;
  }

  16%{
    opacity:.95;
  }

  65%{
    opacity:.95;
  }

  100%{
    left:145%;
    opacity:0;
  }
}

.hero-image-shell:after{
  content:"";
  position:absolute;
  z-index:4;
  inset:5px;
  pointer-events:none;
  border-radius:23px;
  opacity:0;
  box-shadow:
    inset 0 0 0 2px rgba(150,191,72,.82),
    0 0 24px rgba(150,191,72,.42),
    0 0 58px rgba(150,191,72,.20);
}

.hero-image-shell.is-shining:after{
  animation:heroGlow .34s ease-in-out .35s 6 alternate;
}

@keyframes heroGlow{

  from{
    opacity:0;
  }

  to{
    opacity:1;
  }
}

.partner-card{
  width:185px;
  margin:12px auto 0;
  padding:8px 10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  box-shadow:0 12px 30px rgba(15,23,42,.12);
}

.partner-card img{
  width:100%;
}

.home-services{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
}

.dev-section{
  background:linear-gradient(135deg,#07101f,#0d1829);
  color:#fff;
}

.dev-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:center;
}

.dev-copy p{
  color:#cbd5e1;
  font-weight:720;
}

.code-shell{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  background:#050d18;
  box-shadow:0 28px 70px rgba(0,0,0,.30);
}

.code-top{
  min-height:42px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 14px;
  background:#111b2d;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.code-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
}

.code-title{
  margin-left:6px;
  color:#94a3b8;
  font-family:"Courier New",monospace;
  font-size:12px;
  font-weight:700;
}

.live-code{
  min-height:315px;
  margin:0;
  padding:22px;
  color:#e7f6cf;
  font-family:"Courier New",monospace;
  font-size:13px;
  font-weight:700;
  line-height:1.65;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}

.code-shell.is-typing .live-code:after{
  content:"";
  display:inline-block;
  width:8px;
  height:16px;
  margin-left:3px;
  vertical-align:-2px;
  background:var(--green);
  box-shadow:0 0 12px rgba(150,191,72,.75);
  animation:cursorBlink .65s step-end infinite;
}

.home-package-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.home-package{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.home-package .price{
  font-size:42px;
  font-weight:1000;
  letter-spacing:-.055em;
  line-height:1;
  margin:12px 0 7px;
}

@media(max-width:1180px){

  .home-grid{
    max-width:820px;
    grid-template-columns:1fr;
    grid-template-areas:
      "topics"
      "proof"
      "media"
      "title"
      "copy"
      "actions";
    text-align:center;
  }

  .hero-topics,
  .hero-proof{
    justify-self:center;
  }

  .home-media{
    max-width:760px;
    margin:18px auto 0;
    padding-top:0;
  }

  .partner-card{
    display:none;
  }

  .home-title{
    margin:18px auto 12px;
  }

  .home-copy{
    max-width:720px;
    margin:0 auto;
  }

  .home-actions{
    max-width:720px;
    margin:8px auto 0;
  }

  .whatsapp-row{
    justify-content:center;
  }

  .package-row{
    justify-content:center;
  }

  .home-services{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .dev-grid{
    grid-template-columns:1fr;
  }

  .dev-copy{
    text-align:center;
  }

  .home-package-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:680px){

  .home-hero{
    padding:20px 0 32px;
  }

  .hero-topics{
    max-width:100%;
    padding:7px 8px;
    font-size:clamp(7.6px,2.22vw,10.1px);
    letter-spacing:0;
    white-space:nowrap;
  }

  .hero-proof{
    max-width:100%;
    gap:5px;
    margin-top:10px;
    font-size:clamp(7.9px,2.25vw,10.3px);
    letter-spacing:-.015em;
    white-space:nowrap;
  }

  .hero-proof:before{
    width:7px;
    height:7px;
    box-shadow:0 0 0 4px rgba(150,191,72,.12);
  }

  .home-media{
    margin-top:15px;
  }

  .hero-image-shell{
    padding:4px;
    border-radius:19px;
    box-shadow:0 16px 38px rgba(15,23,42,.13);
  }

  .hero-image-shell img{
    border-radius:15px;
  }

  .home-title{
    margin:15px auto 9px;
  }

  .home-title .type-line{
    font-size:clamp(23px,6.65vw,28px);
    white-space:nowrap;
  }

  .home-title .subline{
    font-size:clamp(19.5px,5.55vw,23px);
    white-space:nowrap;
  }

  .home-copy{
    font-size:14.5px;
    line-height:1.36;
  }

  .home-copy .copy-line{
    margin-bottom:4px;
  }

  .home-actions{
    margin-top:7px;
  }

  .whatsapp-row .btn{
    width:100%;
    min-height:47px;
  }

  .package-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
    margin-top:7px;
  }

  .package-row .btn{
    min-width:0;
    width:100%;
    min-height:46px;
    padding:10px 7px;
    font-size:12.5px;
  }

  .home-services{
    grid-template-columns:1fr;
  }

  .live-code{
    min-height:290px;
    padding:17px 14px;
    font-size:11px;
  }
}

@media(max-width:390px){

  .hero-topics{
    font-size:7.35px;
  }

  .hero-proof{
    font-size:7.6px;
  }

  .home-title .type-line{
    font-size:22px;
  }

  .home-title .subline{
    font-size:18.8px;
  }

  .home-copy{
    font-size:13.8px;
  }
}

.guide-price{
  font-size:46px;
  font-weight:1000;
  letter-spacing:-.05em;
  line-height:1;
  margin:8px 0;
}

.guide-cover{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}

.guide-cover .price-small{
  color:var(--green-dark);
  font-weight:1000;
  margin-top:10px;
}

@media(max-width:680px){

  .mobile-buybar{
    display:flex;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:80;
    gap:10px;
    align-items:center;
    justify-content:space-between;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.97);
    border-top:1px solid var(--line);
    box-shadow:0 -8px 22px rgba(0,0,0,.08);
  }

  .mobile-buybar-price{
    font-weight:1000;
    font-size:20px;
    white-space:nowrap;
  }

  .mobile-buybar .btn{
    width:auto;
    min-height:48px;
    padding:12px 18px;
    white-space:nowrap;
    box-shadow:none;
  }

  body.menu-open .mobile-buybar{
    display:none;
  }

  body.has-buybar .site-footer{
    padding-bottom:calc(90px + env(safe-area-inset-bottom));
  }
}

.legal-wrap{
  max-width:980px;
  margin:34px auto 60px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:30px;
  box-shadow:var(--shadow-soft);
}

.legal-wrap h1{
  font-size:34px;
  margin:0 0 18px;
  letter-spacing:-.035em;
}

.legal-wrap h2{
  font-size:20px;
  margin:26px 0 10px;
}

.legal-wrap h3{
  font-size:16px;
  margin:17px 0 8px;
}

.legal-wrap p,
.legal-wrap li{
  font-size:15px;
}

.legal-wrap ul{
  padding-left:20px;
}

.legal-wrap a{
  color:var(--green-dark);
}

.legal-wrap .muted{
  color:var(--muted);
  font-size:13px;
  margin-top:18px;
}

.legal-wrap .hr{
  height:1px;
  background:var(--line);
  margin:20px 0;
}

@media(max-width:680px){

  .legal-wrap{
    margin:22px 16px 42px;
    padding:22px 17px;
    border-radius:18px;
  }

  .legal-wrap h1{
    font-size:30px;
  }

  .legal-wrap h2{
    font-size:19px;
  }
}

/* =========================================================
   DATENSCHUTZ-EINSTELLUNGEN / GOOGLE ADS
========================================================= */

.consent-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:2000;
  padding:14px 16px calc(14px + env(safe-area-inset-bottom));
  background:rgba(7,16,31,.78);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.10);
}

.consent-card{
  width:min(1040px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:20px;
  align-items:center;
  padding:18px 20px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 22px 60px rgba(0,0,0,.28);
}

.consent-copy strong{
  display:block;
  margin-bottom:5px;
  font-size:17px;
  line-height:1.2;
}

.consent-copy p{
  margin:0;
  color:#475569;
  font-size:14px;
  line-height:1.45;
  font-weight:700;
}

.consent-copy a{
  color:var(--green-dark);
  font-weight:900;
}

.consent-actions{
  display:flex;
  gap:9px;
  align-items:center;
}

.consent-btn{
  min-height:46px;
  padding:11px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  font:inherit;
  font-size:14px;
  font-weight:1000;
  cursor:pointer;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.consent-btn:hover{
  transform:translateY(-1px);
}

.consent-deny{
  background:#fff;
  color:var(--text);
}

.consent-deny:hover{
  background:#f8fafc;
  border-color:#cbd5e1;
}

.consent-accept{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}

.consent-accept:hover{
  background:#8ab33f;
}

.footer-consent-btn{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  color:#fff;
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.footer-consent-btn:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

@media(max-width:680px){

  .consent-banner{
    padding:10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .consent-card{
    grid-template-columns:1fr;
    gap:13px;
    padding:16px;
    border-radius:16px;
  }

  .consent-copy{
    text-align:left;
  }

  .consent-copy strong{
    font-size:16px;
  }

  .consent-copy p{
    font-size:13px;
  }

  .consent-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .consent-btn{
    width:100%;
    min-height:48px;
  }

  body.has-buybar .consent-banner{
    bottom:0;
  }

  body.has-buybar .mobile-buybar{
    z-index:79;
  }
}