/* ==========================================================================
   Think Lead Media — Stylesheet
   ========================================================================== */

:root{
  --primary:#1268F3;
  --deep-blue:#0B4FCB;
  --navy:#0B1220;
  --text:#111827;
  --muted:#667085;
  --light-blue:#F2F7FF;
  --border:#DCE7F7;
  --white:#FFFFFF;
  --gradient: linear-gradient(135deg, #1268F3, #0B4FCB);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px rgba(11,18,32,.08);
  --container: 1160px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Manrope', Inter, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }
.section-tag{
  display:inline-block;color:var(--primary);font-weight:700;font-size:14px;
  letter-spacing:.5px;text-transform:uppercase;margin-bottom:12px;
}
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
h1,h2,h3,h4,h5{ font-family:'Manrope', Inter, sans-serif; color:var(--navy); margin:0 0 .5em; font-weight:800; line-height:1.2; }
h2{ font-size:40px; }
h3{ font-size:26px; }
p{ color:var(--muted); margin:0 0 1em; }
.lead{ font-size:18px; }
.text-navy{ color:var(--navy); }
.text-primary{ color:var(--primary); }
.bg-light{ background:var(--light-blue); }
.bg-navy{ background:var(--navy); color:#fff; }

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:700;font-size:15px;padding:14px 28px;border-radius:8px;
  text-decoration:none;cursor:pointer;border:none;transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--gradient); color:#fff; box-shadow:0 10px 24px rgba(18,104,243,.25); }
.btn-primary:hover{ box-shadow:0 14px 30px rgba(18,104,243,.35); }
.btn-outline{ background:transparent; color:var(--navy); border:1.5px solid var(--border); }
.btn-outline:hover{ border-color:var(--primary); color:var(--primary); }
.btn-white{ background:#fff; color:var(--navy); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:14px; }
.btn-whatsapp{ background:#25D366; color:#fff; }
.btn-whatsapp:hover{ background:#1EBE5A; }
.btn-whatsapp svg{ flex-shrink:0; }

/* ============ HEADER ============ */
.site-header{
  position:sticky; top:0; z-index:100; background:#ffffff;
  border-bottom:1px solid var(--border);
  transition:box-shadow .2s ease;
}
.site-header.scrolled{ box-shadow:0 6px 20px rgba(11,18,32,.06); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand img{ height:36px; width:auto; }
.main-nav{ display:flex; align-items:center; gap:32px; }
.main-nav a{
  color:var(--text); text-decoration:none; font-weight:600; font-size:14.5px;
  position:relative; padding:6px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--primary); transition:width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy); border-radius:2px; }

/* ============ HERO ============ */
.hero{
  background:var(--light-blue); border-radius:var(--radius-lg);
  margin:32px auto 0; max-width:var(--container);
  padding:80px 48px; position:relative; overflow:hidden;
}
.hero .hero-flex{ display:flex; align-items:center; gap:48px; position:relative; z-index:2; }
.hero-inner{ max-width:620px; flex:1 1 480px; position:relative; z-index:2; }
.hero h1{ font-size:clamp(26px,3.6vw,48px); }
.hero h1 .line-navy{ color:var(--navy); display:block; white-space:nowrap; }
.hero h1 .line-blue{ color:var(--primary); display:block; white-space:nowrap; }
.hero .highlight-line{
  display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--navy);
  font-weight:700; font-size:14.5px; padding:10px 18px; border-radius:30px;
  border:1px solid var(--border); margin-top:18px;
}
.hero p.lead{ max-width:520px; margin-top:18px; font-size:18px; }
.hero .cta-row{ margin-top:32px; display:flex; gap:16px; flex-wrap:wrap; }
.hero .blob{
  position:absolute; width:420px; height:420px; border-radius:50%;
  background:var(--gradient); opacity:.08; right:-120px; top:-120px; z-index:1;
}

/* Hero visual: search-result mockup */
.hero-visual{ flex:1 1 360px; position:relative; min-width:300px; }
.search-mock{
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:22px;
  box-shadow:var(--shadow-soft); max-width:380px; position:relative; z-index:2; margin:0 auto;
}
.search-mock .search-bar{
  display:flex; align-items:center; gap:10px; border:1px solid var(--border); border-radius:30px;
  padding:10px 16px; font-size:14px; color:var(--muted); margin-bottom:16px;
}
.search-result{ padding:12px 2px; border-bottom:1px solid var(--border); }
.search-result:last-child{ border-bottom:none; }
.search-result .result-url{ font-size:12.5px; color:#1a7a3c; }
.search-result .result-title{ font-size:15px; font-weight:700; color:var(--navy); margin-top:2px; }
.search-result .result-desc{ font-size:13px; color:var(--muted); margin-top:2px; }
.search-result.highlight{
  background:var(--light-blue); border:1.5px solid var(--primary); border-radius:12px; padding:14px; margin-bottom:10px;
}
.float-badge{
  position:absolute; background:#fff; border:1px solid var(--border); border-radius:14px;
  padding:10px 16px; font-size:13.5px; font-weight:700; color:var(--navy);
  box-shadow:var(--shadow-soft); display:flex; align-items:center; gap:8px; z-index:3;
}
.float-badge.b1{ top:-10px; right:10px; }
.float-badge.b2{ bottom:10px; left:-10px; }

/* ============ SERVICES (Design 4) ============ */
.grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.callout-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:32px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.callout-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:var(--primary); }
.callout-card .icon{
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(135deg,var(--light-blue),#DCE9FF);
  display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:18px;
  box-shadow:0 8px 18px rgba(18,104,243,.12);
}
.callout-card:nth-child(2) .icon{ background:linear-gradient(135deg,#E7ECFF,#CFD9FA); box-shadow:0 8px 18px rgba(11,79,203,.14); }
.callout-card:nth-child(3) .icon{ background:linear-gradient(135deg,#EAF0FF,#D6E2FF); box-shadow:0 8px 18px rgba(11,18,32,.10); }
.callout-card h3{ font-size:21px; margin-bottom:10px; }
.callout-card ul{ margin-top:14px; }
.callout-card li{ font-size:14px; color:var(--muted); padding:4px 0 4px 20px; position:relative; }
.callout-card li::before{ content:"→"; position:absolute; left:0; color:var(--primary); font-weight:700; }

/* ============ ABOUT / STATS ============ */
.about-grid{ display:flex; align-items:center; gap:56px; flex-wrap:wrap; }
.about-grid .col{ flex:1; min-width:300px; }
.stat-bar{ display:flex; background:var(--navy); border-radius:var(--radius-md); padding:36px; flex-wrap:wrap; gap:20px; }
.stat-bar .stat{ flex:1; min-width:130px; text-align:center; }
.stat-bar .stat .num{ font-size:38px; font-weight:800; color:var(--primary); }
.stat-bar .stat .cap{ font-size:13.5px; color:#AEB8CC; margin-top:6px; }
.check-list li{ font-size:15px; color:var(--text); padding:6px 0 6px 28px; position:relative; }
.check-list li::before{
  content:"✓"; position:absolute; left:0; top:6px; width:18px; height:18px;
  background:var(--primary); color:#fff; border-radius:50%; font-size:11px;
  display:flex; align-items:center; justify-content:center;
}

/* ============ PROCESS ============ */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-grid::before{
  content:""; position:absolute; top:26px; left:12%; right:12%; height:2px;
  background:repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 18px);
  z-index:0;
}
.process-card{ position:relative; padding-top:8px; z-index:1; }
.process-card .step-num{
  font-size:14px; font-weight:800; color:#fff; background:var(--gradient);
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; box-shadow:0 8px 18px rgba(18,104,243,.28);
}
.process-card h3{ font-size:19px; }
.process-card p{ font-size:14.5px; }

/* ============ CTA (Design 7) ============ */
.cta-card{
  border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:56px 40px;
  text-align:center; background:var(--light-blue); max-width:var(--container); margin:0 auto;
  position:relative; overflow:hidden;
}
.cta-card > *:not(.decor-blob){ position:relative; z-index:1; }
.cta-card h2{ font-size:32px; }
.cta-card p{ margin:14px auto 26px; max-width:480px; }

/* ============ PR & MEDIA COVERAGE ============ */
.media-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.media-tile{
  background:#fff; border:1px solid var(--border); border-radius:14px; padding:28px 20px;
  text-align:center; transition:transform .2s ease, box-shadow .2s ease;
}
.media-tile:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); border-color:var(--primary); }
.media-icon{
  width:60px; height:60px; border-radius:50%; margin:0 auto 14px;
  background:linear-gradient(135deg,var(--light-blue),#E1EAFF);
  display:flex; align-items:center; justify-content:center; font-size:26px;
  box-shadow:0 8px 18px rgba(18,104,243,.12); transition:transform .2s ease;
}
.media-tile:hover .media-icon{ transform:scale(1.08) rotate(-4deg); }
.media-tile h4{ font-size:15px; margin:0; }

/* ============ PRICING (Design 17) ============ */
.price-card{ border:1.5px solid var(--border); border-radius:var(--radius-md); padding:34px; background:#fff; }
.price-card.active{ border-color:var(--primary); box-shadow:0 16px 34px rgba(18,104,243,.16); position:relative; }
.price-card.active .badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--gradient); color:#fff; font-size:12px; font-weight:700;
  padding:5px 14px; border-radius:20px;
}
.price-card .price{ font-size:38px; font-weight:800; color:var(--navy); margin:14px 0 20px; }
.price-card .price span{ font-size:14px; color:var(--muted); font-weight:600; }
.price-card ul{ margin:20px 0 26px; }
.price-card li{ font-size:14.5px; color:var(--muted); padding:7px 0 7px 24px; position:relative; }
.price-card li::before{ content:"✓"; color:var(--primary); position:absolute; left:0; font-weight:700; }

/* ============ TESTIMONIALS (Design 16) ============ */
.quote-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:32px; height:100%;
  position:relative; overflow:hidden;
}
.quote-card::before{
  content:"“"; position:absolute; top:-18px; right:14px; font-size:110px; font-weight:800;
  color:var(--light-blue); line-height:1; z-index:0; font-family:Georgia, serif;
}
.quote-card .stars{ color:var(--primary); font-size:15px; margin-bottom:14px; letter-spacing:2px; position:relative; z-index:1; }
.quote-card p.quote{ color:var(--navy); font-size:17px; font-weight:600; line-height:1.55; position:relative; z-index:1; }
.quote-card .who{ margin-top:18px; display:flex; align-items:center; gap:12px; }
.quote-card .avatar{
  width:40px; height:40px; border-radius:50%; background:var(--gradient); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px;
}
.quote-card .who .name{ font-size:14px; font-weight:700; color:var(--navy); }
.quote-card .who .role{ font-size:13px; color:var(--muted); }

/* ============ FAQ ============ */
.faq-item{ border-bottom:1px solid var(--border); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  background:none; border:none; text-align:left; padding:22px 4px; cursor:pointer;
  font-size:16.5px; font-weight:700; color:var(--navy);
}
.faq-question .icon{ font-size:20px; color:var(--primary); transition:transform .2s ease; flex-shrink:0; margin-left:16px; }
.faq-item.open .faq-question .icon{ transform:rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-answer p{ padding:0 4px 22px; font-size:15px; }

/* ============ CONTACT (Design 9) ============ */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; }
.form-card{
  background:var(--light-blue); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px;
}
.form-row{ margin-top:16px; display:flex; flex-direction:column; gap:6px; }
.form-row.two{ flex-direction:row; gap:16px; }
.form-row.two > div{ flex:1; display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size:13px; font-weight:700; color:var(--navy); }
.form-row input, .form-row select, .form-row textarea{
  border:1px solid var(--border); border-radius:8px; padding:13px 14px;
  font-family:'Manrope', Inter, sans-serif; font-size:15px; background:#fff; color:var(--text);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(18,104,243,.12);
}
.form-note{ font-size:13px; margin-top:14px; color:var(--muted); }
.form-success{
  display:none; background:#EAF7EE; border:1px solid #BEE3C6; color:#1E7A34;
  padding:14px 16px; border-radius:8px; font-size:14px; font-weight:600; margin-top:16px;
}
.form-success.show{ display:block; }

.contact-info-card{
  background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:40px; height:100%;
}
.contact-info-card h3{ color:#fff; }
.contact-item{ display:flex; gap:14px; align-items:flex-start; margin-top:22px; }
.contact-item .ico{
  width:38px; height:38px; border-radius:10px; background:rgba(18,104,243,.2); color:var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0;
}
.contact-item .label{ font-size:13px; color:#AEB8CC; }
.contact-item .value{ font-size:15px; font-weight:600; color:#fff; }
.social-row{ display:flex; gap:12px; margin-top:28px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; text-decoration:none; color:#fff; flex-shrink:0;
}
.social-row a svg{ display:block; }
.social-row a:hover{ background:var(--primary); border-color:var(--primary); }

/* ============ FOOTER (Design 13) ============ */
.site-footer{ background:var(--navy); color:#AEB8CC; padding:64px 0 0; }
.footer-cols{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px; padding-bottom:40px; }
.footer-brand .brand{ margin-bottom:14px; }
.footer-logo-chip{
  display:inline-flex; align-items:center; background:#fff; border-radius:8px;
  padding:8px 14px;
}
.footer-brand p{ color:#AEB8CC; font-size:14.5px; max-width:320px; }
.site-footer h4{ color:#fff; font-size:14px; margin-bottom:16px; text-transform:uppercase; letter-spacing:.4px; }
.site-footer a{ color:#AEB8CC; text-decoration:none; font-size:14.5px; display:block; margin-bottom:12px; transition:color .15s ease; }
.site-footer a:hover{ color:#fff; }
.footer-bottom{
  margin-top:0; padding:22px 0; border-top:1px solid rgba(255,255,255,.1);
  font-size:13px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

/* ============ DECORATIVE BLOBS ============ */
.decor-blob{
  position:absolute; border-radius:50%; background:var(--gradient);
  opacity:.07; z-index:0; pointer-events:none;
}
.section-decorated{ position:relative; overflow:hidden; }
.section-decorated > .container{ position:relative; z-index:1; }

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.25); z-index:200; text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); box-shadow:0 14px 32px rgba(0,0,0,.32); }

/* ============ LEGAL / PROSE PAGES ============ */
.legal-hero{ background:var(--light-blue); padding:64px 0; }
.legal-hero .container{ max-width:760px; }
.legal-hero p{ margin-top:8px; }
.prose{ max-width:760px; margin:0 auto; }
.prose h2{ font-size:24px; margin-top:44px; margin-bottom:14px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size:18px; margin-top:26px; margin-bottom:10px; }
.prose p{ font-size:15.5px; margin-bottom:16px; }
.prose ul{ list-style:disc; padding-left:22px; margin:0 0 16px; }
.prose li{ font-size:15.5px; color:var(--muted); padding:4px 0; }
.prose a{ color:var(--primary); text-decoration:underline; }
.prose strong{ color:var(--navy); }

/* ============ 404 PAGE ============ */
.error-page{ min-height:70vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:80px 24px; }
.error-page .code{ font-size:clamp(72px,14vw,140px); font-weight:800; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; }
.error-page h1{ font-size:28px; margin-top:8px; }
.error-page p{ max-width:440px; margin-left:auto; margin-right:auto; }
.error-page .cta-row{ display:flex; gap:14px; justify-content:center; margin-top:24px; flex-wrap:wrap; }

/* ============ RESPONSIVE ============ */
@media(max-width:960px){
  .grid3{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .footer-cols{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  h2{ font-size:32px; }
}
@media(max-width:1080px){
  .main-nav{
    position:fixed; top:70px; left:0; right:0; background:#fff; flex-direction:column;
    align-items:flex-start; padding:20px 24px; gap:6px; border-bottom:1px solid var(--border);
    box-shadow:var(--shadow-soft); transform:translateY(-130%); transition:transform .25s ease; z-index:99;
  }
  .main-nav.open{ transform:translateY(0); }
  .main-nav a{ padding:10px 0; width:100%; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-whatsapp.btn-sm{ display:none; }
}
@media(max-width:768px){
  section{ padding:64px 0; }
  .grid3{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .media-grid{ grid-template-columns:1fr 1fr; }
  .footer-cols{ grid-template-columns:1fr 1fr; }
  .about-grid{ flex-direction:column; }
  .hero{ padding:56px 24px; }
  .hero .hero-flex{ flex-direction:column; }
  .hero-visual{ width:100%; margin-top:32px; }
  .float-badge{ display:none; }
  .form-row.two{ flex-direction:column; }
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
}
@media(max-width:400px){
  .hero h1{ font-size:clamp(22px,7vw,30px); }
}
