/* ============================================
   DOZZO MARKETING & DESIGN
   Font: Poppins
   Brand: #1B3A6B | #4A90D9 | #6B8CB5
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B3A6B;
  --navy-dk: #0f2144;
  --blue:    #4A90D9;
  --steel:   #6B8CB5;
  --dark:    #0b1828;
  --dark2:   #0f2040;
  --light:   #f4f7fc;
  --white:   #ffffff;
  --text:    #1a2638;
  --muted:   #5a6e87;
  --border:  #dce5f0;
  --green:   #27c93f;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 16px 48px rgba(27,58,107,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); }

/* Lightweight vector-style section backgrounds */
.services::before,
.why::before,
.outcomes::before,
.contact::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.services {
  background:
    linear-gradient(180deg, #f7faff 0%, var(--light) 44%, #eef4fb 100%);
}

.services::before {
  top: 4rem;
  right: -8rem;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 30%, rgba(74,144,217,0.12) 31%, rgba(74,144,217,0.12) 33%, transparent 34%),
    radial-gradient(circle, transparent 48%, rgba(27,58,107,0.10) 49%, rgba(27,58,107,0.10) 51%, transparent 52%),
    radial-gradient(circle, rgba(107,140,181,0.12), transparent 64%);
  opacity: 0.95;
}

.services::after {
  content: '';
  position: absolute;
  left: -4rem;
  bottom: 2rem;
  width: 260px;
  height: 260px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27,58,107,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,107,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(-8deg);
}

.why {
  background:
    radial-gradient(circle at 85% 12%, rgba(74,144,217,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.why::before {
  right: 4%;
  top: 12%;
  width: 380px;
  height: 380px;
  background:
    linear-gradient(135deg, rgba(74,144,217,0.13), transparent 55%),
    repeating-linear-gradient(135deg, rgba(27,58,107,0.08) 0 2px, transparent 2px 16px);
  border-radius: 42px;
  transform: rotate(10deg);
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(74,144,217,0.18), transparent 26%),
    radial-gradient(circle at 86% 84%, rgba(107,140,181,0.12), transparent 28%),
    linear-gradient(135deg, transparent 0 44%, rgba(255,255,255,0.035) 44% 45%, transparent 45% 100%);
}

.process::after {
  content: '';
  position: absolute;
  right: -4rem;
  top: 3rem;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 30deg, rgba(255,255,255,0.055) 0deg 8deg, transparent 8deg 18deg);
  opacity: 0.8;
}

.outcomes {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.outcomes::before {
  left: 2%;
  top: 8%;
  width: 390px;
  height: 390px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(74,144,217,0.13), transparent 42%),
    conic-gradient(from 45deg, rgba(27,58,107,0.08), rgba(107,140,181,0.12), transparent, rgba(27,58,107,0.08));
  filter: blur(0.2px);
}

.contact::before {
  right: -5rem;
  bottom: -8rem;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(74,144,217,0.20), transparent 52%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px);
}

