/* ==========================================================================
   Festa Creations — Design System (bold agency / black + white + orange + green)
   ========================================================================== */

:root {
  --white: #FFFFFF;
  --offwhite: #F5F5F2;
  --paper: #FFFFFF;

  --black: #0B0B0B;
  --black-2: #000000;
  --black-soft: #17171A;

  --orange: #FF5A1F;
  --orange-dark: #D6440F;
  --orange-soft: #FFE0CD;
  --ghost: rgba(255,90,31,0.18);

  --green: #17A34A;
  --green-dark: #0F7E39;
  --green-soft: #D6F2E1;

  --text-dark: #101010;
  --text-body: #3A3A38;
  --text-muted: #79776E;
  --text-on-dark: #F6F5F1;
  --text-on-dark-muted: #B7B5AC;

  --border: #E2E1DA;
  --border-dark: #2A2A2A;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 14px rgba(0,0,0,0.08);
  --shadow-md: 0 14px 36px rgba(0,0,0,0.14);
  --shadow-lg: 0 26px 60px rgba(0,0,0,0.22);

  --font-head: 'Archivo', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* legacy aliases kept so existing rules using these names keep working */
  --cream: var(--white);
  --forest: var(--black);
  --forest-2: var(--black-2);
  --forest-soft: var(--green-soft);
  --forest-bright: var(--green);
  --terracotta: var(--orange);
  --terracotta-dark: var(--orange-dark);
  --terracotta-soft: var(--orange-soft);

  --container-w: 1240px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
h2 { font-weight: 700; }
em { font-style: normal; color: var(--orange); font-weight: 800; }
p { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: #fff;
  padding: 12px 20px; z-index: 1000; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow-on-dark { background: var(--green); color: #05170C; }
.eyebrow-on-image { background: #fff; color: var(--orange-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-pill);
  font-weight: 700; font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(255,90,31,0.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn-forest { background: var(--black); color: var(--text-on-dark); }
.btn-forest:hover { background: var(--black-2); transform: translateY(-2px); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(23,163,74,0.35); }
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.86rem; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,11,0.9);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-dark);
  height: 68px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: 0.01em; }
.logo-text em { color: var(--orange); font-style: normal; }

.main-nav ul { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); position: relative; padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--orange); transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; background: none; border: none; padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (real video background) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.45) 40%, rgba(11,11,11,0.85) 100%),
    linear-gradient(90deg, rgba(11,11,11,0.75) 0%, rgba(11,11,11,0.25) 55%, rgba(11,11,11,0.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 110px 0 90px; }
.hero-copy { max-width: 720px; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; margin-bottom: 34px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.hero-title em { color: var(--orange); font-weight: 800; }
.hero-sub { font-size: 1.16rem; line-height: 1.75; color: rgba(255,255,255,0.86); max-width: 540px; margin-bottom: 46px; font-weight: 400; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 42px; }
.hero-microproof { display: flex; flex-wrap: wrap; gap: 14px 32px; }
.hero-microproof li {
  font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 600;
  padding-left: 18px; position: relative;
}
.hero-microproof li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

.hero-stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-stats-inner { display: flex; flex-wrap: wrap; gap: 34px; padding: 26px 24px; }
.hero-stat { display: flex; align-items: baseline; gap: 4px; }
.hero-stat span[data-counter] { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: #fff; }
.hero-stat-suffix { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--orange); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-left: 6px; align-self: center; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--white); padding: 72px 0; border-bottom: 1px solid var(--border); }
.trust-label { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 34px; font-weight: 500; }
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.client-logo { font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: 0.02em; color: var(--text-dark); text-transform: uppercase; opacity: 0.82; }

/* ---------- Sections generic ---------- */
.section { padding: 152px 0; }
.section-head { max-width: 700px; margin-bottom: 84px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 26px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 2px; }
.section-head .lead { margin-top: 28px; font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; }
.light h2 { color: var(--text-on-dark); }
.light .lead { color: var(--text-on-dark-muted); }
.lead { font-size: 1.06rem; color: var(--text-muted); line-height: 1.75; }

/* ---------- Spotlight (featured video) ---------- */
.spotlight { background: var(--black); }
.spotlight-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; align-items: center; }
.spotlight-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 4px 0 30px; }
.spotlight-copy .lead { color: var(--text-on-dark-muted); margin-bottom: 42px; }
.spotlight-visual { position: relative; max-width: 340px; margin: 0 auto; }
.spotlight-visual video {
  width: 100%; aspect-ratio: 9/16.4; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}
