:root{
  --bg:#f7f9fb; --surface:#ffffff; --panel:#f1f4f7;
  --text:#1f2a36; --text-dim:#5a6b7b;
  --brand:#FF6600; --accent:#25D366; --border:#dbe3ea;
  --container:1180px;

  /* hero text column width */
  --hero-copy-max:600px;

  /* optional small nudges (px) */
  --hero-nudge-x:0;
  --hero-shift:0;
  --logo-nudge-y:0;            /* tweak ±px if you want the logo a touch up/down */

  /* keeps globe off the right edge/hand */
  --logo-right-guard:110px;
}

/* Smooth anchor scrolling for FAQ etc. */
html { scroll-behavior: smooth; }

/* Base */
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:var(--bg); color:var(--text); line-height:1.6;
}
img{ max-width:100%; display:block; border-radius:14px }
a{ color:inherit; text-decoration:none }
h1,h2,h3{
  font-family:Poppins,Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  margin:0 0 10px;
}
h1{ font-size:clamp(34px,5vw,56px); line-height:1.05 }
h2{ font-size:clamp(24px,3vw,36px) }
h3{ font-size:20px }
.lead{ font-size:18px; color:var(--text-dim) }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px }
.section{ padding:80px 0 }
.section--panel{ background:var(--panel) }
.kicker{
  letter-spacing:2px; font-weight:800; color:var(--brand);
  text-transform:uppercase; font-size:clamp(11px,1.2vw,18px);
  line-height:1.2; margin-bottom:8px;
}
.muted{ color:var(--text-dim) }
.cta-row{ display:flex; gap:16px; flex-wrap:wrap }

/* Buttons */
.btn{ display:inline-block; padding:14px 22px; border-radius:10px; font-weight:700 }
.btn--primary{ background:var(--brand); color:#fff; box-shadow:0 4px 12px rgba(255,102,0,.25) }
.btn--wa{ background:var(--accent); color:#0d2815; box-shadow:0 4px 12px rgba(37,211,102,.25) }

/* Header */
.header{ position:sticky; top:0; z-index:30; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--border) }
.header__bar{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:56px }
.brand{ display:flex; align-items:center; gap:16px }
.brand__logo{ width:80px; height:80px; border-radius:12px; background:#fff; overflow:hidden; border:1px solid var(--border) }
.brand__name{ font-weight:800; font-size:24px; color:var(--brand) }
.nav{ display:flex; gap:26px; align-items:center }
.nav a{ color:var(--text-dim) }
.nav a:hover{ color:var(--text) }

/* ===== HERO ===== */
.hero{
  position:relative; isolation:isolate;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  overflow:hidden;
  height:700px;
}
.hero__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:60% 100%;
  z-index:0;
  opacity:.75;
  filter:saturate(1.05) contrast(1.05) brightness(1.02);
  border-radius:0;
}
.hero__gradient{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(70% 70% at 85% 10%, rgba(255,102,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.78));
}

/* Column that spans the hero height: text+CTAs on top, logo centered below */
.hero__grid{
  position:relative; z-index:1;
  padding-top:calc(36px + var(--hero-shift));
  padding-bottom:42px;
  height:100%;
  display:flex;
}
.hero__col{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;  /* keep text at the top */
  align-items:flex-start;       /* align left with container gutters */
  height:100%;
  width:100%;
}
.hero__content{
  max-width:var(--hero-copy-max);
  transform:translateX(var(--hero-nudge-x));
}
.hero__content p{ color:var(--text-dim); font-size:18px; margin:10px 0 24px }

/* Spacer under heading line (kept) */
.hero__spacer{
  height:50px; width:100%; margin:0 0 12px 0;
  background:transparent; border:none; box-shadow:none;
}

/* ===== LOGO under CTAs, aligned to .hero__content left edge ===== */
/* The box sits in the remaining vertical space and is vertically centered there */
.logo-box{
  width:100%;
  max-width:var(--hero-copy-max);
  display:flex;
  justify-content:flex-start;   /* left edges align */
  align-items:center;           /* center the image itself */
  margin-block:auto;            /* equal space above & below -> equidistant */
  transform:translateY(var(--logo-nudge-y));
  overflow:visible;             /* never crop the globe */
}

/* Image: perfect aspect, fills the text column but keeps a right guard */
.logo-box > img.logo-img{
  display:block;
  width:calc(100% - var(--logo-right-guard));
  max-width:100%;
  height:auto;                  /* critical: prevents squashing */
  object-fit:contain;
  aspect-ratio:auto;
  border-radius:0;
  margin-left:0;                /* left edge = text left edge */
}

/* ===== Content sections ===== */
.grid-3{ display:grid; gap:22px; grid-template-columns:repeat(3,1fr) }
.card{ background:#fff; border:1px solid var(--border); border-radius:18px; padding:22px; box-shadow:0 10px 24px rgba(0,0,0,.05) }
.card p{ color:var(--text-dim); margin:0 }
.split{ display:grid; gap:28px; grid-template-columns:1fr 1fr; align-items:center }
.illus img{ width:100%; height:auto }

/* Footer */
.footer{ background:var(--surface); border-top:1px solid var(--border) }
.footer__top{ display:grid; gap:22px; grid-template-columns:1.2fr 1fr 1fr; padding:34px 0 }
.footer__bottom{ border-top:1px solid var(--border); padding:16px 0; color:var(--text-dim); font-size:14px }

/* Floating WA */
.fab{
  position:fixed; right:18px; bottom:18px;
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 16px; border-radius:999px;
  background:linear-gradient(180deg,#6aeb9b,#25D366); color:#0d2815; font-weight:800;
  box-shadow:0 12px 28px rgba(37,211,102,.25); z-index:40
}

/* Cookie notice */
.cookie{
  position:fixed; right:18px; bottom:18px; z-index:50;
  display:flex; gap:12px; align-items:center;
  max-width:min(520px, 92vw);
  padding:12px 14px; border-radius:14px;
  background:#fff; border:1px solid var(--border);
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.cookie__text{ color:var(--text-dim); font-size:14px; line-height:1.4 }
.cookie__btn{ padding:10px 14px; border-radius:10px }
@media (max-width:560px){ .cookie{ left:18px; right:18px; } }

/* FAQ link list */
.faq-links{ list-style:none; padding:0; margin:10px 0 18px; }
.faq-links li{ margin:6px 0; }
.faq-links a{ color:var(--text-dim); text-decoration:underline; }
.faq-links a:hover{ color:var(--text); }

/* Hide FAQ <summary> duplicates */
.faq-item summary{ display:none; }
.faq-item{ margin:0 0 16px; }

/* Visually hidden summary */
.vh{
  position:absolute!important; width:1px; height:1px; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0
}
.faq-item summary::-webkit-details-marker{ display:none }

/* ===== Responsive ===== */
@media (max-width:1020px){
  .grid-3{ grid-template-columns:1fr }
  .split{ grid-template-columns:1fr }
  .footer__top{ grid-template-columns:1fr }
  .brand__logo{ width:64px; height:64px }
  .brand__name{ font-size:22px }
  .header__bar{ gap:24px }
  .nav{ gap:18px }

  .hero{ height:520px }
  .hero__content{ max-width:90% }

  /* keep the logo sensible on smaller screens */
  .logo-box{ max-width:90% }
  .logo-box > img.logo-img{
    width:calc(100% - 72px);     /* soften right guard on small screens */
  }
}
