/* =========================================================================
   WayToGrowServices — Corporate Stylesheet
   HCL Cobalt Blue · 1280 container · No icons · Fade-up animations
   ========================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --brand: #0F6CBD;
  --brand-700: #0A5AA0;
  --brand-800: #08477E;
  --brand-50: #E6F0FA;
  --brand-100: #CCE1F5;
  --accent: #2EA1FF;

  --ink: #0B1D33;
  --ink-2: #14314F;
  --text: #1F2937;
  --text-muted: #64748B;
  --text-faint: #94A3B8;
  --border: #E5E9EF;
  --border-strong: #CBD5E1;
  --surface: #FFFFFF;
  --surface-2: #F7F9FC;
  --surface-3: #EEF3F9;
  --navy: #0A1B2E;

  --success: #16A34A;
  --warn: #F59E0B;
  --danger: #DC2626;

  --shadow-xs: 0 1px 2px rgba(15,28,51,.06);
  --shadow-sm: 0 2px 8px rgba(15,28,51,.06), 0 1px 2px rgba(15,28,51,.04);
  --shadow-md: 0 8px 24px rgba(15,28,51,.08), 0 2px 6px rgba(15,28,51,.04);
  --shadow-lg: 0 20px 48px rgba(15,28,51,.12), 0 6px 16px rgba(15,28,51,.06);
  --shadow-brand: 0 12px 28px rgba(15,108,189,.25);

  --container: 1280px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .25s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
ul { list-style: none; }

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 { color: var(--ink); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: 0 16px 34px rgba(15,108,189,.32); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand); color: var(--brand); }

/* Ghost button override inside dark hero */
.hero .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.06);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.90);
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #F4F9FF; transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-full { width: 100%; }

/* ---------- NAVIGATION ---------- */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
#mainNav.scrolled { box-shadow: 0 2px 20px rgba(15,28,51,.06); background: rgba(255,255,255,.98); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-img-wrap {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; }
.logo-mark { color: #fff; font-weight: 800; font-size: .85rem; letter-spacing: 1px; }
.logo-name { font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.logo-name strong { color: var(--brand); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: .94rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--brand);
  transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--brand); }
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,27,46,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 200;
}
.mobile-backdrop.active { opacity: 1; pointer-events: auto; }

.mobile-panel {
  position: fixed;
  top: 0; right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 40px rgba(15,28,51,.15);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  z-index: 201;
  display: flex; flex-direction: column;
}
.mobile-panel.active { transform: translateX(0); }
.mobile-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-panel-brand { font-weight: 700; color: var(--ink); }
.mobile-panel-brand strong { color: var(--brand); font-weight: 800; }
.mobile-panel-close {
  width: 40px; height: 40px;
  font-size: 1.75rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.mobile-panel-close:hover { background: var(--surface-2); color: var(--ink); }

.mobile-panel-nav { flex: 1; padding: 16px 16px; overflow-y: auto; }
.mobile-nav-item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 14px;
  border-radius: 10px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.mobile-nav-item:hover, .mobile-nav-item:active { background: var(--surface-2); }
.mobile-nav-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand);
  background: var(--brand-50);
  padding: 6px 8px;
  border-radius: 6px;
  min-width: 34px;
  text-align: center;
}
.mobile-nav-label { font-weight: 600; color: var(--ink); font-size: 1rem; }
.mobile-panel-footer { padding: 20px 24px; border-top: 1px solid var(--border); }


/* ============================================================
   HERO — Left copy / Right visual
============================================================ */
.hero {
  position: relative;
  padding: 96px 0 0;
  min-height: 720px;
  background:
    linear-gradient(
      105deg,
      rgba(4, 12, 28, 0.88) 0%,
      rgba(8, 45, 100, 0.60) 55%,
      rgba(4, 12, 28, 0.40) 100%
    ),
    url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
  overflow: hidden;
}

/* Decorative CSS overlays — hidden now that a real image is used */
.hero-bg { display: none; }

.hero-container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: 64px;
  align-items: center;
  padding: 40px 0 80px;
}

