/* ============================================================
   REVAMP DIGITAL AI — Agency Website
   Tagline: AI-Powered Growth for Local Businesses
   Colors:
     Teal    #1F7A8C  (primary)
     Yellow  #F2C14E  (accent / CTA)
     Navy    #112D4E  (dark / text)
     White   #FFFFFF
   Fonts:
     Headings — Poppins / Montserrat
     Body     — Open Sans / Lato
   ============================================================ */

/* =================== CSS VARIABLES =================== */
:root {
  --teal:        #1F7A8C;
  --teal-dark:   #166070;
  --teal-light:  #e8f4f7;
  --yellow:      #F2C14E;
  --yellow-dark: #dba93a;
  --yellow-light:#fef9ec;
  --navy:        #112D4E;
  --navy-mid:    #1a3f6f;
  --navy-soft:   #1e3a5f;
  --white:       #FFFFFF;
  --off-white:   #F7FAFB;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --text:        #111827;
  --text-soft:   #6b7280;
  --border:      #e5e7eb;

  --shadow-sm:   0 1px 3px rgba(17,45,78,0.08);
  --shadow:      0 4px 20px rgba(17,45,78,0.10);
  --shadow-md:   0 8px 30px rgba(17,45,78,0.12);
  --shadow-lg:   0 16px 50px rgba(17,45,78,0.16);
  --shadow-xl:   0 24px 72px rgba(17,45,78,0.20);

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --transition:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.16s ease;
}

/* =================== RESET & BASE =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* =================== LAYOUT UTILS =================== */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.section         { padding: 96px 0; }
.section-sm      { padding: 64px 0; }
.section-dark    { background: var(--navy); }
.section-soft    { background: var(--off-white); }
.section-teal    { background: var(--teal); }
.section-gradient {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 60%, var(--teal) 100%);
}

.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.text-teal    { color: var(--teal); }
.text-yellow  { color: var(--yellow); }
.text-muted   { color: var(--text-soft); }

/* Section labels & headers */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}
.label.light { color: rgba(255,255,255,0.55); }
.label.yellow { color: var(--yellow); }

.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }

.section-sub {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,0.68); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.93rem;
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; transition: var(--transition);
  text-align: center; justify-content: center;
}
.btn svg { flex-shrink: 0; }

.btn-yellow {
  background: var(--yellow); color: var(--navy);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark); border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242,193,78,0.48);
}

.btn-teal {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark); border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,122,140,0.42);
}

.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal); color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* =================== NAVBAR =================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,45,78,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px; margin: 0 auto;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--white); line-height: 1.15;
}
.nav-logo-text small {
  display: block; font-size: 0.6rem;
  font-weight: 500; color: var(--yellow);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-family: 'Poppins', sans-serif;
  font-weight: 500; font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); background: rgba(242,193,78,0.08); }

.nav-cta {
  margin-left: 10px;
  background: var(--yellow); color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,193,78,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy);
  padding: 8px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.80);
  font-family: 'Poppins', sans-serif; font-weight: 500;
  padding: 13px 0; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .mob-cta {
  margin-top: 14px;
  background: var(--yellow); color: var(--navy) !important;
  border-radius: var(--radius-sm); padding: 14px !important;
  text-align: center; justify-content: center;
  font-weight: 700; border-bottom: none !important;
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-soft) 50%, #0e4d5c 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}

/* Animated background blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,122,140,0.22) 0%, transparent 70%);
  top: -15%; right: -10%;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,193,78,0.10) 0%, transparent 70%);
  bottom: -10%; left: -5%;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%;
}

/* Badge pill */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,193,78,0.12);
  border: 1px solid rgba(242,193,78,0.25);
  color: var(--yellow);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.76rem; font-weight: 700;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--yellow);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  color: var(--white); line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .underline-accent {
  position: relative; display: inline-block;
}
.hero-title .underline-accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--yellow), var(--teal));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; line-height: 1.72;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-note {
  font-size: 0.78rem; color: rgba(255,255,255,0.48);
  margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
}
.hero-note svg { width: 13px; height: 13px; fill: var(--yellow); }

