/* ============================================================
   BILLION CREATORS — DESIGN TOKENS
   ============================================================ */
:root{
  --bg: #050505;
  --bg-alt: #0a0a0b;
  --bg-raise: #101011;

  --orange: #FF6A00;
  --orange-2: #FFA24C;
  --orange-dim: rgba(255,106,0,.35);
  --orange-glow: rgba(255,106,0,.18);

  --surface: rgba(255,255,255,.035);
  --surface-2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.09);
  --border-hi: rgba(255,255,255,.18);

  --text: #F6F5F1;
  --text-dim: #A6A5A0;
  --text-faint: #68675F;

  --display: "Space Grotesk", "Inter", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;

  --ease: cubic-bezier(.16,.84,.44,1);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
}

*{ margin: 0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  cursor: default;
}

/* prevent any wide element (image, table, iframe) from forcing horizontal scroll on mobile */
img, video, iframe, svg, table{ max-width:100%; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count:1 !important; transition-duration: .001ms !important; }
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{ font-family: var(--display); font-weight:600; letter-spacing:-.02em; line-height:1.05; }

.eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:16px; height:1px;
  background: var(--orange);
  display:inline-block;
}

/* grain overlay for texture */
.grain{
  position:fixed; inset:0; z-index:2000; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px;
  border-radius:50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events:none; z-index:5;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: opacity .3s ease;
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding: 12px 0;
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  max-width:1240px; margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:34px; height:34px; border-radius:9px;
  background: linear-gradient(135deg, var(--orange), #C24800);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--display); font-weight:700; font-size:13px; color:#050505;
  box-shadow: 0 0 24px var(--orange-dim);
}
.brand-name{ font-family: var(--display); font-weight:600; font-size:16.5px; letter-spacing:-.01em; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:14px; color: var(--text-dim); position:relative; padding:4px 0;
  transition: color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background: var(--orange); transition: width .3s var(--ease);
}
.nav-links a:hover{ color: var(--text); }
.nav-links a:hover::after{ width:100%; }

.btn{
  font-family: var(--body); font-weight:600; font-size:14px;
  border-radius: 999px; border:none; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 26px;
  position:relative; overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, border-color .3s ease;
}
.btn span{ position:relative; z-index:2; }
.btn-nav{
  background: var(--surface-2); border:1px solid var(--border);
  padding: 10px 20px; font-size:13.5px;
  color: var(--text);
}
.btn-nav:hover{ border-color: var(--orange-dim); background: rgba(255,106,0,.08); }

.btn-primary{
  background: linear-gradient(135deg, var(--orange), #E85D00);
  color: #050505;
  box-shadow: 0 8px 30px -6px var(--orange-dim);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px -6px rgba(255,106,0,.55); }

.btn-ghost{
  background: var(--surface); color: var(--text); border:1px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--border-hi); background: var(--surface-2); transform: translateY(-2px); }

.btn.full{ width:100%; }

.nav-burger{
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  background:none; border:none; cursor:pointer; width:44px; height:44px; padding:0; border-radius:10px;
}
.nav-burger span{ width:22px; height:1.5px; background: var(--text); border-radius:2px; }

/* visible keyboard focus across interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
summary:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.mobile-menu{
  position:fixed; top:0; right:-100%; width:78%; max-width:340px; height:100vh; z-index:1100;
  background: rgba(8,8,9,.92); backdrop-filter: blur(20px);
  border-left:1px solid var(--border);
  display:flex; flex-direction:column; gap:6px; padding: 100px 32px;
  transition: right .5s var(--ease);
}
.mobile-menu.open{ right:0; }
.mobile-menu a{ font-family: var(--display); font-size:22px; padding:14px 0; border-bottom:1px solid var(--border); color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative; min-height:100vh; display:flex; align-items:center; justify-content:center;
  overflow:hidden; padding-top:100px;
}
#scene{
  position:absolute; inset:0; width:100%; height:100%; z-index:1;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }

.streak{
  position:absolute; height:1px; width:60%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity:.35; filter: blur(.5px);
  animation: drift 14s linear infinite;
}
.streak-1{ top:22%; left:-20%; animation-duration:16s; }
.streak-2{ top:58%; left:-40%; width:80%; opacity:.2; animation-duration:22s; animation-delay:-4s; }
.streak-3{ top:78%; left:-10%; width:40%; opacity:.25; animation-duration:19s; animation-delay:-9s; }
@keyframes drift{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(160vw); }
}

.mesh{
  position:absolute; inset:-20%;
  background:
    radial-gradient(ellipse 40% 30% at 20% 20%, var(--orange-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(255,106,0,.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,140,60,.08), transparent 70%);
  animation: meshMove 26s ease-in-out infinite alternate;
}
@keyframes meshMove{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-3%, 2%) scale(1.06); }
}
.fog{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 0%, rgba(5,5,5,.2) 60%, var(--bg) 100%);
}

.hero-inner{
  position:relative; z-index:3; text-align:center; max-width:900px; padding:0 24px;
}
.hero-title{
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-family: var(--display);
  letter-spacing:-.03em;
}
.reveal-line{ display:block; overflow:hidden; }
.reveal-word{
  display:inline-block; transform: translateY(110%);
  animation: wordUp .9s var(--ease) forwards;
}
.reveal-line:nth-child(1) .reveal-word:nth-child(1){ animation-delay:.15s; }
.reveal-line:nth-child(1) .reveal-word:nth-child(2){ animation-delay:.22s; }
.reveal-line:nth-child(1) .reveal-word:nth-child(3){ animation-delay:.29s; }
.hero-title .reveal-line:nth-child(2) .reveal-word:nth-child(1){ animation-delay:.38s; }
.hero-title .reveal-line:nth-child(2) .reveal-word:nth-child(2){ animation-delay:.45s; }
.hero-title .reveal-line:nth-child(2) .reveal-word:nth-child(3){ animation-delay:.52s; }
@keyframes wordUp{ to{ transform: translateY(0); } }

.grad{
  background: linear-gradient(120deg, var(--orange-2), var(--orange) 60%, #FFD8B0);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.hero-sub{
  margin: 30px auto 0; max-width:560px; color: var(--text-dim); font-size:17px;
  opacity:0; animation: fadeIn 1s var(--ease) forwards; animation-delay:.7s;
}
.hero-actions{
  margin-top: 40px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation: fadeIn 1s var(--ease) forwards; animation-delay:.85s;
}
@keyframes fadeIn{ from{ opacity:0; transform: translateY(14px);} to{ opacity:1; transform:none; } }

.scroll-cue{
  position:absolute; bottom:36px; left:50%; transform: translateX(-50%);
  z-index:3; display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--text-faint); font-family: var(--mono); font-size:11px; letter-spacing:.14em;
}
.scroll-line{ width:1px; height:38px; background: var(--border); overflow:hidden; position:relative; }
.scroll-line i{
  position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown{ 0%{ top:-100%; } 100%{ top:100%; } }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section{ position:relative; padding: 140px 0; }
.section-head{ max-width:640px; margin-bottom:64px; }
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.9rem); }

.fade-up{ opacity:0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in{ opacity:1; transform:none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:start; margin-bottom:64px; }
.about-lead{ font-size:20px; color: var(--text-dim); line-height:1.7; }
.pillar-grid{ display:grid; gap:18px; }
.pillar{
  padding:26px 28px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--border);
}
.pillar-index{
  font-family: var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--orange-2); display:block; margin-bottom:10px;
}
.pillar p{ font-size:15.5px; color: var(--text-dim); }

.value-strip{
  display:flex; flex-wrap:wrap; gap:12px; padding: 28px 0; margin-bottom:64px;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.value-strip li{
  font-family: var(--mono); font-size:13px; letter-spacing:.04em;
  padding:9px 18px; border-radius:999px; border:1px solid var(--border); color: var(--text-dim);
}

.why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.why-card{
  padding:30px 26px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.why-card:hover{ border-color: var(--orange-dim); background: var(--surface-2); }
.why-card h3{ font-size:17px; font-weight:600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.service-card{
  padding:32px 26px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--border);
  transition: transform .45s var(--ease), border-color .4s ease, box-shadow .45s ease;
  transform-style: preserve-3d;
}
.service-card:hover{ border-color: var(--orange-dim); box-shadow: 0 20px 50px -20px rgba(255,106,0,.25); }
.service-no{
  font-family: var(--mono); color: var(--orange); font-size:13px; opacity:.7;
  display:block; margin-bottom:20px;
}
.service-icon{ font-size:1.8rem; display:block; margin-bottom:14px; color: var(--orange-2); }
.service-card h3{ font-size:18px; margin-bottom:10px; }
.service-card p{ font-size:14px; color: var(--text-dim); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio{ background: var(--bg-alt); }
.portfolio-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap:16px; margin-bottom:80px;
}
.portfolio-card{
  position:relative; border-radius: var(--r-lg); overflow:hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border:1px solid var(--border);
  display:flex; flex-direction:column; justify-content:flex-end; padding:24px;
  transition: transform .5s var(--ease), border-color .4s ease;
}
.portfolio-card.large{ grid-column: span 2; grid-row: span 2; }
.portfolio-card:hover{ border-color: var(--orange-dim); transform: translateY(-6px); }
.portfolio-glow{
  position:absolute; width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  top:-60px; right:-60px; pointer-events:none;
}
.portfolio-card .tag{
  font-family: var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em;
  color: var(--orange-2); margin-bottom:8px;
}
.portfolio-card h3{ font-size:16px; position:relative; z-index:2; }

.counters{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:18px;
  padding: 48px 0 0; border-top:1px solid var(--border);
}
.counter{ text-align:center; }
.counter-num{ font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--orange-2); font-weight:700; }
.counter-plus{ font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--orange-2); }
.counter p{ color: var(--text-dim); font-size:14px; margin-top:6px; font-family: var(--mono); letter-spacing:.06em; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; align-items:stretch; }
.price-card{
  position:relative; padding:40px 32px; border-radius: var(--r-lg);
  background: var(--surface); border:1px solid var(--border);
  display:flex; flex-direction:column;
  transition: transform .45s var(--ease), border-color .4s ease;
}
.price-card:hover{ transform: translateY(-6px); }
.price-card.featured{
  background: linear-gradient(165deg, rgba(255,106,0,.12), var(--surface) 60%);
  border-color: var(--orange-dim);
  box-shadow: 0 30px 70px -30px rgba(255,106,0,.3);
}
.price-badge{
  position:absolute; top:-13px; left:32px;
  background: linear-gradient(135deg, var(--orange), #E85D00); color:#050505;
  font-family: var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px;
}
.price-card h3{ font-size:20px; margin-bottom:10px; }
.price-desc{ color: var(--text-dim); font-size:14px; margin-bottom:26px; min-height:42px; }
.price{ font-family: var(--display); font-size:clamp(2rem, 7vw, 2.6rem); font-weight:700; margin-bottom:28px; }
.currency{ font-size:1.4rem; vertical-align:top; opacity:.7; }
.period{ font-size:1rem; color: var(--text-dim); font-weight:400; }
.price-card ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:32px; flex:1; }
.price-card ul li{
  font-size:14px; color: var(--text-dim); padding-left:24px; position:relative;
}
.price-card ul li::before{
  content:"\f00c"; font-family:"Font Awesome 6 Free"; font-weight:900;
  position:absolute; left:0; top:1px; color: var(--orange); font-size:12px;
}
.price-custom{ font-family: var(--display); font-size:2rem; font-weight:700; }
.pricing-note{ color: var(--text-faint); font-size:13px; margin-top:24px; font-family: var(--mono); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ background: var(--bg-alt); }
.testimonial-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.testimonial-card{
  padding:32px 28px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s ease;
}
.testimonial-card:hover{ border-color: var(--orange-dim); transform: translateY(-4px); }
.testimonial-card p{ font-size:15.5px; color: var(--text); line-height:1.7; margin-bottom:22px; }
.testimonial-card footer{ display:flex; flex-direction:column; gap:2px; }
.t-name{ font-family: var(--display); font-size:14px; font-weight:600; }
.t-role{ font-family: var(--mono); font-size:12px; color: var(--orange-2); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.blog-card{
  padding:30px 26px; border-radius: var(--r-md);
  background: var(--surface); border:1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s ease;
}
.blog-card:hover{ border-color: var(--orange-dim); transform: translateY(-4px); }
.blog-tag{
  font-family: var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--orange-2); display:block; margin-bottom:16px;
}
.blog-card h3{ font-size:17px; margin-bottom:10px; line-height:1.4; }
.blog-card p{ font-size:14px; color: var(--text-dim); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:70px; }
.contact-lead{ color: var(--text-dim); margin:22px 0 34px; font-size:16px; max-width:420px; }
.contact-details{ display:flex; flex-direction:column; gap:16px; margin-bottom:34px; }
.contact-details li{ display:flex; gap:16px; align-items:baseline; padding-bottom:14px; border-bottom:1px solid var(--border); }
.contact-details span{ font-family: var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--text-faint); width:70px; flex-shrink:0; }
.contact-details a{ font-size:15px; }
.contact-details a:hover{ color: var(--orange-2); }
.social-links{ display:flex; gap:22px; flex-wrap:wrap; }
.social-links a{ font-size:13px; color: var(--text-dim); font-family: var(--mono); display:inline-flex; align-items:center; gap:7px; }
.social-links a i{ color: var(--orange-2); font-size:14px; }
.social-links a:hover{ color: var(--orange-2); }

.map-placeholder-spaced{ margin-top:34px; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: whatsappPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px -6px rgba(37,211,102,.65), 0 0 0 1px rgba(255,255,255,.1);
}
.whatsapp-float:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
@keyframes whatsappPulse{
  0%, 100%{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45); }
  50%{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ animation: none; }
}
@media (max-width: 560px){
  .whatsapp-float{
    width: 52px; height: 52px; font-size: 25px;
    right: 16px; bottom: 16px;
  }
}
.mobile-menu.open ~ .whatsapp-float{ opacity:0; pointer-events:none; }

.contact-form{
  padding:36px; border-radius: var(--r-lg);
  background: var(--surface); border:1px solid var(--border);
  display:flex; flex-direction:column; gap:20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-family: var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: var(--text-faint); }
.field input, .field select, .field textarea{
  background: rgba(255,255,255,.03); border:1px solid var(--border); border-radius:10px;
  padding:13px 16px; color: var(--text); font-family: var(--body); font-size:14.5px;
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--orange); background: rgba(255,106,0,.05);
}
.field textarea{ resize:vertical; }
.field select{ appearance:none; cursor:pointer; }
.form-note{ font-size:13px; color: var(--orange-2); min-height:16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ border-top:1px solid var(--border); padding: 80px 0 30px; background: var(--bg); }
.footer-inner{ display:grid; grid-template-columns: 1.2fr 2fr; gap:60px; margin-bottom:60px; }
.footer-brand{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.footer-brand p{ color: var(--text-dim); font-size:14px; max-width:280px; }
.footer-cols{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.footer-col{ display:flex; flex-direction:column; gap:14px; }
.footer-col h4{ font-family: var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--text-faint); margin-bottom:4px; }
.footer-col a{ font-size:14px; color: var(--text-dim); overflow-wrap: anywhere; }
.footer-col a:hover{ color: var(--orange-2); }
.footer-bottom{
  display:flex; justify-content:space-between; padding-top:26px; border-top:1px solid var(--border);
  font-size:12.5px; color: var(--text-faint); font-family: var(--mono);
}

/* ============================================================
   CONTENT PAGE UTILITIES (About / CTA sections)
   ============================================================ */
.section-tight-top{ padding-top:0; }

.pillar-grid-2{ grid-template-columns: repeat(2,1fr); gap:22px; }
.pillar-text{ font-size:16.5px; color: var(--text-dim); }

.cta-section{ padding-top:100px; padding-bottom:100px; }
.cta-container{ text-align:center; }
.cta-head{ margin:0 auto 40px; }
.cta-eyebrow{ justify-content:center; }
.cta-lead{ color: var(--text-dim); margin-top:16px; }
.cta-actions{ margin-bottom:44px; }

@media (max-width: 980px){
  .cta-section{ padding-top:80px; padding-bottom:80px; }
}
@media (max-width: 768px){
  .pillar-grid-2{ gap:16px; }
}
@media (max-width: 640px){
  .pillar-grid-2{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .cta-section{ padding-top:64px; padding-bottom:64px; }
  .cta-head{ margin-bottom:28px; }
  .cta-actions{ margin-bottom:32px; flex-direction:column; align-items:stretch; }
  .cta-actions .btn{ width:100%; }
  .pillar{ padding:22px 22px; }
}
@media (max-width: 400px){
  .cta-section{ padding-top:52px; padding-bottom:52px; }
}

/* ============================================================
   MAGNETIC / TILT helpers (JS-driven transforms use these vars)
   ============================================================ */
.magnetic{ will-change: transform; }
[data-tilt]{ will-change: transform; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #050505;
  display:flex; align-items:center; justify-content:center;
  font-size: 28px;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.5);
  z-index: 1500;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px -6px rgba(37,211,102,.65); }
.whatsapp-float i{ line-height:1; }

@keyframes waPulse{
  0%{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45); }
  70%{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ animation: none; }
}

