/* ============================================================
   המגנט הלוהט - Stylesheet
   Author: Site build (2026)
   Palette: Deep navy + flame orange + cream — "לוהט" feel
   ============================================================ */

/* ---------- CSS RESET / NORMALIZE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — Dark navy + flame accent (TagBox-inspired) */
  --c-bg: #0a0a1f;            /* deep navy background */
  --c-bg-soft: #131432;       /* slightly lighter navy for sections */
  --c-bg-2: #131432;          /* alias */
  --c-bg-3: #1c1d3d;          /* hover/cards */
  --c-bg-warm: #1c1d3d;
  --c-cream: #131432;
  --c-ink: #ffffff;           /* primary text — white */
  --c-ink-soft: rgba(255,255,255,.85);
  --c-muted: #8a8aa8;         /* muted body text */
  --c-line: #25264a;          /* borders */
  --c-line-soft: #1c1d3d;

  /* Brand — kept for backwards compatibility, mapped to accent */
  --c-blue: #ff5a1f;
  --c-blue-2: #ff8a3d;
  --c-blue-3: #ffd166;
  --c-blue-deep: #0a0a1f;

  /* Accent — flame (primary brand) */
  --c-flame: #ff5a1f;
  --c-flame-2: #ff8a3d;
  --c-flame-deep: #c9410d;
  --c-ember: #ffd166;
  --c-accent-soft: rgba(255,90,31,.14);

  /* States */
  --c-success: #16a34a;
  --c-whatsapp: #25D366;

  /* Gradients */
  --g-blue: linear-gradient(135deg, #ff8a3d 0%, #ff5a1f 50%, #c9410d 100%);
  --g-blue-deep: linear-gradient(135deg, #131432 0%, #0a0a1f 100%);
  --g-flame: linear-gradient(135deg, #ff8a3d 0%, #ff5a1f 50%, #c9410d 100%);
  --g-hero: radial-gradient(ellipse at center, rgba(255,90,31,.25), transparent 60%);
  --g-card: linear-gradient(180deg, #131432 0%, #1c1d3d 100%);
  --g-ember: linear-gradient(135deg, #ffd166 0%, #ff8a3d 100%);

  /* Typography */
  --ff-sans: "Heebo", "Rubik", "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ff-display: "Heebo", "Rubik", system-ui, sans-serif;

  --fs-12: .75rem;
  --fs-14: .875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-26: 1.625rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-72: 4.5rem;

  /* Spacing */
  --s-2: .125rem;
  --s-4: .25rem;
  --s-8: .5rem;
  --s-12: .75rem;
  --s-16: 1rem;
  --s-20: 1.25rem;
  --s-24: 1.5rem;
  --s-32: 2rem;
  --s-40: 2.5rem;
  --s-48: 3rem;
  --s-64: 4rem;
  --s-80: 5rem;
  --s-96: 6rem;
  --s-120: 7.5rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --sh-1: 0 2px 6px rgba(0,0,0,.25);
  --sh-2: 0 6px 18px rgba(0,0,0,.35);
  --sh-3: 0 16px 40px rgba(0,0,0,.45);
  --sh-flame: 0 12px 32px rgba(255,90,31,.35);
  --sh-hover: 0 24px 50px rgba(0,0,0,.5);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: .18s;
  --t: .28s;
  --t-slow: .5s;

  /* Header */
  --header-h: 104px;
}

/* ---------- BASE ---------- */
html, body { background: var(--c-bg); color: var(--c-ink); font-family: var(--ff-sans); }
body {
  font-size: var(--fs-16);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -.01em;
  direction: rtl;
}
html { overflow-x: clip; }

h1, h2, h3, h4, h5 { font-family: var(--ff-display); font-weight: 800; line-height: 1.15; color: var(--c-ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw + 1rem, 4.25rem); }
h2 { font-size: clamp(1.625rem, 2.4vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem); }
h4 { font-size: var(--fs-22); font-weight: 700; }
p { line-height: 1.75; color: var(--c-ink-soft); }

::selection { background: var(--c-flame); color: #fff; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(60px, 7vw, 120px); position: relative; }
.section-sm { padding-block: clamp(40px, 5vw, 70px); }
.section--cream { background: var(--c-bg-soft); }
.section--ink { background: var(--c-bg-3); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: rgba(255,255,255,.78); }

/* ---------- ACCESSIBILITY ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; inset-inline-start: 16px; top: 8px; padding: 10px 16px; background: var(--c-ink); color: #fff; border-radius: var(--radius-sm); transform: translateY(-150%); z-index: 99999; font-weight: 700; transition: transform var(--t) var(--ease); }
.skip-link:focus { transform: translateY(0); }

*:focus-visible { outline: 3px solid var(--c-flame); outline-offset: 3px; border-radius: 4px; }

/* ---------- ELEVATED ELEMENTS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-accent-soft);
  color: var(--c-flame-2);
  border-radius: var(--radius-pill);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  border: 1px solid rgba(255,90,31,.3);
}
.eyebrow::before {
  content: "🔥";
  font-size: var(--fs-16);
  line-height: 1;
}
.section--ink .eyebrow { background: rgba(255,138,61,.14); color: var(--c-flame-2); border-color: rgba(255,138,61,.3); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto var(--s-64); }
.section-header p { margin-top: 14px; font-size: var(--fs-18); color: var(--c-muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 1;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--g-flame);
  color: #fff;
  box-shadow: var(--sh-flame);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(255,90,31,.4); }

.btn-secondary {
  background: var(--c-bg-2);
  color: #fff;
  border-color: var(--c-line);
  box-shadow: var(--sh-1);
}
.btn-secondary:hover { border-color: var(--c-flame); color: var(--c-flame-2); box-shadow: var(--sh-2); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.btn-ghost:hover { color: var(--c-flame-2); }

.btn-whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #1fb957; box-shadow: 0 16px 32px rgba(37,211,102,.45); }

.btn-outline-ink {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-ink:hover { background: #fff; color: var(--c-ink); border-color: #fff; }

.btn-lg { padding: 20px 38px; font-size: var(--fs-18); }
.btn-sm { padding: 10px 18px; font-size: var(--fs-14); }
.btn-block { width: 100%; }

.btn .ico { width: 20px; height: 20px; }

/* Legacy class kept for safety — hide any standalone .top-bar if it remains */
.top-bar { display: none !important; }

/* ---------- HEADER (Dark navy + flame accent — TagBox vibe) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(10,10,31,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  isolation: isolate;
}
.site-header.is-scrolled { background: rgba(10,10,31,.95); box-shadow: 0 10px 36px rgba(0,0,0,.55); }
.site-header::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 88% 50%, rgba(255,90,31,.10), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.site-header__row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: var(--header-h);
  min-height: 88px;
  gap: 28px;
  position: relative;
  z-index: 10;
  visibility: visible !important;
  opacity: 1 !important;
}
.site-header__row > * {
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 11;
}
.site-header .brand,
.site-header .brand img,
.site-header .brand__name,
.site-header .nav,
.site-header .nav a,
.site-header .site-header__cta,
.site-header .site-header__cta .btn,
.site-header .hamburger {
  visibility: visible !important;
  opacity: 1 !important;
}

.brand {
  display: flex; align-items: center; gap: 16px;
  transition: transform var(--t) var(--ease);
  padding: 4px 12px 4px 4px;
  border-radius: 18px;
  position: relative;
}
.brand:hover { transform: translateY(-1px); }
.brand img {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  display: block; flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--c-flame), 0 10px 28px rgba(0,0,0,.4);
  background: #fff;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.brand:hover img {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 0 4px var(--c-flame-2), 0 14px 32px rgba(0,0,0,.5);
}
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name strong {
  font-size: var(--fs-26);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.brand__name span {
  font-size: var(--fs-14);
  color: var(--c-ember);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: var(--fs-16);
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
  transition: color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
  letter-spacing: -.005em;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 6px; inset-inline-start: 50%;
  width: 0; height: 3px;
  background: var(--c-flame);
  border-radius: 3px;
  transform: translateX(50%);
  transition: width var(--t) var(--ease);
}
.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.nav a.is-active {
  color: #fff;
  background: var(--c-flame);
  box-shadow: 0 6px 18px rgba(255,90,31,.45);
  text-shadow: none;
}
.nav a:hover::after { width: 60%; }
.nav a.is-active::after { width: 0; }

.site-header__cta { display: flex; align-items: center; gap: 10px; }
.site-header__cta .btn { padding: 12px 22px; font-size: var(--fs-14); }

.hamburger { display: none; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.45); align-items: center; justify-content: center; transition: background var(--t) var(--ease), border-color var(--t) var(--ease); }
.hamburger:hover { background: rgba(255,138,61,.32); border-color: var(--c-flame); }
.hamburger span { display: block; width: 24px; height: 3px; background: #fff; border-radius: 4px; position: relative; transition: transform var(--t) var(--ease), opacity var(--t) var(--ease); }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; inset-inline-start: 0; width: 24px; height: 3px; background: #fff; border-radius: 4px; transition: transform var(--t) var(--ease); }
.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }

body.is-menu-open .hamburger span { background: transparent; }
body.is-menu-open .hamburger span::before { transform: translateY(8px) rotate(45deg); }
body.is-menu-open .hamburger span::after { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav { position: fixed; inset: var(--header-h) 0 0 0; background: linear-gradient(160deg, rgba(12,39,82,.98) 0%, rgba(27,78,168,.97) 100%); backdrop-filter: blur(20px); z-index: 8500; transform: translateY(-100%); transition: transform var(--t-slow) var(--ease), visibility 0s linear var(--t-slow); padding: 32px 24px; overflow-y: auto; visibility: hidden; pointer-events: none; }
body.is-menu-open .mobile-nav { transform: translateY(0); visibility: visible; pointer-events: auto; transition: transform var(--t-slow) var(--ease), visibility 0s linear 0s; }
.mobile-nav a { display: block; padding: 18px 14px; color: #fff; font-size: var(--fs-22); font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav a:hover, .mobile-nav a.is-active { color: var(--c-ember); padding-inline-start: 22px; }
.mobile-nav__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: var(--g-hero); z-index: -1; }

/* Logo-centric hero variant */
.hero.hero--logo .hero__bg {
  background: var(--c-bg);
}
.hero.hero--logo::after {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,90,31,.18), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(255,138,61,.12), transparent 50%);
}
.hero__title-sub {
  display: block;
  font-size: clamp(1.1rem, 1.6vw + .6rem, 1.9rem);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-top: 14px;
  letter-spacing: -.005em;
  line-height: 1.25;
}
.hero.hero--logo .hero__title em {
  font-size: clamp(2.5rem, 5.5vw + 1rem, 5.5rem);
  background: none;
  color: #ffd166;
  text-shadow: 0 0 40px rgba(255,209,102,.45), 0 2px 14px rgba(0,0,0,.4);
  letter-spacing: -.03em;
  display: inline-block;
  white-space: nowrap;
}

.hero__visual--logo { display: flex; align-items: center; justify-content: center; position: relative; height: 540px; max-height: 70vh; }
.hero__logo-card {
  width: clamp(280px, 36vw, 460px);
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 30px;
  padding: 14px;
  box-shadow: 0 28px 60px rgba(0,0,0,.45), 0 0 0 6px rgba(255,138,61,.55), 0 0 0 12px rgba(255,255,255,.12);
  position: relative;
  z-index: 3;
  overflow: hidden;
  animation: heroLogoFloat 5s ease-in-out infinite;
}
.hero__logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

.hero__visual--logo .photo--side {
  position: absolute;
  width: 38%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  z-index: 2;
}
.hero__visual--logo .photo--side-1 { top: 4%; inset-inline-start: 0; transform: rotate(-8deg); }
.hero__visual--logo .photo--side-2 { bottom: 4%; inset-inline-end: 0; transform: rotate(7deg); z-index: 4; }
.hero__visual--logo .photo--side img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .hero__visual--logo { height: 480px; }
  .hero__logo-card { width: 60vw; max-width: 380px; }
  .hero__visual--logo .photo--side { width: 32%; }
}
@media (max-width: 640px) {
  .hero__visual--logo { height: 360px; }
  .hero__logo-card { width: 64vw; max-width: 300px; }
  .hero__visual--logo .photo--side { width: 38%; }
}

.hero__inner { padding-top: clamp(18px, 2.5vw, 40px); padding-bottom: clamp(60px, 8vw, 120px); width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero__content { max-width: 640px; }
.hero__title { color: #fff; font-size: clamp(2.5rem, 5vw + 1rem, 5.25rem); line-height: 1.05; margin-bottom: 24px; font-weight: 900; letter-spacing: -.035em; }
.hero__title em { font-style: normal; color: var(--c-ember); text-shadow: 0 0 32px rgba(255,209,102,.4), 0 2px 12px rgba(0,0,0,.35); white-space: nowrap; }
.hero__sub { font-size: clamp(1.05rem, .6vw + 1rem, 1.375rem); color: var(--c-muted); margin-bottom: 36px; line-height: 1.6; max-width: 560px; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; padding: 16px 8px; font-size: var(--fs-18); }
.hero__phone:hover { color: var(--c-flame-2); }

.hero__visual { position: relative; height: 540px; max-height: 65vh; }
.hero__visual .photo {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-3); border: 6px solid #fff;
  transition: transform var(--t-slow) var(--ease);
}
.hero__visual .photo:hover { transform: scale(1.04) rotate(0deg) !important; }
.hero__visual .photo--1 { width: 70%; height: 70%; top: 0; inset-inline-start: 0; transform: rotate(-4deg); z-index: 2; }
.hero__visual .photo--2 { width: 58%; height: 60%; bottom: 0; inset-inline-end: 0; transform: rotate(5deg); z-index: 3; }
.hero__visual .photo--3 { width: 42%; height: 38%; top: 40%; inset-inline-start: 50%; transform: rotate(8deg); z-index: 1; }
.hero__visual .photo img { width: 100%; height: 100%; object-fit: contain; background: #faf5ef; }

.hero__floating-badge {
  position: absolute;
  inset-inline-start: 0;
  top: 15%;
  background: #fff;
  color: #0a0a1f;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--sh-3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  font-weight: 700;
  font-size: var(--fs-14);
  animation: float 4s ease-in-out infinite;
}
.hero__floating-badge .dot { width: 8px; height: 8px; background: var(--c-success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(22,163,74,.2); animation: pulse 2s infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); } 50% { box-shadow: 0 0 0 10px rgba(22,163,74,0); } }

/* ---------- TRUST BAR ---------- */
.trustbar {
  background: var(--c-bg-2);
  color: #fff;
  padding: 28px 0;
  border-block: 1px solid var(--c-line);
}
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; text-align: center; }
.trustbar__item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px; border-radius: 14px; transition: transform var(--t) var(--ease); }
.trustbar__item:hover { transform: translateY(-3px); }
.trustbar__num { font-size: var(--fs-32); font-weight: 900; background: var(--g-flame); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; line-height: 1; }
.trustbar__lbl { font-size: var(--fs-14); color: var(--c-muted); font-weight: 500; }

/* ---------- SERVICES GRID ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--g-flame); transform: scaleX(0); transform-origin: right; transition: transform var(--t) var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); border-color: rgba(255,90,31,.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--c-accent-soft); color: var(--c-flame-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.service-card:hover .service-card__icon { background: var(--g-flame); color: #fff; transform: scale(1.08) rotate(-6deg); }
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { margin-bottom: 12px; color: #fff; }
.service-card p { color: var(--c-muted); font-size: var(--fs-16); }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--c-flame-2); font-weight: 700; font-size: var(--fs-14); transition: gap var(--t) var(--ease); }
.service-card:hover .service-card__link { gap: 12px; }
.service-card__link::after { content: "←"; transition: transform var(--t) var(--ease); }

/* ---------- WHY US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { display: flex; gap: 18px; padding: 24px; background: var(--c-bg-2); border-radius: var(--radius-lg); border: 1px solid var(--c-line); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.why-item:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(255,90,31,.3); }
.why-item h4 { color: #fff; }
.why-item__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--g-flame); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-flame); }
.why-item__icon svg { width: 28px; height: 28px; }
.why-item h4 { margin-bottom: 6px; }
.why-item p { color: var(--c-muted); font-size: var(--fs-15, .94rem); line-height: 1.6; }

/* ---------- HOW IT WORKS ---------- */
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; position: relative; }
.how-step { background: var(--c-bg-2); border-radius: var(--radius-lg); padding: 36px 24px 28px; position: relative; counter-increment: step; border: 1px solid var(--c-line); color: #fff; }
.how-step::before {
  content: counter(step, decimal); position: absolute; top: -22px; inset-inline-start: 24px;
  width: 48px; height: 48px; border-radius: 50%; background: var(--g-flame); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: var(--fs-20);
  box-shadow: var(--sh-flame);
}
.how-step h4 { margin: 10px 0 8px; }
.how-step p { color: var(--c-muted); font-size: var(--fs-15, .94rem); }

/* ---------- GALLERY ---------- */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.gallery-filter button {
  padding: 10px 22px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: all var(--t) var(--ease);
  font-size: var(--fs-14);
  cursor: pointer;
}
.gallery-filter button:hover { border-color: var(--c-flame); color: var(--c-flame-2); }
.gallery-filter button.is-active { background: var(--g-flame); border-color: transparent; color: #fff; box-shadow: var(--sh-flame); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--c-bg-soft);
  box-shadow: var(--sh-1);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.gallery-item img { width: 100%; height: 100%; object-fit: contain; background: linear-gradient(135deg, #faf5ef 0%, #fff1e6 100%); padding: 6px; transition: transform var(--t-slow) var(--ease); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__caption {
  position: absolute; inset: auto 0 0 0;
  padding: 36px 16px 14px;
  background: linear-gradient(to top, rgba(11,26,58,.85), transparent);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-14);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }
.gallery-item[hidden] { display: none; }

/* ---------- TIKTOK VIDEO SECTION ---------- */
.tiktok-section { background: linear-gradient(160deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 3px solid var(--c-flame);
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  max-height: 640px;
  object-fit: cover;
  background: #000;
}
.video-card__caption {
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-15, .94rem);
  text-align: center;
}
.tiktok-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .tiktok-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .tiktok-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(11,26,58,.95);
  z-index: 10000; display: none; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(6px); animation: fadeIn .2s ease both;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--sh-3); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; top: 24px; inset-inline-end: 24px;
  width: 48px; height: 48px; border-radius: 50%; background: #fff; color: #0a0a1f;
  display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800;
  transition: transform var(--t) var(--ease);
}
.lightbox__close:hover { transform: scale(1.1); }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__prev { inset-inline-start: 24px; inset-inline-end: auto; }
.lightbox__next { inset-inline-end: 24px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--c-bg-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: rgba(255,90,31,.3); }
.testimonial::before {
  content: """;
  position: absolute; top: -18px; inset-inline-start: 24px;
  width: 50px; height: 50px; border-radius: 50%; background: var(--g-flame);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 38px; line-height: 1; padding-bottom: 16px;
  box-shadow: var(--sh-flame);
}
.testimonial__stars { color: var(--c-ember); font-size: var(--fs-18); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial__body { font-size: var(--fs-16); color: var(--c-ink-soft); margin-bottom: 22px; line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--c-line); }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--g-flame); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: var(--fs-18); flex-shrink: 0; }
.testimonial__author strong { display: block; font-size: var(--fs-15, .94rem); font-weight: 700; color: #fff; }
.testimonial__author span { font-size: var(--fs-13, .82rem); color: var(--c-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq-item:hover { border-color: rgba(255,90,31,.4); }
.faq-item.is-open { box-shadow: var(--sh-2); border-color: var(--c-flame); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  text-align: start;
  font-size: var(--fs-18);
  font-weight: 700;
  color: #fff;
}
.faq-q__toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--c-accent-soft); color: var(--c-flame-2); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; flex-shrink: 0; transition: transform var(--t) var(--ease), background var(--t) var(--ease); }
.faq-item.is-open .faq-q__toggle { transform: rotate(45deg); background: var(--c-flame); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); }
.faq-a__inner { padding: 0 24px 22px; color: var(--c-ink-soft); line-height: 1.7; }
.faq-item.is-open .faq-a { max-height: 500px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { color: var(--c-muted); margin-bottom: 24px; }

.contact-channels { display: grid; gap: 14px; margin-top: 28px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--c-bg-2); border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease);
}
.contact-channel:hover { border-color: rgba(255,90,31,.4); background: var(--c-bg-3); transform: translateX(-4px); }
.contact-channel__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--c-accent-soft); color: var(--c-flame-2); display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-line); }
.contact-channel__icon svg { width: 22px; height: 22px; }
.contact-channel strong { display: block; font-weight: 700; color: #fff; }
.contact-channel span { font-size: var(--fs-14); color: var(--c-muted); }

.section--ink .contact-channel { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.section--ink .contact-channel:hover { background: rgba(255,138,61,.14); border-color: var(--c-flame); }
.section--ink .contact-channel__icon { background: rgba(255,255,255,.1); color: var(--c-flame-2); border-color: transparent; }
.section--ink .contact-channel strong { color: #fff; }
.section--ink .contact-channel span { color: rgba(255,255,255,.7); }

/* ---------- FORMS ---------- */
.form { background: var(--c-bg-2); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--sh-2); border: 1px solid var(--c-line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label { font-weight: 700; font-size: var(--fs-14); color: #fff; margin-bottom: 6px; }
.form-field label .req { color: var(--c-flame); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-size: var(--fs-16);
  background: var(--c-bg);
  color: #fff;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  font-family: inherit;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--c-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--c-flame); box-shadow: 0 0 0 4px rgba(255,90,31,.15); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-help { font-size: var(--fs-13, .82rem); color: var(--c-muted); margin-top: 6px; }
.form .btn { width: 100%; margin-top: 8px; }

.form-success { display: none; padding: 18px; border-radius: var(--radius); background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; margin-bottom: 16px; font-weight: 600; }
.form.is-success .form-success { display: block; }

/* ---------- QUICK LEAD FORM ---------- */
.quick-lead {
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.quick-lead::before {
  content: "";
  position: absolute;
  top: -150px;
  inset-inline-end: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,.18), transparent 70%);
  pointer-events: none;
}
.quick-lead__text { position: relative; z-index: 1; }
.quick-lead__text h2 {
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 14px;
}
.quick-lead__text h2 em {
  font-style: normal;
  color: var(--c-ember);
  text-shadow: 0 0 28px rgba(255,209,102,.4);
}
.quick-lead__text p {
  color: var(--c-muted);
  font-size: var(--fs-18);
  line-height: 1.6;
  max-width: 460px;
}
.quick-lead__form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.quick-lead__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-lead__fields .form-field { margin-bottom: 0; }
.quick-lead__fields input {
  padding: 16px 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  color: #fff;
  border-radius: var(--radius);
  font-size: var(--fs-16);
  font-family: inherit;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.quick-lead__fields input:focus {
  outline: none;
  border-color: var(--c-flame);
  box-shadow: 0 0 0 4px rgba(255,90,31,.15);
}
.quick-lead__fields input::placeholder { color: rgba(255,255,255,.35); }
.quick-lead__submit {
  width: 100%;
  margin-top: 4px;
  font-size: var(--fs-18);
  padding: 18px 32px;
}
.quick-lead__privacy {
  font-size: var(--fs-13, .82rem);
  color: var(--c-muted);
  text-align: center;
  margin: 0;
}
.quick-lead__success {
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.4);
  color: #86efac;
  font-size: var(--fs-16);
  line-height: 1.5;
}
.quick-lead__success strong { color: #fff; }
.quick-lead__error {
  padding: 16px 22px;
  border-radius: var(--radius);
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.4);
  color: #fca5a5;
  font-size: var(--fs-15, .94rem);
}
.quick-lead__error a { color: var(--c-flame-2); text-decoration: underline; font-weight: 700; }
.quick-lead__form.is-loading .quick-lead__submit { opacity: .65; pointer-events: none; }

@media (max-width: 880px) {
  .quick-lead { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
  .quick-lead__fields { grid-template-columns: 1fr; }
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--g-flame);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,209,102,.3), transparent 60%), radial-gradient(circle at 80% 50%, rgba(255,255,255,.2), transparent 60%); }
.cta-strip__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw + 1rem, 2.5rem); margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,.92); font-size: var(--fs-18); }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: #fff; color: #c9410d; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.cta-strip .btn-primary:hover { background: #0a0a1f; color: #fff; }
.cta-strip .btn-outline-ink { border-color: #fff; }
.cta-strip .btn-outline-ink:hover { background: #fff; color: #c9410d; }

/* ---------- FOOTER ---------- */
.site-footer { background: #07142b; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer h5 { color: #fff; font-size: var(--fs-16); margin-bottom: 16px; letter-spacing: 0; }
.site-footer a { transition: color var(--t) var(--ease); }
.site-footer a:hover { color: var(--c-flame-2); }
.site-footer ul li { margin-bottom: 10px; font-size: var(--fs-15, .94rem); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 14px; }
.footer-brand strong { color: #fff; font-size: var(--fs-20); font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: var(--fs-14); max-width: 320px; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; margin-top: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--t) var(--ease); }
.footer-socials a:hover { background: var(--g-flame); }
.footer-socials svg { width: 20px; height: 20px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; font-size: var(--fs-13, .82rem); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.55); }

/* ---------- FLOATING BUTTONS ---------- */
.fab-stack {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 7000;
}
.fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab--whatsapp { background: var(--c-whatsapp); }
.fab--whatsapp::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 3px solid var(--c-whatsapp); opacity: .35; animation: ringPulse 2.5s ease-out infinite; }
.fab--phone { background: var(--c-flame); }
.fab svg { width: 28px; height: 28px; }

@keyframes ringPulse {
  0% { transform: scale(.85); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.fab-label {
  position: absolute;
  inset-inline-end: 70px;
  top: 50%; transform: translateY(-50%);
  background: var(--c-ink); color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-13, .82rem); font-weight: 700; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.fab:hover .fab-label { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ---------- PAGE HEAD (sub pages) ---------- */
.page-head {
  background: var(--c-bg);
  color: #fff;
  padding: clamp(24px, 3.5vw, 56px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(255,90,31,.18), transparent 50%), radial-gradient(circle at 10% 80%, rgba(184,51,255,.10), transparent 50%); }
.page-head__inner { position: relative; }
.page-head h1 { color: #fff; margin-bottom: 12px; }
.page-head p { color: rgba(255,255,255,.82); font-size: var(--fs-18); max-width: 640px; margin-inline: auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,.6); font-size: var(--fs-14); margin-top: 18px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--c-flame-2); }
.breadcrumb span { opacity: .5; }

/* ---------- LARGE FEATURE CARD ---------- */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--c-bg-2);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--sh-2);
  border: 1px solid var(--c-line);
  margin-bottom: 32px;
}
.feature-card h3 { color: #fff; }
.feature-card.reverse { direction: ltr; }
.feature-card.reverse > * { direction: rtl; }
.feature-card__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #faf5ef 0%, #fff1e6 100%); box-shadow: var(--sh-1); }
.feature-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.feature-card h3 { margin-bottom: 14px; }
.feature-card p { color: var(--c-muted); margin-bottom: 18px; font-size: var(--fs-16); }
.feature-card ul { margin-bottom: 24px; }
.feature-card ul li { display: flex; align-items: start; gap: 10px; padding: 6px 0; font-size: var(--fs-15, .94rem); color: var(--c-ink-soft); }
.feature-card ul li::before { content: "✓"; color: var(--c-flame); font-weight: 800; }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: rgba(255,90,31,.4); }
.pricing-card.is-featured { border-color: var(--c-flame); box-shadow: var(--sh-flame); transform: scale(1.02); background: var(--c-bg-3); }
.pricing-card__badge { position: absolute; top: -14px; inset-inline-end: 24px; background: var(--g-flame); color: #fff; padding: 6px 14px; border-radius: var(--radius-pill); font-size: var(--fs-13, .82rem); font-weight: 700; }
.pricing-card h3 { margin-bottom: 8px; color: #fff; }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 22px; }
.pricing-card__price .from { font-size: var(--fs-14); color: var(--c-muted); }
.pricing-card__price .amt { font-size: var(--fs-40); font-weight: 800; background: var(--g-flame); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.pricing-card__price .cur { font-size: var(--fs-18); color: var(--c-muted); font-weight: 700; }
.pricing-card ul { margin-bottom: 28px; }
.pricing-card ul li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--c-line); font-size: var(--fs-15, .94rem); color: var(--c-ink-soft); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: "✓"; color: var(--c-flame-2); font-weight: 800; flex-shrink: 0; }

/* ---------- ANIMATIONS ---------- */
[data-aos] {
  opacity: 1;
  transform: none;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-aos].is-in { opacity: 1; transform: translateY(0); }
[data-aos="fade-up"] { transform: translateY(28px); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="zoom-in"] { transform: scale(.95); }
[data-aos].is-in[data-aos="fade-left"], [data-aos].is-in[data-aos="fade-right"] { transform: translateX(0); }
[data-aos].is-in[data-aos="zoom-in"] { transform: scale(1); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- UTILITY ---------- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.hidden-mob { }
.hidden-desk { display: none; }

/* ============================================================
   DESIGN UPGRADE - v3 — Premium polish
   ============================================================ */

/* Animated gradient mesh on hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,138,61,.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,209,102,.25), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(27,78,168,.2), transparent 60%);
  animation: heroMesh 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroMesh {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(8deg); }
}

/* More dramatic hero title with glow */
.hero__title {
  text-shadow: 0 4px 32px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
}
.hero__title em {
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  inset-inline-start: -8px;
  bottom: 4px;
  width: calc(100% + 16px);
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(255,209,102,.5), transparent);
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
}

/* Hero photos: better frame + subtle tilt-on-hover */
.hero__visual .photo {
  background: #fff;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.hero__visual .photo::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,138,61,.4), rgba(27,78,168,.3));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  filter: blur(12px);
}
.hero__visual .photo:hover::before { opacity: 1; }

/* Service cards: glow on hover */
.service-card {
  isolation: isolate;
  background: var(--c-bg-2);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,138,61,.15), transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  z-index: -1;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* Section subtle decorative dot grid (top right) */
.section--cream::before {
  content: "";
  position: absolute;
  top: 30px;
  inset-inline-end: 30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--c-flame) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: .12;
  pointer-events: none;
}

/* Decorative geometric shape on regular sections */
.section:not(.section--cream):not(.section--ink) {
  position: relative;
}

/* Bigger H2s on section headers */
.section-header h2 {
  font-size: clamp(1.875rem, 3vw + 1rem, 3.25rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}

/* Eyebrow with subtle glow */
.eyebrow {
  background: var(--c-accent-soft);
  box-shadow: 0 4px 12px rgba(255,138,61,.10);
}

/* Trustbar: animated shimmer line */
.trustbar { background: var(--c-bg-2); position: relative; overflow: hidden; }
.trustbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,138,61,.06), transparent);
  animation: shimmerSlide 6s linear infinite;
  pointer-events: none;
}
@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Why-item: flame icon glow on hover */
.why-item {
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 50%; inset-inline-start: -40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,138,61,.18), transparent 60%);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.why-item:hover::before { opacity: 1; }
.why-item__icon { transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.why-item:hover .why-item__icon { transform: scale(1.1) rotate(-8deg); box-shadow: 0 16px 36px rgba(255,90,31,.4); }

/* How-step: connecting line */
.how-steps { position: relative; }
.how-step { transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.how-step:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.how-step::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: var(--g-flame);
  transform: scaleX(0);
  transform-origin: inset-inline-start;
  transition: transform var(--t-slow) var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.how-step:hover::after { transform: scaleX(1); }

/* Gallery item: more dramatic hover */
.gallery-item { background: var(--c-bg-2); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,90,31,.25));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Testimonial: subtle border gradient */
.testimonial {
  background: var(--c-bg-2);
  position: relative;
}
.testimonial:hover { border-color: var(--c-flame); }

/* FAQ item: hover lifts */
.faq-item { transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.faq-item:hover { transform: translateX(-4px); }

/* CTA strip: animated background pattern */
.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.15) 0%, transparent 25%),
    radial-gradient(circle at 90% 90%, rgba(255,209,102,.25) 0%, transparent 30%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaGlow {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Pricing card: featured glow pulse */
.pricing-card.is-featured {
  position: relative;
  z-index: 1;
}
.pricing-card.is-featured::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: var(--g-flame);
  z-index: -1;
  opacity: .25;
  filter: blur(16px);
  animation: featuredPulse 3s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.04); }
}

/* Buttons: shimmer effect on primary */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: transform .8s var(--ease);
}
.btn-primary:hover::after { transform: translateX(280%); }

/* Floating WhatsApp: enhanced */
.fab--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
}

.fab--phone {
  background: var(--g-flame);
  box-shadow: 0 12px 28px rgba(255,90,31,.5);
}

/* Page-head: more dramatic with floating shapes */
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 75%, rgba(255,138,61,.18), transparent 35%),
    radial-gradient(circle at 75% 25%, rgba(255,209,102,.15), transparent 35%);
  pointer-events: none;
  animation: pageHeadFloat 10s ease-in-out infinite alternate;
}
@keyframes pageHeadFloat {
  0% { transform: scale(1) rotate(0); }
  100% { transform: scale(1.1) rotate(-3deg); }
}

/* Brand: small flame badge */
.brand__name strong::after {
  content: " 🔥";
  font-size: .85em;
  vertical-align: middle;
  display: inline-block;
  animation: flameWiggle 2.5s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flameWiggle {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.1); }
}

/* Scroll progress bar at top */
@property --scrollProgress {
  syntax: '<length-percentage>';
  inherits: false;
  initial-value: 0%;
}

/* (removed: section isolation — could conflict with sticky header) */

/* Better focus state for accessibility */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--c-flame);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255,90,31,.2);
}

/* Subtle scrollbar styling (webkit) */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--c-cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--c-flame-2), var(--c-flame)); border-radius: 6px; border: 2px solid var(--c-cream); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--c-flame), var(--c-flame-deep)); }

/* Stronger contact channel hover */
.contact-channel:hover { transform: translateX(-6px) scale(1.01); box-shadow: var(--sh-1); }
.contact-channel__icon { transition: transform var(--t) var(--ease); }
.contact-channel:hover .contact-channel__icon { transform: scale(1.1) rotate(-6deg); }

/* ============================================================
   HEADER FORCE-VISIBILITY (immune to accessibility modes)
   Brand blue header — guaranteed visible across modes
   NOTE: do NOT set `display: block` on the header — keep it as
   the natural block so its flex child (.site-header__row) lays out
   the brand, nav and CTA correctly.
   ============================================================ */
html body header.site-header,
html.a11y-dark body header.site-header,
html.a11y-contrast-high body header.site-header {
  background: rgba(10,10,31,.85) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body header.site-header .site-header__row,
html.a11y-dark body header.site-header .site-header__row,
html.a11y-contrast-high body header.site-header .site-header__row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

html body header.site-header .brand__name strong,
html.a11y-dark body header.site-header .brand__name strong,
html.a11y-contrast-high body header.site-header .brand__name strong {
  color: #ffffff !important;
  font-size: 1.625rem !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .brand__name span,
html.a11y-dark body header.site-header .brand__name span,
html.a11y-contrast-high body header.site-header .brand__name span {
  color: #ffd166 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .nav,
html.a11y-dark body header.site-header .nav,
html.a11y-contrast-high body header.site-header .nav {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .nav a,
html.a11y-dark body header.site-header .nav a,
html.a11y-contrast-high body header.site-header .nav a {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 12px 20px !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.35) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .nav a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,.16) !important;
}
html body header.site-header .nav a.is-active {
  color: #ffffff !important;
  background: #ff5a1f !important;
  box-shadow: 0 6px 18px rgba(255,90,31,.45) !important;
  text-shadow: none !important;
}
html body header.site-header .brand img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 84px !important;
  height: 84px !important;
  border-radius: 50% !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 0 0 3px #ff5a1f, 0 10px 28px rgba(0,0,0,.4) !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}

html body header.site-header .brand,
html body header.site-header .brand__name {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .brand {
  align-items: center !important;
  gap: 16px !important;
}
html body header.site-header .brand__name {
  flex-direction: column !important;
  line-height: 1.05 !important;
}

html body header.site-header .site-header__cta,
html.a11y-dark body header.site-header .site-header__cta,
html.a11y-contrast-high body header.site-header .site-header__cta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
html body header.site-header .site-header__cta .btn,
html.a11y-dark body header.site-header .site-header__cta .btn,
html.a11y-contrast-high body header.site-header .site-header__cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #ffffff !important;
}

/* Re-hide nav and full CTA buttons on tablet/mobile (hamburger replaces them) */
@media (max-width: 880px) {
  html body header.site-header .nav,
  html.a11y-dark body header.site-header .nav,
  html.a11y-contrast-high body header.site-header .nav,
  html body header.site-header .site-header__cta .btn,
  html.a11y-dark body header.site-header .site-header__cta .btn,
  html.a11y-contrast-high body header.site-header .site-header__cta .btn {
    display: none !important;
  }
  html body header.site-header .hamburger {
    display: flex !important;
  }
}