/* Hero stats */
.hero-metrics {
  display: flex; gap: 32px;
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hm-item { }
.hm-number {
  display: block; font-size: 1.9rem; font-weight: 800;
  color: var(--yellow); font-family: 'Poppins', sans-serif; line-height: 1;
}
.hm-label { font-size: 0.76rem; color: rgba(255,255,255,0.52); margin-top: 4px; }

/* ── Browser Mockup (hero right side) ── */
.browser-wrap {
  position: relative; z-index: 2;
}
.browser-mockup {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.browser-bar {
  background: var(--gray-100);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: var(--white);
  border-radius: 6px; padding: 5px 10px;
  font-size: 0.72rem; color: var(--text-soft);
  font-family: monospace;
  border: 1px solid var(--border);
  max-width: 280px;
}
.browser-body img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover;
}

/* Floating cards on browser */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.8);
}
.float-card.top { top: -16px; right: -16px; }
.float-card.bot { bottom: -16px; left: -16px; }

.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon.teal   { background: rgba(31,122,140,0.10); }
.fc-icon.yellow { background: rgba(242,193,78,0.14); }
.fc-icon.green  { background: rgba(34,197,94,0.12); }
.fc-icon svg { width: 16px; height: 16px; }
.fc-body strong { display: block; font-size: 0.84rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); }
.fc-body span   { font-size: 0.71rem; color: var(--text-soft); }

/* =================== INDUSTRIES BAR =================== */
.industries-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.industries-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.industry-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-100);
  color: var(--text-soft);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}
.industry-tag:hover {
  background: var(--teal-light); color: var(--teal);
  border-color: var(--teal);
}

.industries-label {
  font-size: 0.78rem; color: var(--text-soft);
  font-family: 'Poppins', sans-serif; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap; margin-right: 6px;
}

/* =================== PROBLEM SECTION =================== */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 52px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-card .problem-icon {
  width: 48px; height: 48px;
  background: #fff1f0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problem-card .problem-icon svg { width: 24px; height: 24px; fill: #ef4444; }
.problem-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.problem-card p  { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }
.problem-card .badge-no {
  position: absolute; top: -10px; right: 16px;
  background: #ef4444; color: white;
  font-size: 0.7rem; font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 3px 10px; border-radius: var(--radius-full);
}

/* =================== SERVICES SECTION =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px);
  border-color: rgba(31,122,140,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  background: rgba(31,122,140,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--transition);
}
.svc-icon svg { width: 26px; height: 26px; fill: var(--teal); }
.service-card:hover .svc-icon { background: var(--teal); }
.service-card:hover .svc-icon svg { fill: white; }

.service-card h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 0.87rem; color: var(--text-soft); line-height: 1.72; margin-bottom: 16px; }

.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--teal); font-size: 0.82rem;
  font-weight: 600; font-family: 'Poppins', sans-serif;
}
.svc-link svg { width: 13px; height: 13px; fill: var(--teal); transition: var(--transition-fast); }
.svc-link:hover svg { transform: translateX(4px); }

/* =================== PROCESS STEPS =================== */
.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 44px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--yellow));
  z-index: 0;
}

.process-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.25rem;
  border: 4px solid var(--white);
}
.step-num.s1 { background: var(--teal); color: white; box-shadow: 0 0 0 2px var(--teal); }
.step-num.s2 { background: var(--navy-mid); color: white; box-shadow: 0 0 0 2px var(--navy-mid); }
.step-num.s3 { background: var(--yellow); color: var(--navy); box-shadow: 0 0 0 2px var(--yellow); }

.process-step h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; }
.process-step p  { font-size: 0.88rem; color: var(--text-soft); line-height: 1.72; }

