:root{
  --orange: #D9730D;
  --orange-dark: #B85C05;
  --orange-light: #F6A94C;
  --blue: #1502F3;
  --blue-dark: #0E00B0;
  --purple: #6E2FCE;
  --ink: #1B1530;
  --gray: #5B5670;
  --bg-soft: #FFF7EF;
  --bg-footer: #F1ECFB;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 20px 45px -20px rgba(27,21,48,.25);
  --gradient: linear-gradient(115deg, var(--blue) 0%, var(--purple) 50%, var(--orange) 100%);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--ink);
  line-height:1.6;
  background: var(--white);
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}

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

h1,h2,h3{ font-family: var(--font-head); font-weight:700; color: var(--ink); }

.section-title{ font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight:800; }
.section-title.accent{ color: var(--blue); }
.center{ text-align:center; }
.eyebrow{
  display:inline-block; font-family: var(--font-head); font-weight:700;
  color: var(--orange); text-transform:uppercase; letter-spacing:.08em;
  font-size:.85rem; margin-bottom:8px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 28px; border-radius:999px; font-family:var(--font-head);
  font-weight:700; font-size:.95rem; transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  white-space:nowrap; cursor:pointer;
}
.btn svg{ flex-shrink:0; }
.btn:hover{ transform: translateY(-3px); }
.btn:active{ transform: translateY(-1px) scale(.98); }
.btn-blue{ background: var(--blue); color:#fff; box-shadow:0 10px 22px -10px rgba(21,2,243,.6); }
.btn-blue:hover{ background: var(--blue-dark); box-shadow:0 14px 28px -8px rgba(21,2,243,.6); }
.btn-orange{ background: var(--orange); color:#fff; box-shadow:0 10px 22px -10px rgba(217,115,13,.6); }
.btn-orange:hover{ background: var(--orange-dark); box-shadow:0 14px 28px -8px rgba(217,115,13,.6);}
.btn-ghost{ background: rgba(255,255,255,.12); color:#fff; border:2px solid #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover{ background: #fff; color: var(--blue); }
.btn-outline-blue{ color: var(--blue); border:2px solid var(--blue); background:#fff; }
.btn-outline-blue:hover{ background: var(--blue); color:#fff; }
.btn-outline-white{ color:#fff; border:2px solid #fff; background:transparent; }
.btn-outline-white:hover{ background:#fff; color:var(--purple); }
.btn-white{ background:#fff; color: var(--purple); box-shadow:0 10px 22px -12px rgba(0,0,0,.35); }
.btn-white:hover{ background: var(--ink); color:#fff; }
.btn.full{ width:100%; margin-top:20px; }

@keyframes btnPulse{
  0%, 100% { box-shadow:0 10px 22px -10px rgba(21,2,243,.6); }
  50% { box-shadow:0 12px 30px -6px rgba(21,2,243,.85); }
}
.btn-pulse{ animation: btnPulse 2.4s ease-in-out infinite; }
.btn-pulse:hover{ animation-play-state: paused; }

/* HEADER */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:14px 24px;
}
.logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-icon{ width:38px; height:38px; }
.logo-text{ display:flex; flex-direction:column; line-height:1.1; }
.logo-text strong{
  font-family: var(--font-head); font-size:1.25rem; font-weight:800;
  color: var(--ink); letter-spacing:-.02em;
}
.logo-text strong span{ color: var(--orange); }
.logo-text small{ font-size:.65rem; letter-spacing:.06em; color: var(--gray); text-transform:uppercase; font-weight:600;}

.main-nav{ display:flex; align-items:center; gap:32px; }
.main-nav a{
  font-family: var(--font-head); font-weight:500; font-size:.95rem;
  color: var(--ink); position:relative; padding:4px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background: var(--orange); transition:width .2s ease;
}
.main-nav a:hover::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:12px; }
.phone-btn{ padding:10px 18px; font-size:.85rem; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; padding:8px;
}
.nav-toggle span{ width:24px; height:2.5px; background: var(--ink); border-radius:2px; }

/* HERO */
.hero{ position:relative; padding:80px 0 130px; overflow:hidden; background: linear-gradient(180deg, #FFF7EF 0%, #FFFFFF 65%); }
.hero-blob-bg{
  position:absolute; top:-160px; right:-160px; width:620px; height:620px;
  background: var(--gradient); opacity:.22; border-radius:42% 58% 65% 35% / 45% 45% 55% 55%;
  filter: blur(30px); z-index:0;
}
.hero-grid{
  position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr;
  gap:60px; align-items:center;
}
.hero-content h1{
  color: var(--ink); font-size: clamp(2.1rem, 4vw, 3rem); line-height:1.15; margin-bottom:22px;
}
.hero-content p{ color: var(--gray); font-size:1.05rem; margin-bottom:36px; max-width:560px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-visual{ position:relative; padding:0 20px 60px 0; }
.hero-visual-main{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.hero-visual-main img{ width:100%; height:440px; object-fit:cover; display:block; }
.hero-visual-float{
  position:absolute; left:-30px; bottom:0; width:58%;
  border-radius:16px; overflow:hidden; border:6px solid #fff;
  box-shadow:0 24px 44px -14px rgba(27,21,48,.35);
}
.hero-visual-float img{ width:100%; display:block; }

/* PILLARS */
.pillars{ padding:90px 0 60px; }
.pillars-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:50px;
}
.pillar{ text-align:center; padding:20px; }
.pillar-icon{
  width:66px; height:66px; margin:0 auto 18px; border-radius:50%;
  background: linear-gradient(135deg, #FFEFDD, #FFE0B8);
  display:flex; align-items:center; justify-content:center; color: var(--orange);
}
.pillar-icon svg{ width:30px; height:30px; }
.pillar h3{ font-size:1.1rem; margin-bottom:8px; }
.pillar p{ color: var(--gray); font-size:.92rem; }

/* ABOUT / SERVICES */
.about{ padding:70px 0; background: var(--bg-soft); }
.about-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center; }
.about-text h2{ font-size: clamp(1.5rem,3vw,2.1rem); margin:10px 0 18px; line-height:1.3; }
.about-text h2 strong{ color: var(--orange); }
.about-text p{ color: var(--gray); margin-bottom:20px; }
.check-list{ margin-bottom:28px; }
.check-list li{
  position:relative; padding-left:30px; margin-bottom:12px; font-weight:600; color: var(--ink);
}
.check-list li::before{
  content:''; position:absolute; left:0; top:4px; width:18px; height:18px; border-radius:50%;
  background: var(--blue);
}
.check-list li::after{
  content:''; position:absolute; left:5px; top:7px; width:8px; height:4px;
  border-left:2px solid #fff; border-bottom:2px solid #fff; transform: rotate(-45deg);
}
.about-media img{ border-radius: var(--radius); box-shadow: var(--shadow); }

/* PLANS */
.plans{ padding:90px 0; }
.plans-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; align-items:stretch;
}
.plan-card{
  border:1px solid #E7E2F5; border-radius: var(--radius); padding:36px 30px;
  display:flex; flex-direction:column; position:relative;
}
.plan-card h3{ color: var(--blue); font-size:1.4rem; }
.plan-sub{ color: var(--gray); font-weight:600; font-size:.85rem; margin:6px 0 18px; }
.plan-price{ font-family:var(--font-head); font-size:2.4rem; font-weight:800; color: var(--orange); margin-bottom:22px; }
.plan-price span{ font-size:1rem; font-weight:600; color: var(--gray); }
.plan-card ul{ flex:1; }
.plan-card li{
  font-size:.92rem; color: var(--gray); padding:8px 0; border-bottom:1px dashed #EAE6F5;
}
.plan-card li strong{ color: var(--ink); }
.plan-card.featured{
  background: var(--gradient); border:none; color:#fff; transform: scale(1.03);
  box-shadow: var(--shadow);
}
.plan-card.featured h3, .plan-card.featured .plan-price{ color:#fff; }
.plan-card.featured .plan-sub{ color: rgba(255,255,255,.8); }
.plan-card.featured .plan-price span{ color: rgba(255,255,255,.8); }
.plan-card.featured li{ color: rgba(255,255,255,.92); border-bottom-color: rgba(255,255,255,.2); }
.plan-card.featured li strong{ color:#fff; }
.plan-badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:#fff; color: var(--purple); font-family:var(--font-head); font-weight:700;
  font-size:.75rem; padding:6px 16px; border-radius:999px; box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* DIFFERENTIALS */
.differentials{ padding:90px 0; background: var(--bg-soft); }
.diff-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:60px; align-items:center; }
.diff-media img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.diff-text h2{ font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom:14px; line-height:1.3; }
.diff-text > p{ color: var(--gray); margin-bottom:28px; }

.accordion{ margin-bottom:30px; }
.accordion-item{ border-bottom:1px solid #E7E2F5; }
.accordion-trigger{
  width:100%; text-align:left; display:flex; justify-content:space-between; align-items:center;
  padding:18px 4px; font-family: var(--font-head); font-weight:600; font-size:.98rem; color: var(--ink);
}
.accordion-trigger span{
  color: var(--orange); font-size:1.3rem; font-weight:400; transition: transform .2s ease; flex-shrink:0; margin-left:12px;
}
.accordion-item.open .accordion-trigger span{ transform: rotate(45deg); }
.accordion-panel{
  max-height:0; overflow:hidden; transition: max-height .3s ease;
}
.accordion-panel p{ padding:0 4px 18px; color: var(--gray); font-size:.92rem; }

/* BLOG */
.blog{ padding:90px 0; }
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin:50px 0 40px; }
.blog-card img{ border-radius: var(--radius); height:200px; object-fit:cover; margin-bottom:20px; }
.blog-card h3{ color: var(--orange); font-size:1.1rem; margin-bottom:10px; line-height:1.35; }
.blog-card p{ color: var(--gray); font-size:.92rem; margin-bottom:14px; }
.link-arrow{ color: var(--blue); font-weight:700; font-size:.9rem; }

/* FAQ */
.faq{ padding:90px 0; background: var(--bg-soft); }
.faq .accordion{ max-width:820px; margin:50px auto 0; }
.faq-item{ background:#fff; border:1px solid #E7E2F5; border-radius:12px; margin-bottom:12px; padding:0 20px; }
.faq-item .accordion-trigger{ color: var(--orange); }

/* CTA BANNER */
.cta-banner{ background: var(--gradient); padding:60px 0; }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.cta-inner h2{ color:#fff; font-size: clamp(1.4rem,2.5vw,1.9rem); }

/* MAP */
.map-section{ padding:80px 0 0; }
.map-address{ color: var(--gray); margin-top:-10px; margin-bottom:40px; font-weight:600; }
.map-embed{
  width:100%; height:420px; overflow:hidden; box-shadow: 0 -10px 30px -20px rgba(27,21,48,.2);
}
.map-embed iframe{ width:100%; height:100%; display:block; }

/* FOOTER */
.site-footer{ background: var(--bg-footer); padding:50px 0 0; }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:36px;
}
.footer-contact{ display:flex; flex-direction:column; gap:4px; }
.footer-contact a{ font-weight:700; color: var(--ink); }
.footer-contact p{ color: var(--gray); font-size:.85rem; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:40px; height:40px; border-radius:50%; background:#fff; color: var(--purple);
  display:flex; align-items:center; justify-content:center; transition: background .2s ease, color .2s ease;
}
.footer-social a:hover{ background: var(--orange); color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(0,0,0,.08); padding:18px 24px; text-align:center;
  color: var(--gray); font-size:.85rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(37,211,102,.45); z-index:200; transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* RESPONSIVE */
@media (max-width: 960px){
  .main-nav{ display:none; }
  .header-cta .phone-btn{ display:none; }
  .nav-toggle{ display:flex; }
  .pillars-grid{ grid-template-columns:repeat(2,1fr); }
  .about-grid, .diff-grid{ grid-template-columns:1fr; }
  .about-media, .diff-media{ order:-1; }
  .plans-grid{ grid-template-columns:1fr; }
  .plan-card.featured{ transform:none; order:-1; }
  .blog-grid{ grid-template-columns:1fr; }
  .cta-inner{ justify-content:center; text-align:center; }
  .hero{ padding:60px 0 90px; }
  .hero-grid{ grid-template-columns:1fr; gap:70px; }
  .hero-content{ order:1; text-align:center; }
  .hero-content p{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-visual{ order:2; padding:0 20px 50px 20px; }
}

@media (max-width: 960px){
  .main-nav{
    position:fixed; top:70px; left:0; right:0; background:#fff;
    flex-direction:column; align-items:flex-start; padding:20px 24px; gap:18px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08); transform: translateY(-120%); opacity:0;
    transition: all .25s ease; pointer-events:none;
  }
  .main-nav.open{ transform: translateY(0); opacity:1; pointer-events:auto; display:flex; }
}

@media (max-width:600px){
  .pillars-grid{ grid-template-columns:1fr; }
  .header-cta .btn-orange{ padding:10px 16px; font-size:.85rem; }
  .hero-visual-main img{ height:300px; }
  .hero-visual-float{ width:64%; left:0; }
}
