/* =========================================================
   CAMPAIGN PILOT — Digital Marketing & Brand Promotion
   Brand: Jainam Cables India Pvt. Ltd.
   ========================================================= */

:root{
  /* Brand palette */
  --maroon-900:#3C0A19;
  --maroon-800:#5C0F27;
  --maroon-700:#7A1533;
  --wine-600:#9A1F3D;
  --gold-500:#D4AF37;
  --gold-300:#E8C766;
  --gold-100:#F6E7B8;
  --cream-50:#FFF8ED;
  --cream-100:#FBF0DD;
  --ink-900:#211410;
  --ink-700:#3A2620;
  --charcoal:#241A16;
  --line:#E9DCC4;

  --grad-brand: linear-gradient(135deg, var(--maroon-800) 0%, var(--wine-600) 45%, var(--gold-500) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(92,15,39,.08) 0%, rgba(212,175,55,.10) 100%);
  --grad-text: linear-gradient(135deg, var(--maroon-700), var(--gold-500));

  --shadow-sm: 0 4px 14px rgba(60,10,25,.08);
  --shadow-md: 0 14px 34px rgba(60,10,25,.14);
  --shadow-lg: 0 24px 60px rgba(60,10,25,.20);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --font: 'Poppins', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:var(--font); cursor:pointer; }
h1,h2,h3,h4{ margin:0; font-weight:700; color:var(--maroon-900); }
p{ margin:0; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

::selection{ background:var(--gold-300); color:var(--maroon-900); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:2px;
}

/* -------- Utility -------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--wine-600);
  background: var(--grad-brand-soft);
  border:1px solid var(--line);
  padding:7px 16px; border-radius:100px;
}
.section-head{ max-width:640px; margin:0 auto 52px; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,40px); line-height:1.2; margin:14px 0 12px; }
.section-head p{ color:var(--ink-700); font-size:16px; }
.section-pad{ padding:96px 0; }
.text-grad{
  background:var(--grad-text);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border-radius:100px; font-weight:600; font-size:15px;
  border:none; transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--grad-brand); color:var(--cream-50); box-shadow:var(--shadow-md); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn-ghost{ background:transparent; color:var(--maroon-800); border:1.5px solid var(--maroon-800); }
.btn-ghost:hover{ background:var(--maroon-800); color:var(--cream-50); transform:translateY(-3px); }
.btn-light{ background:var(--cream-50); color:var(--maroon-800); }
.btn-light:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn .plane{ transition:transform .3s ease; }
.btn:hover .plane{ transform:translate(3px,-3px) rotate(8deg); }

/* -------- Scroll fade animations -------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }
.reveal-delay-4{ transition-delay:.32s; }
.reveal-delay-5{ transition-delay:.4s; }
.reveal-delay-6{ transition-delay:.48s; }

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

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar{
  background:var(--maroon-900);
  color:var(--cream-100);
  font-size:13.5px;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:9px; padding-bottom:9px; }
.topbar-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.topbar-left a{ display:inline-flex; align-items:center; gap:7px; opacity:.92; transition:opacity .2s; }
.topbar-left a:hover{ opacity:1; color:var(--gold-300); }
.topbar-social{ display:flex; align-items:center; gap:12px; }
.topbar-social a{ width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,248,237,.12); transition:background .25s, transform .25s; }
.topbar-social a:hover{ background:var(--gold-500); transform:translateY(-2px); }
.topbar-social svg{ width:13px; height:13px; fill:#fff; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,248,237,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{ box-shadow:var(--shadow-sm); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:46px; height:46px; border-radius:12px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{ font-size:20px; color:var(--maroon-900); letter-spacing:.01em; }
.brand-text span{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--wine-600); font-weight:600; }

.main-menu{ display:flex; align-items:center; gap:38px; }
.main-menu a{
  position:relative; font-weight:500; font-size:15px; color:var(--ink-900); padding:6px 0;
}
.main-menu a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--grad-brand);
  transition:width .3s ease;
}
.main-menu a:hover::after, .main-menu a.active::after{ width:100%; }
.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-actions .call-us{ display:flex; align-items:center; gap:9px; font-size:14px; font-weight:600; color:var(--maroon-800); }
.nav-actions .call-us svg{ width:18px; height:18px; fill:var(--gold-500); }

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
.hamburger span{ width:26px; height:2.5px; background:var(--maroon-900); border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; overflow:hidden;
  background:var(--grad-brand);
  padding:110px 0 130px;
  color:var(--cream-50);
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(600px 340px at 88% -10%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(500px 300px at 10% 110%, rgba(255,255,255,.10), transparent 60%);
}
.hero-flightpath{ position:absolute; inset:0; width:100%; height:100%; opacity:.5; }
.hero .container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,248,237,.14); border:1px solid rgba(255,248,237,.35);
  color:var(--gold-100); padding:8px 18px; border-radius:100px;
  font-size:13px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
}
.hero h1{
  color:var(--cream-50); font-size:clamp(38px,5.2vw,58px); line-height:1.08;
  margin:22px 0 20px; letter-spacing:-.01em;
}
.hero h1 em{ font-style:normal; color:var(--gold-300); }
.hero p.lead{ font-size:17.5px; color:var(--gold-100); max-width:520px; opacity:.95; margin-bottom:32px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats strong{ font-size:26px; color:var(--gold-300); }
.hero-stats span{ font-size:12.5px; color:var(--gold-100); text-transform:uppercase; letter-spacing:.08em; }

.hero-visual{ position:relative; }
.hero-card{
  background:rgba(255,248,237,.08);
  border:1px solid rgba(255,248,237,.25);
  border-radius:var(--radius-lg);
  padding:30px;
  backdrop-filter:blur(6px);
  position:relative;
}
.hero-card svg{ width:100%; height:auto; }
.hero-badge{
  position:absolute; bottom:-22px; left:-22px;
  background:var(--cream-50); color:var(--maroon-900);
  border-radius:var(--radius-md); padding:16px 20px;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  animation: float 4.5s ease-in-out infinite;
}
.hero-badge .pulse{ width:38px; height:38px; border-radius:50%; background:var(--grad-brand); display:flex; align-items:center; justify-content:center; }
.hero-badge .pulse svg{ width:18px; height:18px; fill:#fff; }
.hero-badge strong{ display:block; font-size:15px; }
.hero-badge span{ font-size:12px; color:var(--ink-700); }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.trust-strip{ background:var(--cream-100); border-bottom:1px solid var(--line); padding:22px 0; overflow:hidden; }
.trust-track{ display:flex; align-items:center; gap:64px; white-space:nowrap; animation: scrollx 26s linear infinite; width:max-content; }
.trust-track span{ font-size:14px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--wine-600); opacity:.8; }
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =========================================================
   ABOUT
   ========================================================= */
.about{ padding:100px 0; }
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
.about-visual{ position:relative; }
.about-visual .frame{
  background:var(--grad-brand); border-radius:var(--radius-lg);
  padding:26px; box-shadow:var(--shadow-lg);
}
.about-visual svg{ width:100%; height:auto; border-radius:var(--radius-md); }
.about-visual .exp-chip{
  position:absolute; top:-20px; right:-20px;
  background:var(--cream-50); border-radius:var(--radius-md); padding:16px 20px;
  box-shadow:var(--shadow-lg); text-align:center;
}
.about-visual .exp-chip strong{ display:block; font-size:26px; color:var(--maroon-800); }
.about-visual .exp-chip span{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--wine-600); }
.about-body h2{ font-size:clamp(28px,4vw,38px); line-height:1.2; margin:14px 0 18px; }
.about-body p{ color:var(--ink-700); margin-bottom:16px; font-size:16px; }
.about-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:26px 0 32px; }
.about-list li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; font-weight:500; }
.about-list svg{ width:20px; height:20px; flex:none; fill:var(--gold-500); }