.step-tag {
  display: inline-block;
  margin-top: 14px;
  background: rgba(31,122,140,0.08); color: var(--teal);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.74rem; font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.step-tag.yellow { background: rgba(242,193,78,0.12); color: var(--yellow-dark); }

/* =================== RESULTS BAR =================== */
.results-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 0;
}
.result-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.result-item:last-child { border-right: none; }
.result-number {
  font-size: 2.4rem; font-weight: 800;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif; line-height: 1;
  display: block;
}
.result-label { font-size: 0.85rem; color: rgba(255,255,255,0.58); margin-top: 8px; }
.result-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-top: 4px; }

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px; margin-top: 52px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 18px; right: 22px;
  font-size: 3.5rem; font-family: Georgia, serif;
  color: var(--teal); opacity: 0.12; line-height: 1;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; fill: var(--yellow); }

.testi-card blockquote {
  font-size: 0.92rem; color: var(--text);
  line-height: 1.74; margin-bottom: 22px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0; overflow: hidden;
}
.author-av img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.88rem; font-family: 'Poppins', sans-serif; color: var(--navy); }
.author-info span   { font-size: 0.76rem; color: var(--text-soft); }

/* =================== PRICING =================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 52px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.price-card.featured {
  border-color: var(--teal);
  background: var(--navy); color: var(--white);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.featured-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-size: 0.7rem; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  padding: 4px 16px; border-radius: var(--radius-full);
  white-space: nowrap; letter-spacing: 0.5px;
}

.price-card-name { font-size: 1.05rem; margin-bottom: 5px; }
.price-card-sub  { font-size: 0.82rem; color: var(--text-soft); }
.price-card.featured .price-card-name { color: white; }
.price-card.featured .price-card-sub  { color: rgba(255,255,255,0.55); }

.price-amount {
  margin: 22px 0 0;
  display: flex; align-items: flex-start; justify-content: center; gap: 2px;
}
.price-curr { font-size: 1.2rem; font-weight: 600; color: var(--teal); margin-top: 8px; }
.price-num  { font-size: 2.7rem; font-weight: 800; font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1; }
.price-per  { font-size: 0.8rem; color: var(--text-soft); align-self: flex-end; margin-bottom: 4px; }

.price-card.featured .price-curr { color: var(--yellow); }
.price-card.featured .price-num  { color: var(--white); }
.price-card.featured .price-per  { color: rgba(255,255,255,0.5); }

.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }

.price-features { display: flex; flex-direction: column; gap: 11px; text-align: left; margin-bottom: 28px; }
.price-feature  { display: flex; align-items: flex-start; gap: 9px; font-size: 0.86rem; }
.price-feature svg { width: 17px; height: 17px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-feature { color: rgba(255,255,255,0.82); }
.price-card.featured .price-feature svg { fill: var(--yellow); }

/* =================== LEAD FORM SECTION =================== */
.demo-section {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-soft) 60%, #0e4d5c 100%);
  position: relative; overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(31,122,140,0.25) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none;
}
.demo-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(242,193,78,0.08) 0%, transparent 68%);
  border-radius: 50%; pointer-events: none;
}

.demo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 2;
}

.demo-copy h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: white; margin-bottom: 14px; }
.demo-copy p  { color: rgba(255,255,255,0.72); margin-bottom: 28px; line-height: 1.75; }

.demo-bullets { display: flex; flex-direction: column; gap: 13px; }
.demo-bullet  {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.80); font-size: 0.92rem;
}
.demo-bullet svg { width: 20px; height: 20px; fill: var(--yellow); flex-shrink: 0; }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.form-card-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.form-card-sub   { color: var(--text-soft); font-size: 0.88rem; margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--white);
  transition: var(--transition); outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,122,140,0.10);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.98rem; }
.form-privacy { text-align: center; font-size: 0.72rem; color: var(--text-soft); margin-top: 12px; }

.form-success { display: none; text-align: center; padding: 40px 16px; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(31,122,140,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.success-icon svg { width: 32px; height: 32px; fill: var(--teal); }
.form-success h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 7px; }
.form-success p  { color: var(--text-soft); font-size: 0.88rem; }

/* =================== PAGE HERO (inner pages) =================== */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 152px 0 88px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(31,122,140,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-bottom: 22px;
}
.breadcrumb a    { color: rgba(255,255,255,0.50); font-size: 0.82rem; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg  { width: 12px; height: 12px; fill: rgba(255,255,255,0.30); }
.breadcrumb span { color: var(--yellow); font-size: 0.82rem; }

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); color: white; margin-bottom: 16px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.70); max-width: 550px; margin: 0 auto; line-height: 1.74; }