@media (max-width: 560px){
  .whatsapp-float{
    width: 52px; height:52px; font-size:24px;
    right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---- Tablet / small laptop ---- */
@media (max-width: 980px){
  .nav-links, .btn-nav{ display:none; }
  .nav-burger{ display:flex; }
  .container{ padding: 0 24px; }
  .nav-inner{ padding: 0 24px; }

  .about-grid{ grid-template-columns: 1fr; gap:40px; }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .portfolio-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .portfolio-card.large{ grid-column: span 2; grid-row: span 1; }
  .counters{ grid-template-columns: repeat(2,1fr); row-gap:32px; }
  .pricing-grid{ grid-template-columns: repeat(2,1fr); }
  .price-card.featured{ grid-column: span 2; }
  .testimonial-grid, .blog-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; gap:48px; }
  .footer-inner{ grid-template-columns: 1fr; gap:40px; }
  .footer-cols{ grid-template-columns: repeat(3,1fr); }
}

/* ---- Large phone / small tablet ---- */
@media (max-width: 768px){
  .section{ padding: 100px 0; }
  .section-head{ margin-bottom:44px; }
  .hero{ padding-top:90px; }
  .hero-title{ letter-spacing:-.02em; }
  .about-lead{ font-size:17px; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ grid-column: span 1; }
  .testimonial-grid, .blog-grid{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: repeat(2,1fr); gap:28px 20px; }
  .numbered-section{ padding: 54px 0; }
}

/* ---- Phone ---- */
@media (max-width: 560px){
  .container{ padding: 0 20px; }
  .nav-inner{ padding: 0 20px; }
  .section{ padding: 76px 0; }
  .section-head{ margin-bottom:36px; }

  .brand-name{ font-size:15px; }
  .brand-mark{ width:30px; height:30px; }

  .hero{ min-height:92vh; padding-top:96px; }
  .hero-sub{ font-size:15.5px; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }

  .why-grid, .services-grid{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio-card.large{ grid-column: span 1; grid-row: span 1; }
  .counters{ grid-template-columns: repeat(2,1fr); gap:24px; }

  .price-card{ padding:32px 24px; }
  .contact-form{ padding:26px 22px; }
  .form-row{ grid-template-columns: 1fr; }

  .footer{ padding: 60px 0 24px; }
  .footer-cols{ grid-template-columns: 1fr; gap:26px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:8px; }
  .cursor-glow{ display:none; }
}

/* ---- Small phone ---- */
@media (max-width: 400px){
  .container{ padding: 0 16px; }
  .nav-inner{ padding: 0 16px; }
  .section{ padding: 64px 0; }
  .counters{ grid-template-columns: 1fr; gap:22px; }
  .stat-strip .stat{ min-width:100%; }
  .value-strip{ gap:8px; }
  .value-strip li{ padding:7px 14px; font-size:12px; }
  .mobile-menu{ width:86%; padding: 90px 24px; }
  .quote-block{ padding:28px 22px; }
  .quote-block p{ font-size:1.1rem; }
}

/* ============================================================
   INNER PAGE HERO (shorter, for non-home pages)
   ============================================================ */
.hero.hero-inner-page{ min-height:64vh; padding-top:130px; }
.hero.hero-inner-page .hero-title{ font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.hero-inner-page .hero-sub{ margin-top:22px; }
.breadcrumb{
  font-family: var(--mono); font-size:12px; color: var(--text-faint);
  display:flex; gap:8px; justify-content:center; margin-bottom:18px;
}
.breadcrumb a{ color: var(--text-dim); }
.breadcrumb a:hover{ color: var(--orange-2); }

/* ============================================================
   NAV — SERVICES DROPDOWN
   ============================================================ */
.nav-item-dropdown{ position:relative; }
.nav-item-dropdown > a{ display:flex; align-items:center; gap:6px; }
.nav-item-dropdown > a::before{ display:none; }
.caret{ width:8px; height:8px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .3s ease; }
.nav-item-dropdown:hover .caret{ transform: rotate(225deg) translateY(2px); }
.dropdown-panel{
  position:absolute; top: calc(100% + 18px); left:50%; transform: translateX(-50%) translateY(6px);
  width: 560px; max-width: min(560px, calc(100vw - 48px)); padding: 20px; border-radius: var(--r-md);
  background: rgba(10,10,11,.92); backdrop-filter: blur(20px);
  border:1px solid var(--border);
  display:grid; grid-template-columns: repeat(2, 1fr); gap:4px;
  max-height: calc(100vh - 140px); overflow-y: auto;
  opacity:0; pointer-events:none; transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.nav-item-dropdown:hover .dropdown-panel{ opacity:1; pointer-events:auto; transform: translateX(-50%) translateY(0); }
.dropdown-panel a{
  display:flex; flex-direction:column; gap:3px; padding:12px 14px; border-radius:10px;
  color: var(--text-dim); font-size:13.5px; transition: background .25s ease, color .25s ease;
}
.dropdown-panel a:hover{ background: var(--surface-2); color: var(--text); }
.dropdown-panel a span.d-desc{ font-size:11.5px; color: var(--text-faint); }
.dropdown-panel a:hover span.d-desc{ color: var(--orange-2); }

.mobile-services-toggle{ display:flex; align-items:center; justify-content:space-between; width:100%; background:none; border:none; cursor:pointer; }
.mobile-submenu{ max-height:0; overflow:hidden; transition: max-height .4s ease; padding-left:14px; }
.mobile-submenu.open{ max-height:600px; }
.mobile-submenu a{ font-size:16px !important; border-bottom:none !important; padding:10px 0 !important; color: var(--text-dim) !important; }
.mobile-submenu a i{ width:20px; display:inline-block; text-align:center; margin-right:6px; color: var(--orange-2); }

/* ============================================================
   NUMBERED SECTION (service detail pages)
   ============================================================ */
.numbered-section{
  display:grid; grid-template-columns: 1fr .8fr; gap:56px; align-items:start;
  padding: 70px 0; border-top:1px solid var(--border);
}
.numbered-section:first-of-type{ border-top:none; }
.numbered-section .eyebrow{ margin-bottom:16px; }
.numbered-section h2{ font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom:22px; }
.numbered-section .hl{ color: var(--orange-2); }
.numbered-section .body-text p{ color: var(--text-dim); font-size:15.5px; margin-bottom:16px; max-width:520px; }
.numbered-section .body-text p:last-child{ margin-bottom:0; }

.accent-list{ display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.accent-list li{
  list-style:none; border-left:2px solid var(--orange); background: var(--surface);
  padding:14px 18px; border-radius:0 10px 10px 0; font-size:14.5px; color: var(--text-dim);
}
.accent-list li strong{ color: var(--text); }

.check-list{ display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.check-list li{ list-style:none; padding-left:24px; position:relative; font-size:14.5px; color: var(--text-dim); }
.check-list li::before{ content:"✦"; position:absolute; left:0; color: var(--orange); font-size:12px; top:2px; }

.highlight-card{
  padding:36px 28px; border-radius: var(--r-md); text-align:center;
  /* background: linear-gradient(160deg, var(--surface-2), var(--surface)); */
  /* border:1px solid var(--border);
   position:sticky; top:120px; */
}
.highlight-card .h-icon{ font-size:2.4rem; margin-bottom:16px; display:block; }
.highlight-card h4{ font-size:15px; margin-bottom:10px; }
.highlight-card p{ font-size:13px; color: var(--text-dim); }

.tag-chip-grid{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.tag-chip{ font-family: var(--mono); font-size:12.5px; padding:9px 16px; border-radius:999px; border:1px solid var(--border); color: var(--text-dim); background: var(--surface); display:inline-flex; align-items:center; gap:8px; }
.tag-chip i{ color: var(--orange-2); }

.two-col-list{ display:grid; grid-template-columns: repeat(2, 1fr); gap:10px 24px; margin-top:10px; }

/* ============================================================
   PROCESS / WORKFLOW STEPS
   ============================================================ */
.process-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; margin-top:20px; }
.process-step{
  padding:26px 20px; border-radius: var(--r-md); background: var(--surface); border:1px solid var(--border);
  text-align:center; transition: transform .4s var(--ease), border-color .4s ease;
}
.process-step:hover{ border-color: var(--orange-dim); transform: translateY(-4px); }
.process-num{
  width:38px; height:38px; border-radius:50%; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange), #C24800); color:#050505;
  font-family: var(--display); font-weight:700; font-size:14px;
}
.process-step h4{ font-size:14.5px; font-weight:600; }

.process-detail{ display:flex; flex-direction:column; gap:22px; margin-top:10px; }
.process-detail-item{ display:grid; grid-template-columns: 60px 1fr; gap:20px; }
.process-detail-num{
  width:44px; height:44px; border-radius:50%; background: var(--surface-2); border:1px solid var(--orange-dim);
  display:flex; align-items:center; justify-content:center; font-family: var(--display); color: var(--orange-2); font-weight:700;
}
.process-detail-item h4{ font-size:16px; margin-bottom:6px; }
.process-detail-item p{ font-size:14px; color: var(--text-dim); }

/* ============================================================
   FAQ ACCORDION (native <details>)
   ============================================================ */
.faq-list{ display:flex; flex-direction:column; gap:12px; max-width:800px; }
.faq-item{
  border-radius: var(--r-sm); border:1px solid var(--border); background: var(--surface);
  overflow:hidden; transition: border-color .3s ease;
}
.faq-item[open]{ border-color: var(--orange-dim); }
.faq-item summary{
  padding:20px 24px; cursor:pointer; list-style:none; font-family: var(--display); font-size:15.5px; font-weight:600;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:20px; color: var(--orange); flex-shrink:0; transition: transform .3s ease;
  font-family: var(--body); font-weight:400;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item .faq-a{ padding:0 24px 22px; color: var(--text-dim); font-size:14.5px; line-height:1.7; }

/* ============================================================
   SERVICE PAGE HERO STAT STRIP
   ============================================================ */
.stat-strip{ display:flex; flex-wrap:wrap; gap:0; justify-content:center; margin-top:48px; padding-top:34px; border-top:1px solid var(--border); }
.stat-strip .stat{ flex:1; min-width:140px; text-align:center; padding:0 20px; }
.stat-strip .stat b{ display:block; font-family: var(--display); font-size:1.8rem; color: var(--orange-2); }
.stat-strip .stat span{ font-family: var(--mono); font-size:11.5px; color: var(--text-faint); text-transform:uppercase; letter-spacing:.06em; overflow-wrap: anywhere; }

/* ============================================================
   BEFORE / AFTER CASE STUDY
   ============================================================ */
.before-after{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ba-card{ padding:30px; border-radius: var(--r-md); border:1px solid var(--border); text-align:center; }
.ba-card.before{ background: var(--surface); }
.ba-card.after{ background: linear-gradient(160deg, rgba(255,106,0,.1), var(--surface)); border-color: var(--orange-dim); }
.ba-card h4{ font-family: var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--text-faint); margin-bottom:14px; }
.ba-card.after h4{ color: var(--orange-2); }
.ba-card p{ font-size:14px; color: var(--text-dim); }

/* ============================================================
   QUOTE / ENDORSEMENT BLOCK
   ============================================================ */
.quote-block{
  padding:40px; border-radius: var(--r-lg); background: linear-gradient(160deg, rgba(255,106,0,.08), var(--surface));
  border:1px solid var(--orange-dim); text-align:center; max-width:760px; margin:0 auto;
}
.quote-block p{ font-family: var(--display); font-size:1.3rem; line-height:1.5; margin-bottom:20px; }
.quote-block footer{ font-family: var(--mono); font-size:12px; color: var(--orange-2); text-transform:uppercase; letter-spacing:.06em; }

/* ============================================================
   CONTACT PAGE — MAP PLACEHOLDER
   ============================================================ */
.map-placeholder{
  border-radius: var(--r-lg); border:1px solid var(--border); background: var(--surface);
  min-height:280px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color: var(--text-faint); font-family: var(--mono); font-size:12.5px; text-align:center; padding:24px;
}
.map-placeholder .pin{ font-size:2rem; }

/* ============================================================
   PREVIEW "VIEW ALL" LINK
   ============================================================ */
.view-all{
  display:inline-flex; align-items:center; gap:8px; margin-top:34px;
  font-family: var(--mono); font-size:13px; color: var(--orange-2);
}
.view-all::after{ content:"→"; transition: transform .3s ease; }
.view-all:hover::after{ transform: translateX(4px); }

/* ============================================================
   SERVICE CARD "LEARN MORE"
   ============================================================ */
.service-card .learn-more{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-family: var(--mono); font-size:12.5px; color: var(--orange-2);
}
.service-card .learn-more::after{ content:"→"; transition: transform .3s ease; }
.service-card:hover .learn-more::after{ transform: translateX(4px); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 980px){
  .numbered-section{ grid-template-columns: 1fr; gap:32px; }
  .highlight-card{ position:static; }
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .before-after{ grid-template-columns: 1fr; }
  .dropdown-panel{ display:none; }
}
@media (max-width: 768px){
  .numbered-section{ padding: 54px 0; }
  .process-detail-item{ grid-template-columns: 44px 1fr; gap:14px; }
}
@media (max-width: 560px){
  .process-grid{ grid-template-columns: 1fr; }
  .two-col-list{ grid-template-columns: 1fr; }
  .stat-strip{ flex-direction:column; gap:20px; }
  .highlight-card{ padding:28px 22px; }
  .accent-list li, .check-list li{ font-size:14px; }
}

.nav-links a.active{ color: var(--orange-2); }
.nav-links a.active::after{ width:100%; }
.logo-img {
    width: 50px;
}
.service-body{
  padding: 20px;
}