/* =========================================================
   SERVICES
   ========================================================= */
.services{ padding:100px 0; background:var(--cream-100); }
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.service-card{
  background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:34px 28px; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-icon{
  width:56px; height:56px; border-radius:16px; background:var(--grad-brand);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.service-icon svg{ width:26px; height:26px; fill:#fff; }
.service-card h3{ font-size:19px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; color:var(--ink-700); }
.service-card a.more{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13.5px; font-weight:600; color:var(--wine-600); }

/* =========================================================
   PROCESS (flight path timeline)
   ========================================================= */
.process{ padding:100px 0; }
.process-track{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.process-track::before{
  content:""; position:absolute; top:26px; left:6%; right:6%; height:0;
  border-top:2px dashed var(--gold-500); opacity:.5;
}
.process-step{ position:relative; text-align:center; padding:0 12px; }
.process-num{
  width:52px; height:52px; margin:0 auto 20px; border-radius:50%;
  background:var(--grad-brand); color:#fff; font-weight:700; font-size:18px;
  display:flex; align-items:center; justify-content:center; position:relative; z-index:2;
  box-shadow:var(--shadow-md);
}
.process-step h3{ font-size:16.5px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--ink-700); }

/* =========================================================
   WHY US
   ========================================================= */
.why{ padding:100px 0; background:var(--maroon-900); color:var(--cream-50); position:relative; overflow:hidden; }
.why::after{ content:""; position:absolute; inset:0; background:radial-gradient(600px 300px at 90% 0%, rgba(212,175,55,.18), transparent 60%); }
.why .container{ position:relative; z-index:2; }
.why .section-head h2{ color:var(--cream-50); }
.why .section-head p{ color:var(--gold-100); }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.why-card{ background:rgba(255,248,237,.06); border:1px solid rgba(255,248,237,.16); border-radius:var(--radius-md); padding:30px 24px; }
.why-card .service-icon{ background:rgba(212,175,55,.18); }
.why-card .service-icon svg{ fill:var(--gold-300); }
.why-card h3{ color:var(--cream-50); font-size:17px; margin-bottom:8px; }
.why-card p{ color:var(--gold-100); font-size:13.5px; opacity:.9; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{ padding:100px 0; background:var(--cream-100); }
.carousel{ position:relative; max-width:820px; margin:0 auto; }
.carousel-track-wrap{ overflow:hidden; border-radius:var(--radius-lg); }
.carousel-track{ display:flex; transition:transform .55s cubic-bezier(.65,0,.35,1); }
.t-slide{ flex:0 0 100%; padding:6px; }
.t-card{
  background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:44px 40px; text-align:center; box-shadow:var(--shadow-sm);
}
.t-quote{ width:36px; height:36px; fill:var(--gold-500); margin:0 auto 18px; }
.t-text{ font-size:17px; color:var(--ink-800); line-height:1.7; margin-bottom:26px; }
.t-stars{ display:flex; justify-content:center; gap:4px; margin-bottom:18px; }
.t-stars svg{ width:16px; height:16px; fill:var(--gold-500); }
.t-person{ display:flex; align-items:center; justify-content:center; gap:12px; }
.t-avatar{ width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:16px; background:var(--grad-brand); }
.t-name{ text-align:left; }
.t-name strong{ display:block; font-size:15px; }
.t-name span{ font-size:12.5px; color:var(--wine-600); }

.carousel-controls{ display:flex; align-items:center; justify-content:center; gap:22px; margin-top:30px; }
.car-btn{
  width:46px; height:46px; border-radius:50%; background:var(--cream-50); border:1.5px solid var(--maroon-800);
  display:flex; align-items:center; justify-content:center; transition:.25s;
}
.car-btn:hover{ background:var(--grad-brand); border-color:transparent; }
.car-btn svg{ width:18px; height:18px; fill:var(--maroon-800); transition:.25s; }
.car-btn:hover svg{ fill:#fff; }
.car-dots{ display:flex; gap:9px; }
.car-dots button{ width:9px; height:9px; border-radius:50%; background:var(--line); border:none; padding:0; transition:.25s; }
.car-dots button.active{ width:26px; border-radius:6px; background:var(--grad-brand); }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ padding:100px 0; }
.faq-wrap{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius-md); background:var(--cream-50); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 26px; background:none; border:none; text-align:left;
  font-size:16px; font-weight:600; color:var(--maroon-900);
}
.faq-q .plus{
  flex:none; width:30px; height:30px; border-radius:50%; background:var(--grad-brand-soft);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background:var(--wine-600); border-radius:2px; transition:.3s; }
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .faq-q .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-item.open .faq-q{ color:var(--wine-600); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a-inner{ padding:0 26px 24px; color:var(--ink-700); font-size:14.5px; line-height:1.75; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  margin:0 auto; max-width:var(--container);
  background:var(--grad-brand); border-radius:var(--radius-lg);
  padding:56px 60px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  color:var(--cream-50); position:relative; overflow:hidden;
}
.cta-banner::before{ content:""; position:absolute; inset:0; background:radial-gradient(400px 200px at 90% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-banner > *{ position:relative; z-index:2; }
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,32px); max-width:520px; }
.cta-banner p{ color:var(--gold-100); margin-top:8px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ padding:100px 0; background:var(--cream-100); }
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:50px; }
.contact-info{ display:flex; flex-direction:column; gap:20px; }
.info-card{
  background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:24px; display:flex; gap:16px; align-items:flex-start;
}
.info-card .service-icon{ width:46px; height:46px; border-radius:12px; margin-bottom:0; flex:none; }
.info-card .service-icon svg{ width:20px; height:20px; }
.info-card h3{ font-size:15.5px; margin-bottom:6px; }
.info-card p, .info-card a{ font-size:14px; color:var(--ink-700); }
.map-embed{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line); margin-top:6px; }
.map-embed iframe{ width:100%; height:220px; border:0; display:block; }

.contact-form{ background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-lg); padding:36px; }
.contact-form h3{ font-size:22px; margin-bottom:6px; }
.contact-form > p{ color:var(--ink-700); font-size:14px; margin-bottom:24px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{ display:flex; flex-direction:column; gap:7px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-size:13px; font-weight:600; color:var(--ink-900); }
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid var(--line); border-radius:10px; padding:12px 14px; font-family:var(--font); font-size:14px;
  background:#fff; color:var(--ink-900); transition:border-color .25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--gold-500); outline:none; }
.contact-form button{ width:100%; justify-content:center; margin-top:6px; }

/* =========================================================
   SOCIAL BAND
   ========================================================= */
.social-band{
  background:var(--grad-brand); padding:52px 0; text-align:center; color:var(--cream-50);
}
.social-band h3{ color:#fff; font-size:22px; margin-bottom:6px; }
.social-band p{ color:var(--gold-100); font-size:14px; margin-bottom:26px; }
.social-icons{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.social-icons a{
  width:50px; height:50px; border-radius:50%; background:rgba(255,248,237,.14);
  border:1.5px solid rgba(255,248,237,.4);
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.social-icons a:hover{ background:var(--cream-50); transform:translateY(-4px); }
.social-icons svg{ width:20px; height:20px; fill:#fff; transition:.3s; }
.social-icons a:hover svg{ fill:var(--maroon-800); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink-900); color:var(--gold-100); padding:76px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.3fr .8fr .8fr 1.1fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,248,237,.12); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:42px; height:42px; border-radius:10px; }
.footer-brand strong{ color:#fff; font-size:19px; }
.footer-col p{ font-size:14px; color:var(--gold-100); opacity:.85; line-height:1.75; }
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:18px; letter-spacing:.03em; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color:var(--gold-100); opacity:.85; transition:.2s; }
.footer-col a:hover{ opacity:1; color:var(--gold-300); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; }
.footer-contact svg{ width:16px; height:16px; fill:var(--gold-500); flex:none; margin-top:3px; }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; padding:26px 0; font-size:13px; color:var(--gold-100); opacity:.75; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ opacity:1; color:var(--gold-300); }
.footer-legal{ display:flex; gap:20px; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.whatsapp-fab{
  position:fixed; left:22px; bottom:24px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; box-shadow:0 10px 26px rgba(37,211,102,.45);
  display:flex; align-items:center; justify-content:center;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab svg{ width:28px; height:28px; fill:#fff; }
@keyframes wa-pulse{ 0%,100%{ box-shadow:0 10px 26px rgba(37,211,102,.45);} 50%{ box-shadow:0 10px 34px rgba(37,211,102,.7);} }

.back-to-top{
  position:fixed; right:22px; bottom:24px; z-index:900;
  width:50px; height:50px; border-radius:50%;
  background:var(--grad-brand); border:none; box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top svg{ width:18px; height:18px; fill:#fff; }

/* =========================================================
   SIMPLE PAGES (privacy / terms)
   ========================================================= */
.policy-hero{ background:var(--grad-brand); color:var(--cream-50); padding:90px 0 60px; text-align:center; }
.policy-hero h1{ color:#fff; font-size:clamp(30px,4vw,42px); }
.policy-hero p{ color:var(--gold-100); margin-top:10px; }
.policy-body{ padding:70px 0 100px; }
.policy-body .container{ max-width:860px; }
.policy-body h2{ font-size:22px; margin:36px 0 12px; }
.policy-body h2:first-child{ margin-top:0; }
.policy-body p, .policy-body li{ color:var(--ink-700); font-size:15px; line-height:1.8; margin-bottom:10px; }
.policy-body ul{ padding-left:20px; list-style:disc; margin-bottom:16px; }
.policy-body ul li{ margin-bottom:6px; }
.policy-body .updated{ font-size:13px; color:var(--wine-600); font-weight:600; margin-bottom:24px; display:inline-block; background:var(--grad-brand-soft); padding:6px 14px; border-radius:100px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .hero-grid, .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .process-track{ grid-template-columns:repeat(2,1fr); row-gap:40px; }
  .process-track::before{ display:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:860px){
  .topbar-left span.hide-sm{ display:none; }
  .main-menu{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,84vw);
    background:var(--cream-50); flex-direction:column; align-items:flex-start;
    padding:100px 30px 30px; gap:26px; box-shadow:var(--shadow-lg);
    transform:translateX(100%); transition:transform .35s ease; z-index:1001;
  }
  .main-menu.open{ transform:translateX(0); }
  .main-menu a{ font-size:17px; }
  .hamburger{ display:flex; }
  .nav-actions .call-us span{ display:none; }
  .form-row{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .section-pad, .about, .services, .process, .why, .testimonials, .faq, .contact{ padding:64px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .about-list{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; text-align:center; padding:40px 26px; }
  .hero{ padding:70px 0 90px; }
  .hero-stats{ gap:22px; }
  .t-card{ padding:32px 22px; }
  .whatsapp-fab{ width:52px; height:52px; left:16px; bottom:18px; }
  .back-to-top{ width:44px; height:44px; right:16px; bottom:18px; }
  .topbar .container{ flex-direction:column; gap:6px; align-items:flex-start; }
}