/* =================== SERVICES PAGE =================== */
.svc-detail-list { display: flex; flex-direction: column; gap: 22px; margin-top: 52px; }
.svc-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 28px; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 30px;
  transition: var(--transition);
}
.svc-row:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,122,140,0.18); transform: translateX(4px);
}
.svc-row-icon {
  width: 70px; height: 70px; background: rgba(31,122,140,0.07);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-row-icon svg { width: 32px; height: 32px; fill: var(--teal); }
.svc-row-body h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 7px; }
.svc-row-body p  { color: var(--text-soft); font-size: 0.9rem; line-height: 1.70; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.tag  {
  background: rgba(31,122,140,0.07); color: var(--teal);
  padding: 3px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; font-family: 'Poppins', sans-serif;
}
.svc-row-price { text-align: right; flex-shrink: 0; min-width: 90px; }
.price-from  { font-size: 0.72rem; color: var(--text-soft); display: block; }
.price-val   { font-size: 1.35rem; font-weight: 700; color: var(--teal); font-family: 'Poppins', sans-serif; display: block; }

/* =================== ABOUT PAGE =================== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--teal); color: white;
  padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 1.9rem; font-family: 'Poppins', sans-serif; line-height: 1; }
.about-badge span   { font-size: 0.76rem; opacity: 0.88; }

.about-text .label  { display: block; }
.about-text .section-heading { text-align: left; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.about-text p { color: var(--text-soft); margin-bottom: 14px; line-height: 1.8; font-size: 0.96rem; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 11px; }
.value-ico  {
  width: 34px; height: 34px; background: rgba(31,122,140,0.09);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-ico svg { width: 16px; height: 16px; fill: var(--teal); }
.value-item h4 { font-size: 0.87rem; color: var(--navy); margin-bottom: 3px; }
.value-item p  { font-size: 0.8rem; color: var(--text-soft); margin: 0; line-height: 1.55; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.mv-box  { border-radius: var(--radius); padding: 32px; }
.mv-box.teal   { background: var(--teal); color: white; }
.mv-box.yellow { background: var(--yellow); color: var(--navy); }
.mv-box h3 { font-size: 1.08rem; margin-bottom: 10px; }
.mv-box p  { font-size: 0.9rem; line-height: 1.72; }
.mv-box.teal p { color: rgba(255,255,255,0.80); }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px; margin-top: 48px;
}
.team-card {
  text-align: center; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(31,122,140,0.18); }
.team-av {
  width: 86px; height: 86px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
  border: 3px solid var(--teal);
}
.team-av img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 0.96rem; color: var(--navy); margin-bottom: 3px; }
.team-role    { font-size: 0.76rem; color: var(--teal); font-weight: 600; font-family: 'Poppins', sans-serif; margin-bottom: 10px; display: block; }
.team-card p  { font-size: 0.82rem; color: var(--text-soft); line-height: 1.62; }

/* =================== CONTACT PAGE =================== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 56px; margin-top: 52px;
}
.contact-info h2 { font-size: 1.75rem; color: var(--navy); margin-bottom: 14px; }
.contact-info p  { color: var(--text-soft); margin-bottom: 28px; line-height: 1.74; }

.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-method  { display: flex; align-items: center; gap: 14px; }
.cm-icon {
  width: 46px; height: 46px; background: rgba(31,122,140,0.08);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-icon svg { width: 21px; height: 21px; fill: var(--teal); }
.cm-body strong { display: block; font-size: 0.82rem; font-family: 'Poppins', sans-serif; color: var(--navy); margin-bottom: 2px; }
.cm-body a,
.cm-body span  { font-size: 0.9rem; color: var(--teal); }
.cm-body a:hover { color: var(--navy); }

.map-placeholder {
  background: var(--teal-light); border-radius: var(--radius);
  height: 200px; display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(31,122,140,0.28); flex-direction: column; gap: 8px;
  color: var(--teal); font-size: 0.88rem; font-family: 'Poppins', sans-serif;
  margin-top: 20px;
}
.map-placeholder svg { width: 28px; height: 28px; fill: var(--teal); }

/* =================== CTA BANNER =================== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg); padding: 52px 40px; text-align: center;
}
.cta-banner.yellow { background: var(--yellow); }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; margin-bottom: 12px; }
.cta-banner.yellow h2 { color: var(--navy); }
.cta-banner p  { color: rgba(255,255,255,0.80); margin-bottom: 28px; font-size: 1rem; }
.cta-banner.yellow p { color: rgba(17,45,78,0.72); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =================== FOOTER =================== */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.68);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 52px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .f-logo-icon {
  width: 38px; height: 38px; background: var(--teal);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .f-logo-icon svg { width: 20px; height: 20px; fill: white; }
.footer-brand .f-logo-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: white; font-size: 1.08rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.72; margin-bottom: 22px; }

