/* ═══════════════════════════════════════════════════════════════
   Process Flow Lab — Agence Digitale Médicale Premium
   Design System: Medical Luxury · Mobile-First · High-Conversion
═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --navy:          #08111F;
  --navy-mid:      #0D1C30;
  --navy-card:     #111D2E;
  --emerald:       #059669;
  --emerald-mid:   #10B981;
  --emerald-light: #ECFDF5;
  --blue:          #2563EB;
  --blue-light:    #EFF6FF;
  --gold:          #F59E0B;
  --text:          #1F2937;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --white:         #FFFFFF;
  --bg:            #F8FAFC;
  --bg-card:       #FFFFFF;
  --border:        #E5E7EB;
  --border-dark:   rgba(255,255,255,.08);

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.11), 0 4px 16px rgba(0,0,0,.07);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.15);
  --shadow-em:  0 12px 40px rgba(5,150,105,.18);

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: .28s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ─── Utilities ─── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.bg-light    { background: var(--bg); }
.bg-dark     { background: var(--navy); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(5,150,105,.15);
}
.section-label.light {
  color: var(--emerald-mid);
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.2);
}

.section-header   { text-align: center; margin-bottom: 64px; }
.section-title    { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub      { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.section-sub.light { color: rgba(255,255,255,.65); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.delay-5 { transition-delay: .5s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5,150,105,.35);
}
.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(5,150,105,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--radius-sm); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
}
.btn-wa:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37,211,102,.5);
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(8,17,31,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 13px;
  box-shadow:
    0 0 0 1.5px rgba(16,185,129,.35),
    0 0 0 3px rgba(16,185,129,.1),
    0 4px 16px rgba(0,0,0,.45);
  filter: brightness(1.08);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.logo-tagline {
  font-size: .67rem;
  color: var(--emerald-mid);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--emerald-mid);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(5,150,105,.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(5,150,105,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(37,99,235,.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(16,185,129,.08) 0%, transparent 50%);
  animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  from { opacity: .7; }
  to   { opacity: 1; }
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald-mid);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald-mid);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--emerald-mid) 0%, #34D399 50%, var(--emerald-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 28px;
  backdrop-filter: blur(8px);
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.metric-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.metric-plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-mid);
  line-height: 1;
}
.metric-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.metric-label {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  margin: 0 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
  width: 100%;
  max-width: 380px;
}
.founder-img-wrap {
  position: relative;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,31,.85) 0%, transparent 50%);
}
.founder-badge-floating {
  position: absolute;
  top: 16px;
  right: -20px;
  background: var(--emerald);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(5,150,105,.5);
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.founder-info {
  padding: 16px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}
.founder-info strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.founder-info span {
  font-size: .78rem;
  color: var(--emerald-mid);
  font-weight: 500;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  min-width: 180px;
}
.hero-float-card svg { color: var(--emerald-mid); flex-shrink: 0; }
.hero-float-card div { display: flex; flex-direction: column; gap: 1px; }
.float-label { font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.float-value { font-size: .88rem; font-weight: 700; color: var(--white); }
.hero-float-1 {
  top: 15%;
  left: -30px;
  animation: float-card-1 4s ease-in-out infinite;
}
.hero-float-2 {
  bottom: 20%;
  right: -20px;
  animation: float-card-2 4s ease-in-out infinite 1s;
}
@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.4));
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════
   PROBLEM SECTION
══════════════════════════════ */
.problem-section {
  background: var(--navy-mid);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,150,105,.08) 0%, transparent 70%);
  pointer-events: none;
}
.problem-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events: none;
}
.problem-intro {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.problem-intro .section-title { color: var(--white); }
.problem-intro .section-sub   { color: rgba(255,255,255,.55); }
.problem-highlight {
  color: #F87171;
  font-weight: 700;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(90deg, #F87171, #F59E0B);
  opacity: 0;
  transition: opacity var(--transition);
}
.problem-card:hover { border-color: rgba(248,113,113,.2); transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 56px; height: 56px;
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F87171;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.problem-solution-hint {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(5,150,105,.1) 0%, rgba(16,185,129,.05) 100%);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.solution-icon {
  width: 52px; height: 52px;
  background: var(--emerald);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.problem-solution-hint p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
}
.problem-solution-hint strong {
  color: var(--emerald-mid);
}

/* ══════════════════════════════
   SERVICES SECTION
══════════════════════════════ */
.services-section { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--emerald-light);
  border: 1px solid rgba(5,150,105,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: var(--emerald-light);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1.5;
}
.service-outcome svg { flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════
   PORTFOLIO / RESULTS
══════════════════════════════ */
.portfolio-section { padding: 100px 0; background: var(--bg); }
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.case-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.case-card:hover .case-img-wrap img { transform: scale(1.05); }
.case-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--emerald);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.case-body { padding: 28px; }
.case-client { font-size: .78rem; font-weight: 600; color: var(--emerald); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.case-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.case-body p  { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.case-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.case-result-badge {
  background: var(--emerald-light);
  color: var(--emerald);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

/* Work Grid */
.work-grid-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work-grid-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.work-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.work-grid-item:hover img { transform: scale(1.08); }
.work-grid-item .work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,31,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.work-grid-item:hover .work-overlay { opacity: 1; }
.work-overlay-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* ══════════════════════════════
   PROCESS SECTION
══════════════════════════════ */
.process-section { padding: 100px 0; background: var(--white); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(5,150,105,.3);
  border: 4px solid var(--white);
  outline: 2px solid rgba(5,150,105,.2);
  transition: all var(--transition);
}
.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(5,150,105,.45);
}
.step-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  margin-top: 8px;
  color: var(--emerald);
}
.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-step p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about-section { padding: 100px 0; background: var(--bg); }
.about-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
  width: 100%; height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  object-position: top center;
}
.about-decoration {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 12px 40px rgba(5,150,105,.4);
  text-align: center;
  padding: 16px;
}
.about-decoration .deco-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-decoration .deco-label {
  font-size: .72rem;
  font-weight: 600;
  opacity: .9;
  line-height: 1.3;
  margin-top: 6px;
}
.about-decoration-2 {
  position: absolute;
  top: -24px; left: -24px;
  width: 100px; height: 100px;
  background: var(--navy);
  border: 2px solid rgba(16,185,129,.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.about-content .section-label { display: inline-flex; margin-bottom: 12px; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.about-content h2 span { color: var(--emerald); }
.about-content p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.expertise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.expertise-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(5,150,105,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(37,99,235,.07) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(16,185,129,.2);
  transform: translateY(-4px);
}
.quote-icon {
  color: var(--emerald-mid);
  margin-bottom: 20px;
  opacity: .6;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}
.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.1);
}
.author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.author-role {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ══════════════════════════════
   FAQ SECTION
══════════════════════════════ */
.faq-section { padding: 100px 0; background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: rgba(5,150,105,.3); }
.faq-question {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-question span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--emerald);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.cta-section {
  padding: 120px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(5,150,105,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section .section-label { margin-bottom: 24px; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.cta-title span { color: var(--emerald-mid); }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 44px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-img { width: 40px; height: 40px; margin-bottom: 16px; border-radius: 12px; box-shadow: 0 0 0 1.5px rgba(16,185,129,.3), 0 4px 14px rgba(0,0,0,.4); filter: brightness(1.08); }
.footer-brand .logo-name { color: var(--white); font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; display: block; margin-bottom: 4px; }
.footer-brand .logo-tagline { color: var(--emerald-mid); font-size: .72rem; font-weight: 500; display: block; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--emerald-mid); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--emerald-mid); }
.footer-contact-item svg { color: var(--emerald-mid); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--emerald-mid); }

/* ══════════════════════════════
   WHATSAPP STICKY BUTTON
══════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: all var(--transition);
}
.wa-fab:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,.6);
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-ripple 2.5s ease-in-out infinite;
}
@keyframes wa-ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-lg);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
  border-right: 0;
}
.wa-fab:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-inner { grid-template-columns: 360px 1fr; gap: 48px; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .services-section, .portfolio-section, .process-section,
  .about-section, .testimonials-section, .faq-section, .cta-section { padding: 72px 0; }
  .problem-section { padding: 72px 0; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 999;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 24px; width: 100%; font-size: .95rem; }
  .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual {
    order: -1;
    max-height: 320px;
    overflow: hidden;
  }
  .founder-card { max-width: 260px; margin: 0 auto; }
  .hero-float-1, .hero-float-2 { display: none; }
  .founder-badge-floating { right: -8px; font-size: .65rem; padding: 6px 10px; }
  .hero-sub br { display: none; }
  .hero-ctas { gap: 12px; }
  .btn { padding: 13px 22px; font-size: .9rem; }
  .btn-lg { padding: 15px 28px; font-size: .95rem; }
  .hero-metrics {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  .metric-divider { display: none; }
  .metric { min-width: calc(50% - 6px); }
  .metric-num { font-size: 1.6rem; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-solution-hint { flex-direction: column; text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  .case-studies { grid-template-columns: 1fr; }


  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 0;
  }
  .process-timeline::before {
    top: 36px; bottom: 36px;
    left: 36px; right: auto;
    width: 2px; height: auto;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    align-items: flex-start;
    padding-left: 0;
  }
  .step-circle { margin-bottom: 0; flex-shrink: 0; position: relative; z-index: 1; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .about-decoration { right: -12px; bottom: -12px; width: 110px; height: 110px; }
  .about-decoration-2 { display: none; }
  .about-expertise { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* WA FAB */
  .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-tooltip { display: none; }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .deliverables-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   CASE 2 — GOOGLE MAPS VISUAL CARD
══════════════════════════════ */
.case-visual-card {
  position: relative;
  background: linear-gradient(135deg, #0D1C30 0%, #0B2240 60%, #0D2E45 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(5,150,105,.12) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  pointer-events: none;
}
.case-visual-card .case-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}
.gmaps-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 20px 24px;
  width: 88%;
  max-width: 320px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.gmaps-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 12px;
}
.gmaps-header svg { color: #ef4444; flex-shrink: 0; }
.rating-transform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.rating-before, .rating-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.rating-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.rating-num.bad  { color: #F87171; }
.rating-num.good { color: #34D399; }
.stars-row {
  display: flex;
  gap: 1px;
  font-size: .9rem;
}
.star.filled { color: #F59E0B; }
.star.empty  { color: rgba(255,255,255,.2); }
.rating-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.rating-arrow {
  color: var(--emerald-mid);
  display: flex;
  align-items: center;
}
.gmaps-reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: 6px;
  padding: 7px 10px;
}

/* ══════════════════════════════
   DELIVERABLES SHOWCASE
══════════════════════════════ */
.deliverables-header {
  text-align: center;
  margin-bottom: 36px;
  margin-top: 72px;
}
.deliverables-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.015em;
}
.deliverables-sub {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.deliverable-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5,150,105,.2);
}
.deliverable-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Web visual */
.dv-web {
  background: linear-gradient(135deg, #0B1426 0%, #162035 100%);
}
.browser-frame {
  width: 80%;
  background: #1E2D45;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #111D2E;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.browser-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.browser-bar span:nth-child(1) { background: #ef4444; }
.browser-bar span:nth-child(2) { background: #f59e0b; }
.browser-bar span:nth-child(3) { background: #22c55e; }
.browser-body { padding: 10px; }
.browser-hero-strip {
  height: 36px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: .85;
}
.browser-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.bl { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; }
.bl-long  { width: 90%; }
.bl-med   { width: 70%; }
.bl-short { width: 50%; }
.browser-btn-strip {
  width: 44%;
  height: 18px;
  background: rgba(5,150,105,.4);
  border-radius: 4px;
}

/* Social visual */
.dv-social {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  flex-direction: column;
  gap: 8px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 75%;
}
.ig-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-c1 { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.ig-c2 { background: rgba(255,255,255,.08); }
.ig-c3 { background: linear-gradient(135deg, #2563EB, #1d4ed8); }
.ig-c4 { background: rgba(255,255,255,.06); }
.ig-c5 { background: linear-gradient(135deg, var(--emerald), var(--emerald-mid)); }
.ig-c6 { background: rgba(255,255,255,.04); }
.insta-count {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Video visual */
.dv-video {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.reel-phone {
  width: 64px;
  height: 120px;
  background: #0D0D0D;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  position: relative;
}
.reel-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0B2240 0%, #059669 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.reel-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.reel-badges {
  position: absolute;
  bottom: 8px; left: 4px; right: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reel-badges span {
  font-size: .5rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.4);
  padding: 1px 4px;
  border-radius: 3px;
  text-align: center;
}

/* SEO visual */
.dv-seo {
  background: linear-gradient(135deg, #0B2240 0%, #0D1C30 100%);
}
.seo-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.seo-pin { animation: bounce-pin 2s ease-in-out infinite; }
@keyframes bounce-pin {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.seo-rank {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
}
.seo-bar {
  width: 16px;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,.12);
  position: relative;
}
.sb-1 { height: 40%; }
.sb-2 { height: 65%; }
.sb-3 { height: 100%; background: linear-gradient(to top, var(--emerald), var(--emerald-mid)); }
.sb-3 span {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 800;
  color: var(--emerald-mid);
  white-space: nowrap;
}
.seo-label {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Report visual */
.dv-report {
  background: linear-gradient(135deg, #0B1426 0%, #0D1C30 100%);
}
.report-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80%;
}
.report-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
  height: 48px;
}
.rb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(5,150,105,.3), rgba(16,185,129,.5));
  transition: height .3s ease;
}
.report-card-inner:hover .rb { opacity: .8; }
.report-trend { line-height: 0; }
.report-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  color: var(--emerald-mid);
}
.report-stat span {
  font-weight: 500;
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  display: block;
  text-align: center;
}

/* Brand visual */
.dv-brand {
  background: linear-gradient(135deg, #0B1426 0%, #1a1030 100%);
}
.brand-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brand-palette {
  display: flex;
  gap: 6px;
}
.bp-color {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
}
.bp-1 { background: var(--emerald); }
.bp-2 { background: var(--blue); }
.bp-3 { background: #7C3AED; }
.brand-logo-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 14px;
}
.blm-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
}
.blm-lines { display: flex; flex-direction: column; gap: 3px; }
.blm-l1 { width: 48px; height: 5px; background: rgba(255,255,255,.4); border-radius: 3px; }
.blm-l2 { width: 34px; height: 4px; background: rgba(255,255,255,.2); border-radius: 3px; }
.brand-fonts {
  display: flex;
  gap: 10px;
}
.bf {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
}
.bf-1 { color: var(--emerald-mid); }

/* Deliverable info block */
.deliverable-info {
  padding: 20px 22px 22px;
}
.deliverable-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}
.deliverable-info p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .gmaps-card { padding: 16px 18px; }
  .rating-num { font-size: 1.8rem; }
}