.hero-copy { max-width: 640px; }
.hero-heading {
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.hero-accent {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-btn-primary { min-width: 190px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}
.hero-stat { padding: 0 18px; border-right: 1px solid rgba(255, 255, 255, 0.15); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; padding-right: 0; }
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num .stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.60);
  margin-left: 4px;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ============================================================
   HERO VISUAL — Phone Showcase
============================================================ */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 40px;
}

.phone-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone frame */
.phone-frame {
  width: 240px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px 10px 20px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.15),
    0 32px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
  animation: phoneFloat 5s ease-in-out infinite;
  position: relative;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.phone-notch {
  width: 80px; height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.phone-notch::before {
  content: "";
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2a2a4a;
}
.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #f97316;
  aspect-ratio: 9 / 16;
  max-height: 460px;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-home-bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Floating badge — top left */
.showcase-badge {
  position: absolute;
  top: 10px;
  left: -20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  animation: badgeFloat 6s ease-in-out infinite 0.8s;
  min-width: 150px;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.sb-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22,163,74,.2);
  flex-shrink: 0;
}
.sb-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 3px;
}
.sb-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

/* Floating chip — bottom right */
.showcase-chip {
  position: absolute;
  bottom: 30px;
  right: -16px;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15,108,189,0.40);
  animation: badgeFloat 5.5s ease-in-out infinite 1.2s;
  color: #fff;
}
.chip-icon { font-size: 1.1rem; flex-shrink: 0; }
.chip-val {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.chip-sub { font-size: .68rem; font-weight: 600; opacity: .8; }

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: 0 -2px 0 0 rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}


/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 100px 0; }
.section-white { background: #fff; }
.section-light { background: var(--surface-2); }


/* ============================================================
   SERVICES (What We Do)
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-100);
}
.svc-top-border {
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width .35s var(--ease);
}
.svc-card:hover .svc-top-border { width: 100%; }
.svc-card-inner { padding: 32px; }

.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.svc-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
  line-height: 1;
}
.svc-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 999px;
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 22px; }
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.svc-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}
.svc-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--brand);
  transition: transform .2s var(--ease);
}
.svc-link:hover { transform: translateX(3px); }

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.services-cta-text h3 { margin-bottom: 6px; }
.services-cta-text p { color: var(--text-muted); font-size: .94rem; }
.services-cta .btn { flex-shrink: 0; }


/* ============================================================
   OUR WORK — PORTFOLIO
============================================================ */
.portfolio-grid { display: flex; flex-direction: column; gap: 48px; }

.portfolio-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); }

.portfolio-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
}

/* Left — visual */
.portfolio-visual {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.portfolio-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,.18), transparent 65%);
  pointer-events: none;
}
.portfolio-phone-wrap {
  position: relative;
  z-index: 1;
}
.portfolio-phone {
  width: 200px;
  background: #12121f;
  border-radius: 32px;
  padding: 10px 9px 16px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.20),
    0 28px 70px rgba(0,0,0,0.50);
  animation: phoneFloat 5s ease-in-out infinite;
}
.portfolio-phone-notch {
  width: 64px; height: 18px;
  background: #12121f;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 5px;
}
.portfolio-phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #f97316;
  aspect-ratio: 9 / 16;
}
.portfolio-screenshot {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Right — info */
.portfolio-info {
  padding: 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: #fff;
}
.portfolio-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.portfolio-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid var(--brand-100);
}
.portfolio-tag-live {
  background: var(--success-bg, #DCFCE7);
  color: #166534;
  border-color: #BBF7D0;
}
.portfolio-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.portfolio-client {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.portfolio-desc {
  font-size: .96rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 28px;
}
.portfolio-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.portfolio-stat { display: flex; flex-direction: column; gap: 4px; }
.ps-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.ps-label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================================
   INDUSTRIES
============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ind-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-100);
}
.ind-num {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand);
  background: var(--brand-50);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.ind-card h4 { color: var(--ink); margin-bottom: 6px; font-size: 1.1rem; }
.ind-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }


/* ============================================================
   STATS STRIP (Dark Navy)
============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #112A47 100%);
  padding: 72px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}
.stat-block { text-align: center; padding: 0 18px; }
.stat-big {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-big .stat-suffix { color: var(--accent); font-weight: 700; }
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
}


/* ============================================================
   PROCESS
============================================================ */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 30px;
}
.process-line {
  position: absolute;
  top: 50px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
}
.process-item {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.process-step-num {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
  box-shadow: 0 4px 14px rgba(15,108,189,.14);
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.process-item:hover .process-step-num {
  transform: scale(1.06);
  background: var(--brand);
  color: #fff;
}
.process-time {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.process-content h3 { margin-bottom: 8px; font-size: 1.15rem; }
.process-content p { color: var(--text-muted); font-size: .92rem; }


/* ============================================================
   REVIEWS
============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
  color: #F59E0B;
  letter-spacing: 3px;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.review-quote {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.review-name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.review-role { font-size: .82rem; color: var(--text-muted); }

.review-cta { text-align: center; }
.review-cta p { color: var(--text-muted); margin-bottom: 14px; }


/* ============================================================
   PRICING
============================================================ */
.pricing-notice {
  max-width: 760px;
  margin: -32px auto 40px;
  padding: 14px 22px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  text-align: center;
}
.pricing-notice p { font-size: .9rem; color: var(--ink-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-featured {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-brand);
}
.featured-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--warn);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(245,158,11,.3);
}
.pricing-tier-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pricing-featured .pricing-tier-label {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.pricing-name { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.pricing-featured .pricing-name { color: #fff; }
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-featured .pricing-amount { color: #fff; }
.pricing-period {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.pricing-featured .pricing-period { color: rgba(255,255,255,.75); }

.pricing-monthly-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 26px;
}
.pricing-monthly-featured {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.pm-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.pricing-featured .pm-amount { color: #fff; }
.pm-amount span { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.pricing-featured .pm-amount span { color: rgba(255,255,255,.75); }
.pm-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand);
  margin: 4px 0 6px;
}
.pricing-featured .pm-label { color: rgba(255,255,255,.9); }
.pm-includes { font-size: .78rem; color: var(--text-muted); }
.pricing-featured .pm-includes { color: rgba(255,255,255,.7); }

.pricing-features { flex: 1; margin-bottom: 26px; }
.pricing-features li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-featured .pricing-features li {
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,255,255,.15);
}
.pricing-featured .pricing-features li::before {
  border-left-color: #fff;
  border-bottom-color: #fff;
}


/* ============================================================
   FAQ
============================================================ */
.faq-section { max-width: 820px; margin: 0 auto; }
.faq-section h3 { text-align: center; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item:hover { border-color: var(--brand-100); }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 500;
  line-height: 1;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.65;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 22px;
}


/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin: 10px 0 16px; }
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 34px;
  font-size: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
a.contact-item:hover { border-color: var(--brand-100); transform: translateY(-2px); }
.contact-item-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card-head { margin-bottom: 22px; }
.form-card-head h3 { margin-bottom: 6px; }
.form-card-head p { color: var(--text-muted); font-size: .92rem; }

.fg { display: flex; flex-direction: column; margin-bottom: 16px; }
.fg label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.fg input, .fg textarea, .fg select {
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,108,189,.14);
}
.fg textarea { resize: vertical; min-height: 96px; font-family: inherit; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 40px;
}
.fg-row, .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg-row .fg, .form-row .fg { margin-bottom: 16px; }

.pref-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pref-radio { display: none; }
.pref-label {
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.pref-radio:checked + .pref-label {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.pref-label:hover { border-color: var(--brand); color: var(--brand); }
.pref-radio:checked + .pref-label:hover { color: #fff; }

.form-submit-btn {
  margin-top: 8px;
  padding: 15px 28px;
  font-size: 1rem;
}
.form-disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success.active { display: block; }
.success-tick {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tickIn .5s var(--ease);
}
@keyframes tickIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--text-muted); margin-bottom: 6px; }
.form-success-tel a { color: var(--brand); font-weight: 700; }


/* ============================================================
   MODAL (Review)
============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,27,46,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transition: opacity .25s var(--ease);
  padding: 20px;
}
.modal-backdrop.active { display: flex; opacity: 1; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.96);
  transition: transform .3s var(--ease);
}
.modal-backdrop.active .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.modal-close {
  width: 36px; height: 36px;
  font-size: 1.6rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.modal-close:hover { background: var(--surface-2); color: var(--ink); }
.modal-body { padding: 22px 28px; }
.modal-footer {
  padding: 18px 28px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.star-selector { display: flex; gap: 6px; }
.star-btn {
  font-size: 1.8rem;
  color: var(--border-strong);
  cursor: pointer;
  transition: color .15s var(--ease), transform .15s var(--ease);
}
.star-btn:hover, .star-btn.active { color: #F59E0B; }
.star-btn:hover { transform: scale(1.15); }


/* ============================================================
   FOOTER
============================================================ */
#footer { background: var(--navy); color: rgba(255,255,255,.85); }
.footer-top { padding: 72px 0 48px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col { max-width: 360px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: transparent;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: transparent;
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-brand-name strong { color: var(--accent); font-weight: 800; }
.footer-tagline {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.social-link {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.social-link:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}

.footer-links-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-col ul li {
  margin-bottom: 10px;
}
.footer-links-col a, .footer-links-col span {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  transition: color .2s var(--ease);
}
.footer-links-col a:hover { color: #fff; }

.footer-certifications {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cert-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.admin-trigger-btn {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.admin-trigger-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
}


/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 400;
  transform: translateY(150%);
  transition: transform .4s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .88rem; color: var(--text); flex: 1; min-width: 220px; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-reject {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}


/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 350;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,.45);
}
.wa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: waPulse 1.8s var(--ease) infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  50%      { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .4s; }

.reveal.rd1 { transition-delay: 0s; }
.reveal.rd2 { transition-delay: .1s; }
.reveal.rd3 { transition-delay: .2s; }
.reveal.rd4 { transition-delay: .3s; }
.reveal.rd5 { transition-delay: .4s; }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .hero-grid { gap: 48px; }
  .hero-visual { max-width: 480px; }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 24px 0 60px;
  }
  .hero-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-visual {
    justify-self: center;
    max-width: 340px;
  }
  .portfolio-featured {
    grid-template-columns: 1fr;
  }
  .portfolio-visual { min-height: 360px; }

  .services-grid, .industries-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-line { display: none; }

  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; max-width: 100%; }

  .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .stat-div { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  .hero { padding: 82px 0 0; min-height: auto; }
  .hero-heading { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .hero-stat {
    border-right: 0;
    padding: 0;
    text-align: center;
  }

  .trust-bar-inner { gap: 12px; }
  .trust-divider { display: none; }
  .trust-badge { font-size: .78rem; }

  .services-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .services-cta-text h3 { font-size: 1.2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-block { padding: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 28px 24px; }

  .pricing-featured { transform: none; }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .visual-card-main,
  .visual-card-float,
  .visual-card-chip { animation-play-state: paused; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  .hero { padding: 78px 0 0; }
  .hero-actions .btn { width: 100%; }
  .hero-btn-primary { min-width: auto; }

  .hero-visual { max-width: 280px; }
  .phone-frame { width: 190px; }
  .showcase-badge { left: -10px; min-width: 130px; padding: 8px 10px; }
  .showcase-chip { right: -10px; padding: 8px 10px; }

  .portfolio-info { padding: 28px 24px 32px; }
  .portfolio-stats { gap: 20px; }
  .portfolio-visual { min-height: 300px; padding: 40px 24px; }
  .portfolio-phone { width: 160px; }

  .services-grid, .industries-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-track { grid-template-columns: 1fr; gap: 40px; }

  .hero-stat-num { font-size: 1.6rem; }
  .stat-big { font-size: 2.2rem; }

  .pricing-card { padding: 32px 24px 28px; }
  .pricing-amount { font-size: 2.4rem; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-inner { padding: 14px 16px; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; }

  .whatsapp-float {
    padding: 10px 16px;
    font-size: .85rem;
    bottom: 16px;
    right: 16px;
  }

  .form-row, .fg-row { grid-template-columns: 1fr; gap: 0; }

  .modal { max-width: 100%; }
  .modal-header, .modal-body { padding-left: 22px; padding-right: 22px; }
  .modal-footer { padding-left: 22px; padding-right: 22px; flex-direction: column; }
  .modal-footer .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
} 