.social-links { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.soc-link:hover { background: var(--teal); transform: translateY(-2px); }
.soc-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.75); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: white; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.58); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a,
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.60); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.36); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.79rem; color: rgba(255,255,255,0.36); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* =================== PORTFOLIO / INDUSTRY PHOTO GRID =================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.portfolio-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  cursor: default;
}
.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,45,78,0.82) 0%, rgba(17,45,78,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.portfolio-card-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem; color: white;
  display: block; margin-bottom: 3px;
}
.portfolio-card-sub {
  font-size: 0.76rem; color: rgba(255,255,255,0.70);
}
.portfolio-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--navy);
  font-size: 0.7rem; font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 3px 10px; border-radius: var(--radius-full);
}

/* Industry strip */
.industry-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 48px;
}
.industry-photo {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: 3/4;
}
.industry-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.industry-photo:hover img { transform: scale(1.08); }
.industry-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(17,45,78,0.88), transparent);
  color: white;
  font-size: 0.72rem; font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 20px 10px 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .industry-strip   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-grid   { grid-template-columns: 1fr; }
  .industry-strip   { grid-template-columns: repeat(2, 1fr); }
}

/* =================== SCROLL TOP =================== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px; background: var(--teal); color: white;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; visibility: hidden; z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover   { background: var(--navy); transform: translateY(-3px); }
.scroll-top svg     { width: 18px; height: 18px; fill: white; }

/* =================== FADE-IN ANIMATION =================== */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
.fade-in         { opacity: 0; }
.fade-in.visible { animation: fadeInUp 0.55s ease forwards; }

/* =================== RESPONSIVE — Tablet =================== */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-actions        { justify-content: center; }
  .hero-metrics        { justify-content: center; }
  .float-card          { display: none; }

  .pricing-grid        { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .demo-grid           { grid-template-columns: 1fr; gap: 40px; }
  .about-split         { grid-template-columns: 1fr; gap: 40px; }
  .about-badge         { bottom: 10px; right: 10px; }
  .contact-layout      { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid             { grid-template-columns: 1fr; }

  .process-steps::before { display: none; }
  .process-steps       { grid-template-columns: 1fr; gap: 28px; }

  .problem-grid        { grid-template-columns: 1fr; }
  .results-row         { grid-template-columns: 1fr 1fr; }

  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* =================== RESPONSIVE — Mobile =================== */
@media (max-width: 768px) {
  .section     { padding: 60px 0; }
  .section-sm  { padding: 44px 0; }

  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }

  .services-grid        { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .value-grid           { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .form-card            { padding: 24px; }

  .svc-row { grid-template-columns: 1fr; gap: 16px; }
  .svc-row-price { text-align: left; }

  .footer-grid         { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .industries-inner    { gap: 7px; }
  .cta-banner          { padding: 36px 22px; }
  .cta-btns            { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; align-items: center; }
  .hero-metrics    { flex-wrap: wrap; gap: 18px; justify-content: center; }
  .team-grid       { grid-template-columns: 1fr; }
  .results-row     { grid-template-columns: 1fr 1fr; }
  .result-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