.spotlight-sound {
  position: absolute; bottom: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.spotlight-sound:hover { transform: scale(1.08); }
.spotlight-sound[aria-pressed="true"] { background: var(--orange); }

/* ---------- WhatsApp CTA strip ---------- */
.cta-strip { background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-strip--dark { background: var(--black); border-color: var(--border-dark); }
.cta-strip--dark .cta-strip-inner p { color: var(--text-on-dark); }
.cta-strip--dark .cta-strip-inner p strong { color: var(--orange); }
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding: 42px 24px;
}
.cta-strip-inner p { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin: 0; }
.cta-strip-inner p strong { color: var(--orange-dark); }
.cta-strip-inner .btn { flex-shrink: 0; }
.cta-strip-person { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; text-align: left; }
.cta-strip-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background-color: var(--orange-soft); background-size: cover; background-position: center;
  border: 2px solid var(--orange);
}
.cta-strip--dark .cta-strip-avatar { background-color: var(--black-soft); }

/* ---------- Solution ---------- */
.solution { background: var(--offwhite); }
.solution-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; align-items: center; }
.solution-visual { position: relative; max-width: 420px; }
.solution-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.solution-badge {
  position: absolute; bottom: -26px; right: -26px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--black); color: var(--text-on-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; text-align: center; line-height: 1.3;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, background 0.3s ease;
}
.solution-badge:hover { transform: scale(1.06); background: var(--orange); }
.solution-badge span { font-size: 1.2rem; margin-top: 2px; }
.solution-points { margin-top: 44px; display: flex; flex-direction: column; gap: 38px; }
.solution-point { display: flex; gap: 24px; }
.point-num { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--orange); min-width: 34px; }
.solution-point h3 { font-size: 1.1rem; margin-bottom: 10px; }
.solution-point p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.65; }

/* ---------- Results ---------- */
.results { background: var(--black); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.result-card {
  background: var(--black-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.result-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.result-card--green:hover { border-color: var(--green); }
.result-card .result-arrow { color: var(--orange); }
.result-card--green .result-arrow { color: var(--green); }
.result-arrow { font-size: 1.25rem; font-weight: 800; }
.result-title { color: var(--text-on-dark); font-weight: 600; font-size: 0.94rem; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; align-items: center; }
.services-visual { max-width: 380px; }
.services-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.services-copy h2 { margin-bottom: 38px; }
.services-checklist { display: flex; flex-direction: column; gap: 24px; margin-bottom: 44px; }
.services-checklist li {
  position: relative; padding-left: 32px; font-size: 1rem; color: var(--text-body); line-height: 1.65;
  display: flex; flex-direction: column; gap: 6px;
}
.services-checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange);
}
.services-checklist li::after {
  content: ''; position: absolute; left: 6px; top: 8px;
  width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.services-checklist li:nth-child(even)::before { background: var(--green); }
.services-checklist li strong { color: var(--text-dark); font-weight: 800; font-size: 1.04rem; }
.services-checklist li span { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Portfolio / Work ---------- */
.portfolio { background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 26px; }
.portfolio-item { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; grid-row: span 1; background: var(--black); }
.portfolio-item--tall { grid-row: span 2; }
.portfolio-item img, .portfolio-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img, .portfolio-item:hover video { transform: scale(1.06); }
.portfolio-item figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  padding: 44px 18px 16px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 10px;
}
.portfolio-tag { font-size: 0.76rem; font-weight: 800; color: #fff; background: var(--orange); padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.03em; }
.portfolio-tag--green { background: var(--green); }
.portfolio-stat { font-size: 0.8rem; color: #fff; font-weight: 600; }

/* ---------- Why us (accordion in color block) ---------- */
.why-us { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 90px; align-items: center; }
.why-grid--no-image { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.why-visual { max-width: 260px; }
.why-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-copy h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 46px; }
.why-grid--no-image .why-copy h2 { text-align: center; }
.why-accordion { display: flex; flex-direction: column; }
.why-item { border-bottom: 1px solid rgba(255,255,255,0.16); }
.why-item .accordion-toggle {
  color: #fff; font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
}
.why-item .accordion-panel p { color: rgba(255,255,255,0.72); }
.why-item .accordion-icon::before, .why-item .accordion-icon::after { background: var(--orange); }
.why-item:nth-child(even) .accordion-icon::before, .why-item:nth-child(even) .accordion-icon::after { background: var(--green); }

/* Generic accordion primitives (reused by why-us + faq) */
.accordion-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  padding: 28px 0;
}
.accordion-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.accordion-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.accordion-toggle[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-panel p { padding-bottom: 28px; line-height: 1.7; font-size: 0.97rem; max-width: 560px; }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; background: var(--black); overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: blur(2px) saturate(0.8); }
.testimonials-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.75), rgba(11,11,11,0.92)); }
.testimonials .container { position: relative; }
.testimonial-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--black-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  box-shadow: var(--shadow-lg);
}
.testimonial-stars { display: block; color: var(--orange); letter-spacing: 4px; margin-bottom: 28px; font-size: 1rem; }
.testimonial-track { position: relative; min-height: 180px; }
.testimonial-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.testimonial-slide.is-active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.testimonial-slide p { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: #fff; line-height: 1.5; margin-bottom: 24px; }
.testimonial-name { display: block; font-weight: 700; color: #fff; }
.testimonial-role { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testimonial-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff; font-size: 1.05rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.testimonial-dot.is-active { background: var(--orange); transform: scale(1.2); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; }
.faq-intro .lead { margin-top: 24px; }
.faq-intro .lead a { color: var(--orange-dark); font-weight: 700; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--text-dark); }
.faq-icon::before, .faq-icon::after { background: var(--text-dark); }
.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--orange); }
.faq-answer p { color: var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--black); position: relative; overflow: hidden; }
.final-cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 26px; text-transform: uppercase; }
.final-cta-inner p { color: var(--text-on-dark-muted); font-size: 1.1rem; margin-bottom: 46px; }
.final-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }

/* ---------- Contact ---------- */
.contact { background: var(--offwhite); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.contact-intro .lead { margin-top: 24px; margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon--green { background: var(--green); }
.contact-details a:hover { color: var(--orange-dark); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-field { margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.form-field label span { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea {
  border: none; border-bottom: 1.5px solid var(--border);
  border-radius: 0; padding: 10px 2px;
  font-size: 0.98rem; color: var(--text-dark); background: transparent;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #C6402F; }
.field-error { font-size: 0.8rem; color: #C6402F; min-height: 1em; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
.form-success { text-align: center; margin-top: 16px; font-weight: 700; color: var(--green-dark); background: var(--green-soft); padding: 12px; border-radius: var(--radius-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); padding-top: 120px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 72px; border-bottom: 1px solid var(--border-dark); }
.footer-brand p { color: var(--text-on-dark-muted); margin: 26px 0 30px; max-width: 280px; line-height: 1.65; font-size: 0.94rem; }
.footer-brand .logo-text { color: var(--text-on-dark); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--text-on-dark-muted); transition: color 0.2s ease, border-color 0.2s ease; }
.footer-social a:hover { color: var(--orange); border-color: var(--orange); }
.footer-col h4 { color: var(--text-on-dark); font-size: 0.84rem; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-body); font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: 16px; }
.footer-col li { color: var(--text-on-dark-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 24px 0; color: var(--text-on-dark-muted); font-size: 0.85rem; }
.footer-bottom-inner a:hover { color: var(--orange); }

/* ---------- Floating CTA (WhatsApp) ---------- */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.floating-cta.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:hover { background: var(--green-dark); transform: translateY(-3px) scale(1.02); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 110px 0; }
  .section-head { margin-bottom: 60px; }
  .solution-grid, .faq-layout, .contact-grid, .why-grid, .spotlight-inner, .services-layout { grid-template-columns: 1fr; gap: 50px; }
  .spotlight-copy { text-align: center; }
  .spotlight-copy .btn { margin: 0 auto; }
  .services-visual { order: 2; margin: 40px auto 0; }
  .services-copy { order: 1; }
  .cta-strip-inner { justify-content: center; text-align: center; }
  .solution-visual { order: 2; margin-top: 40px; max-width: 340px; }
  .solution-copy { order: 1; }
  .hero-stats-inner { gap: 22px; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: block; position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(11,11,11,0.98); backdrop-filter: blur(14px);
    padding: 20px 24px 30px; border-top: 1px solid var(--border-dark);
  }
  .main-nav.is-open ul { flex-direction: column; gap: 4px; }
  .main-nav.is-open .nav-link { display: block; padding: 14px 0; font-size: 1.02rem; color: #fff; }
  .header-actions .btn-primary.btn-sm { display: none; }
  .header-actions .btn-whatsapp span { display: none; }
  .header-actions .btn-whatsapp { padding: 10px; }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner { padding: 60px 0 40px; }
  .section { padding: 84px 0; }
  .section-head { margin-bottom: 48px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding-top: 80px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; }
  .testimonial-card { padding: 40px 26px; }
  .final-cta-row { flex-direction: column; align-items: stretch; }
}

@media (max-width: 520px) {
  .results-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats-inner { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .portfolio-item img, .portfolio-item video, .testimonial-slide { transition: none !important; animation: none !important; }
}