/* ---------- Type helpers ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.section-tag--light { color: var(--steel); }

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-title--light { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.65); }

.text-blue {
  color: var(--blue);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 1.9rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #3a7fc4;
  border-color: #3a7fc4;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74,144,217,0.35);
}
.btn-nav {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-size: 0.82rem;
  padding: 0.55rem 1.15rem;
  border-radius: 7px;
}
.btn-nav:hover { background: #3a7fc4; }
.btn-outline-white {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
/* Logo has transparent bg — no special treatment needed when scrolled */
.navbar.scrolled .nav-logo {
  background: none;
  padding: 0;
  border-radius: 0;
}
/* Nav links go dark on white navbar */
.navbar.scrolled .nav-links a {
  color: var(--dark);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--primary);
  background: rgba(0,0,0,0.05);
}
/* Hamburger bars go dark on white navbar */
.navbar.scrolled .hamburger span {
  background: var(--dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 1.5rem;
  max-width: 1180px;
  margin-inline: auto;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1002;
}
.hamburger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(27,58,107,0.6) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 25%, rgba(74,144,217,0.12) 0%, transparent 55%);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}
.shape-1 { width: 400px; height: 400px; background: var(--navy); top: -100px; left: -80px; }
.shape-2 { width: 300px; height: 300px; background: var(--blue); bottom: 10%; right: 5%; }
.shape-3 { width: 200px; height: 200px; background: var(--steel); top: 40%; right: 30%; }

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  width: fit-content;
}
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(39,201,63,0.2);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-highlight {
  color: var(--blue);
  position: relative;
}
.hero-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.trust-pill i { color: var(--steel); font-size: 0.78rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 520px;
}
.human-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 26px 80px rgba(0,0,0,0.34);
}
.human-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,24,40,0.28), transparent 42%),
    radial-gradient(circle at 18% 20%, rgba(74,144,217,0.26), transparent 28%);
  z-index: 1;
  pointer-events: none;
}
.human-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.human-glow {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(74,144,217,0.22);
  filter: blur(42px);
  z-index: 2;
}
.visual-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(270px, 76%);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(11,24,40,0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
}
.visual-card--search { left: -1.2rem; top: 12%; }
.visual-card--ads { right: -1rem; top: 48%; }
.visual-card--web { left: 1.4rem; bottom: 7%; }
.visual-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  background: rgba(74,144,217,0.16);
}
.visual-card strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}
.visual-card span {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: -0.35rem -0.35rem 1.2rem;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(11,24,40,0.34) 100%),
    radial-gradient(circle at 18% 15%, rgba(74,144,217,0.24), transparent 26%);
  pointer-events: none;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.04);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.sc-featured {
  border-color: rgba(74,144,217,0.3);
  box-shadow: var(--shadow);
}
.sc-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.sc-icon--blue   { background: rgba(74,144,217,0.12); color: var(--blue); }
.sc-icon--gblue  { background: rgba(66,133,244,0.12); color: #4285f4; }
.sc-icon--purple { background: rgba(107,66,193,0.1);  color: #6B42C1; }
.sc-icon--pink   { background: rgba(234,67,53,0.1);   color: #ea4335; }
.sc-icon--green  { background: rgba(52,168,83,0.1);   color: #34a853; }

.sc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.service-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.sc-list { margin-bottom: 1.25rem; }
.sc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--muted);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
}
.sc-list li:last-child { border-bottom: none; }
.sc-list li i { color: #27c93f; font-size: 0.8rem; margin-top: 0.25rem; flex-shrink: 0; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s, color 0.2s;
}
.sc-link:hover { gap: 0.6rem; color: var(--navy); }

.sc-cta {
  background: linear-gradient(145deg, var(--navy), var(--navy-dk));
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.sc-cta-icon {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.sc-cta h3 { color: #fff; }
.sc-cta > p { color: rgba(255,255,255,0.68); }

/* ============================================
   WHY DOZZO
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.why-intro {
  font-size: 1rem;
  color: var(--muted);
  margin: 0.75rem 0 1.75rem;
  line-height: 1.7;
}
.why-features { display: flex; flex-direction: column; gap: 1.25rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.why-feature p { font-size: 0.85rem; color: var(--muted); }

/* E-E-A-T Card */
.eeat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.eeat-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.eeat-header i { font-size: 1.4rem; color: var(--blue); margin-top: 0.1rem; flex-shrink: 0; }
.eeat-header strong { display: block; color: #fff; font-weight: 700; }
.eeat-header p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.1rem; }
.eeat-pillars { display: flex; flex-direction: column; gap: 0.85rem; }
.eeat-pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ep-letter {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(74,144,217,0.2);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eeat-pillar strong { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; }
.eeat-pillar p { font-size: 0.78rem; color: rgba(255,255,255,0.58); margin-top: 0.1rem; }

.why-badges {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.why-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.why-badge i { font-size: 1.3rem; }
.why-badge strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.why-badge span { font-size: 0.77rem; color: var(--muted); }

/* ============================================
   PROCESS
============================================ */
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.process-step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(74,144,217,0.4);
}
.ps-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.ps-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(74,144,217,0.15);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.process-step h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  flex: 1;
}
.ps-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.9rem;
  flex-shrink: 0;
  align-self: center;
}

/* ============================================
   OUTCOMES
============================================ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.outcome-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.oc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.outcome-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.outcome-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.oc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(74,144,217,0.1);
  color: var(--blue);
}
.oc-card--cta {
  background: linear-gradient(145deg, var(--navy), var(--navy-dk));
  border-color: transparent;
}
.oc-card--cta h3 { color: #fff; }
.oc-card--cta p { color: rgba(255,255,255,0.65); }
.oc-info-icon {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.proof-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.proof-note a {
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}
.proof-note a:hover { text-decoration: underline; }

/* ============================================
   FAQ
============================================ */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--blue);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--light); }
.faq-q i {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.35rem 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a[hidden] { display: none; }
.faq-a strong { color: var(--navy); }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}
.contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.ci-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(74,144,217,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.15rem;
}
.ci-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.reg-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.form-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.35rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  background: var(--light);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.form-note i { color: var(--green); }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #060e18;
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 2rem;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 46px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 0.85rem;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.65; }
.footer-reg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-reg i { color: var(--green); }
.footer-col h4 {
  font-weight: 700;
  font-size: 0.83rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
.footer-col p i { color: var(--steel); width: 15px; margin-top: 0.22rem; flex-shrink: 0; }
.footer-col p a { color: rgba(255,255,255,0.55); }
.footer-col p a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   RESPONSIVE — Tablet
============================================ */
@media (max-width: 1024px) {
  .hero .container      { grid-template-columns: 1fr; }
  .hero-visual          { max-width: 680px; min-height: auto; margin: 1rem auto 0; }
  .human-frame img      { min-height: 420px; }
  .visual-card--search  { left: 1rem; top: 1rem; }
  .visual-card--ads     { right: 1rem; top: auto; bottom: 6rem; }
  .visual-card--web     { left: 1rem; bottom: 1rem; }
  .why-grid             { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid        { grid-template-columns: repeat(2, 1fr); }
  .process-steps        { flex-direction: column; gap: 1rem; }
  .ps-arrow             { transform: rotate(90deg); align-self: center; }
  .contact-grid         { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .form-row             { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — Mobile
============================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    display: none;
    z-index: 1001;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; padding: 0.65rem 2rem; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 7rem 0 3.5rem; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-visual {
    display: block;
    max-width: 100%;
    min-height: auto;
    margin-top: 2rem;
    padding: 0;
  }
  .human-frame {
    border-radius: 18px;
  }
  .human-frame img {
    min-height: 320px;
    object-position: center;
  }
  .visual-card {
    display: none;
  }

  .services-grid  { grid-template-columns: 1fr; }
  .outcomes-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .proof-note a   { margin-left: 0; }
}
