/* ============================================
   DIGITAL MARKETING AGENCY — Stylesheet
   ============================================ */

:root {
  --navy-900: #0a1837;
  --navy-800: #11214a;
  --navy-700: #1a3478;
  --navy-600: #234399;
  --navy-50: #eef2fa;
  --orange: #ff6b1a;
  --orange-dark: #e55300;
  --orange-light: #fff1e8;
  --green: #16a34a;
  --green-dark: #128a3e;
  --grey-50: #f7f8fb;
  --grey-100: #eef0f5;
  --grey-200: #dde1ea;
  --grey-300: #c7cdda;
  --grey-400: #8a93a6;
  --grey-500: #6b7385;
  --grey-600: #4a5269;
  --grey-700: #2d3344;
  --grey-800: #1f2433;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 2px 8px rgba(10, 24, 55, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 24, 55, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 24, 55, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

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

section { padding: 90px 0; position: relative; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--grey-200);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo-mark-svg {
  display: inline-flex;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
  background: #0a1837;  /* Fallback background ensures dark color always visible */
}
.logo-mark-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-mark-svg svg rect:first-child {
  fill: #0a1837 !important;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-text-accent { color: var(--orange); }
/* Footer logo override - white text */
.footer-brand .logo .logo-text { color: white; }
.footer-brand .logo .logo-text-accent { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-600);
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy-900);
  background: var(--grey-50);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--navy-900);
  transition: all 0.3s;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .main-nav.active { transform: translateY(0); }
  .main-nav a { padding: 14px 18px; }
  .menu-toggle { display: flex; }
  .header-cta .btn:not(.mobile-cta) { display: none; }
  .mobile-cta { padding: 9px 16px; font-size: 0.85rem; }
}
@media (max-width: 540px) {
  .header-cta .mobile-cta { display: none; }
  .header-inner { height: 64px; }
  .main-nav { top: 64px; }
  .logo { font-size: 1.05rem; }
  .logo-mark-svg { width: 34px; height: 34px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.45);
}
.btn-secondary {
  background: var(--navy-900);
  color: white;
}
.btn-secondary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--grey-200);
}
.btn-outline:hover {
  border-color: var(--navy-900);
  background: var(--navy-50);
}
.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1eb858;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 26, 0.08), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(35, 67, 153, 0.08), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 24, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 24, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 60px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-600);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.hero-eyebrow .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--orange-light);
  z-index: -1;
  border-radius: 2px;
}

.hero p.lead {
  font-size: 1.125rem;
  color: var(--grey-600);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-200);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--grey-600);
  margin-top: 4px;
}

/* Hero visual composition */
.hero-visual {
  position: relative;
  height: 520px;
}
/* Whenever the hero grid stacks (≤ 992px), cards also stack cleanly */
@media (max-width: 992px) {
  .hero-visual {
    height: auto;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 8px;
  }
  .hero-card {
    position: relative !important;
    width: 100% !important;
    max-width: 420px;
    margin: 0 auto 16px !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    animation: none !important;
  }
}
@media (max-width: 600px) {
  .hero-card { max-width: 340px; }
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  border: 1px solid var(--grey-100);
}
.hero-card-1 {
  top: 0; left: 0;
  width: 56%;
  animation: floatY 6s ease-in-out infinite;
}
.hero-card-2 {
  top: 32%; right: 0;
  width: 50%;
  animation: floatY 6s ease-in-out infinite 1s;
}
.hero-card-3 {
  bottom: 0; left: 18%;
  width: 60%;
  animation: floatY 6s ease-in-out infinite 2s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.icon-blue { background: var(--navy-50); color: var(--navy-700); }
.icon-orange { background: var(--orange-light); color: var(--orange); }
.icon-green { background: #e7f7ee; color: var(--green); }

.hero-card-label { font-weight: 600; font-size: 0.85rem; color: var(--navy-900); }
.hero-card-sub { font-size: 0.72rem; color: var(--grey-400); }

.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 70px; padding-top: 8px; }
.bar { flex: 1; background: var(--navy-50); border-radius: 4px 4px 0 0; transition: height 0.3s; }
.bar.active { background: var(--navy-700); }
.bar.accent { background: var(--orange); }

.metric-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.metric-row:last-child { margin-bottom: 0; }
.metric-label { font-size: 0.78rem; color: var(--grey-600); }
.metric-value { font-weight: 700; font-size: 0.9rem; color: var(--navy-900); }
.metric-value.up { color: var(--green); }

.lead-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--grey-50);
  border-radius: 8px;
  margin-bottom: 8px;
}
.lead-pill:last-child { margin-bottom: 0; }
.lead-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.lead-info { flex: 1; }
.lead-name { font-size: 0.8rem; font-weight: 600; color: var(--navy-900); }
.lead-meta { font-size: 0.7rem; color: var(--grey-400); }
.lead-tag { font-size: 0.65rem; padding: 3px 8px; background: var(--green); color: white; border-radius: 100px; font-weight: 600; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  font-size: 1.05rem;
  color: var(--grey-600);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-50), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--navy-700); }

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--grey-600); font-size: 0.95rem; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ============================================
   WHY DIGITAL MARKETING (with feature visuals)
   ============================================ */
.why-section { background: var(--grey-50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { color: var(--grey-600); font-size: 0.92rem; }

/* ============================================
   PROCESS FLOW
   ============================================ */
.process-section {
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 26, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(35, 67, 153, 0.4), transparent 40%);
}
.process-section .section-head h2 { color: white; }
.process-section .section-head p { color: rgba(255, 255, 255, 0.7); }
.process-section .section-eyebrow { color: var(--orange); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px 18px;
  border-radius: var(--radius-md);
  transition: all 0.3s;
  position: relative;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.process-num {
  width: 36px; height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.process-step h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
.process-step p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .choose-grid { grid-template-columns: 1fr; gap: 40px; } }

.choose-list { list-style: none; }
.choose-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--grey-200);
}
.choose-list li:last-child { border-bottom: none; }
.choose-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.choose-text h4 { margin-bottom: 4px; font-size: 1rem; }
.choose-text p { color: var(--grey-600); font-size: 0.92rem; }

.choose-visual {
  position: relative;
  background: linear-gradient(135deg, var(--navy-50), var(--orange-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  aspect-ratio: 1.05;
  overflow: hidden;
}

/* ============================================
   PORTFOLIO / SAMPLE WORK
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-visual {
  aspect-ratio: 400 / 220;
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}
.portfolio-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portfolio-content { padding: 22px 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.portfolio-content h4 { margin-bottom: 6px; }
.portfolio-content p { color: var(--grey-600); font-size: 0.9rem; }

.portfolio-disclaimer {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 8px;
  margin-top: 36px;
  color: var(--grey-800);
  font-size: 0.92rem;
}
.portfolio-disclaimer strong { color: var(--orange-dark); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section { background: var(--grey-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
  transform: scale(1.03);
}
@media (max-width: 900px) { .pricing-card.featured { transform: none; } }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-name { color: white; }

.pricing-tagline {
  color: var(--grey-600);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-tagline { color: rgba(255, 255, 255, 0.7); }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-amount { color: white; }
.pricing-amount-sub { font-size: 0.85rem; color: var(--grey-600); margin-bottom: 26px; }
.pricing-card.featured .pricing-amount-sub { color: rgba(255, 255, 255, 0.7); }

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  padding: 9px 0;
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--grey-100);
}
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.1); }
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

.testi-card {
  background: white;
  padding: 30px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  position: relative;
}
.testi-quote {
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--orange-light);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 22px;
  font-weight: 800;
}
.testi-stars {
  color: #ffb800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  color: var(--grey-800);
  font-size: 0.95rem;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testi-name { font-weight: 600; font-size: 0.95rem; color: var(--navy-900); }
.testi-role { font-size: 0.82rem; color: var(--grey-600); }

.testi-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--grey-400);
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--grey-50); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  gap: 16px;
}
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--navy-900);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--grey-600);
  font-size: 0.95rem;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 107, 26, 0.25), transparent 40%);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .cta-band-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-band h2 { color: white; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; }
.cta-band-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-band-buttons { justify-content: center; } }

/* ============================================
   HERO LEAD GENERATION FORM
   ============================================ */
.hero-form-wrap {
  position: relative;
  z-index: 2;
}
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 50%, var(--navy-700) 100%);
}
@media (max-width: 540px) { .hero-form-card { padding: 24px 22px; } }

.hero-form-header { margin-bottom: 22px; }
.hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.hero-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--navy-900);
}
.hero-form-card .hero-form-header p {
  font-size: 0.92rem;
  color: var(--grey-600);
  margin: 0;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .hero-form-row { grid-template-columns: 1fr; gap: 0; } }

.hero-form .form-group { margin-bottom: 12px; }
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--grey-800);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  transition: all 0.2s;
}
.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.hero-form .form-group textarea { resize: vertical; min-height: 60px; }
.hero-form .form-error {
  font-size: 0.72rem;
  color: #d92d20;
  margin-top: 4px;
  display: none;
}
.hero-form .form-group.error input,
.hero-form .form-group.error select { border-color: #d92d20; background: #fef3f2; }
.hero-form .form-group.error .form-error { display: block; }

.hero-form .form-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-form .form-success.show { display: block; }

.hero-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.hero-form-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--grey-200);
}
.hero-form-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--grey-600);
  font-weight: 500;
}
.hero-form-trust-item svg { color: var(--green); }

/* ============================================
   STICKY AUDIT TAB (right side)
   ============================================ */
.audit-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 100% 100%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px 8px 0 0;
  box-shadow: -2px -2px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 998;
  letter-spacing: 0.04em;
  transition: padding 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.audit-tab:hover { padding: 14px 26px; }
.audit-tab svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .audit-tab { display: none; } }

/* ============================================
   AUDIT MODAL
   ============================================ */
.audit-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 55, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.2s ease;
}
.audit-modal.active { display: flex; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.audit-modal-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 540px) { .audit-modal-card { padding: 26px 22px; } }

.audit-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  color: var(--grey-600);
}
.audit-modal-close:hover { background: var(--orange); color: white; transform: rotate(90deg); }

.audit-modal-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-light));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audit-modal-icon svg { width: 30px; height: 30px; }

.audit-modal-card h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.audit-modal-card .modal-sub {
  text-align: center;
  color: var(--grey-600);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.audit-modal-card .form-group { margin-bottom: 12px; }
.audit-modal-card .form-group input,
.audit-modal-card .form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.93rem;
  font-family: inherit;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  transition: all 0.2s;
}
.audit-modal-card .form-group input:focus,
.audit-modal-card .form-group select:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.audit-modal-card .form-group.error input,
.audit-modal-card .form-group.error select { border-color: #d92d20; background: #fef3f2; }
.audit-modal-card .form-error { font-size: 0.72rem; color: #d92d20; margin-top: 4px; display: none; }
.audit-modal-card .form-group.error .form-error { display: block; }
.audit-modal-card .form-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.audit-modal-card .form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #06112a;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand .logo { color: white; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--orange);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--orange); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  position: relative;
}
.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { background: #25d366 !important; color: white !important; }
.float-whatsapp:hover { background: #1eb858 !important; color: white !important; }
.float-call { background: var(--orange) !important; color: white !important; }
.float-call:hover { background: var(--orange-dark) !important; color: white !important; }
.float-btn svg { width: 26px; height: 26px; }
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: ringPulse 2s infinite;
  opacity: 0.5;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   PAGE BANNER (sub pages)
   ============================================ */
.page-banner {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 30%, rgba(255, 107, 26, 0.2), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: white; margin-bottom: 12px; }
.page-banner p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; max-width: 700px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.about-stat {
  background: var(--grey-50);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label { font-size: 0.85rem; color: var(--grey-600); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: white;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: var(--grey-600); font-size: 0.88rem; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .service-hero-grid { grid-template-columns: 1fr; } }

.service-detail-list {
  list-style: none;
  margin: 24px 0;
}
.service-detail-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
}
.service-detail-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-box {
  padding: 28px 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
}
.benefit-box .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

/* ============================================
   DEEP SERVICE PAGE COMPONENTS
   (used in google-ads, seo-services, website-designing pages)
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 992px) { .svc-grid { grid-template-columns: 1fr; gap: 40px; } }

.svc-content h2 {
  margin-bottom: 18px;
  margin-top: 36px;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 {
  margin-bottom: 12px;
  margin-top: 24px;
  font-size: 1.2rem;
}
.svc-content p {
  color: var(--grey-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.svc-content strong { color: var(--navy-900); }
.svc-content ul {
  list-style: none;
  margin: 16px 0 24px;
}
.svc-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--grey-600);
  line-height: 1.7;
}
.svc-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px; height: 20px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Sticky sidebar lead form on service pages */
.svc-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) { .svc-sidebar { position: static; } }

.svc-lead-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.svc-lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.svc-lead-form h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.svc-lead-form .svc-form-sub {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin-bottom: 18px;
}
.svc-lead-form .form-group { margin-bottom: 12px; }
.svc-lead-form input,
.svc-lead-form select,
.svc-lead-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  transition: all 0.2s;
}
.svc-lead-form input:focus,
.svc-lead-form select:focus,
.svc-lead-form textarea:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.svc-lead-form textarea { resize: vertical; min-height: 70px; }
.svc-lead-form .form-error {
  font-size: 0.72rem;
  color: #d92d20;
  margin-top: 4px;
  display: none;
}
.svc-lead-form .form-group.error input,
.svc-lead-form .form-group.error select { border-color: #d92d20; }
.svc-lead-form .form-group.error .form-error { display: block; }
.svc-lead-form .form-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: none;
  font-size: 0.88rem;
}
.svc-lead-form .form-success.show { display: block; }
.svc-form-trust {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.svc-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Stats row inside service page */
.svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
}
@media (max-width: 768px) { .svc-stats { grid-template-columns: repeat(2, 1fr); padding: 22px; } }

.svc-stat {
  text-align: center;
  color: white;
}
.svc-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Comparison table */
.svc-table-wrap {
  margin: 26px 0;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
}
.svc-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.92rem;
}
.svc-table th {
  background: var(--navy-900);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}
.svc-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--grey-100);
  color: var(--grey-600);
}
.svc-table tbody tr:hover { background: var(--grey-50); }
.svc-table strong { color: var(--navy-900); }

/* Deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 600px) { .deliverables-grid { grid-template-columns: 1fr; } }

.deliverable-box {
  background: var(--grey-50);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
}
.deliverable-box h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.deliverable-box p {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin: 0;
}

/* Inline visual / illustration */
.svc-illustration {
  margin: 30px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-50), var(--orange-light));
  padding: 30px;
  aspect-ratio: 16/8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-illustration svg { width: 100%; height: 100%; max-height: 360px; }

/* "Industries we serve" inline pills */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}
.industry-pill {
  padding: 8px 16px;
  background: var(--navy-50);
  color: var(--navy-700);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: white;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}
@media (max-width: 540px) { .contact-form { padding: 26px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--grey-800);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-light);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error {
  color: #d92d20;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #d92d20; }
.form-group.error .form-error { display: block; }

.form-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  display: none;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-card {
  background: white;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.contact-info-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-card h5 { font-size: 0.85rem; color: var(--grey-600); margin-bottom: 4px; font-family: var(--font-body); font-weight: 500; }
.contact-info-card p { font-weight: 600; color: var(--navy-900); font-size: 1rem; }

.map-wrap {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6eaf2 0%, #d0d8e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--grey-600);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 67, 153, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 67, 153, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  width: 44px; height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.4);
  position: relative;
  z-index: 1;
}
.map-pin svg { transform: rotate(45deg); width: 20px; height: 20px; }
.map-placeholder span { font-weight: 600; color: var(--navy-900); position: relative; z-index: 1; }

/* ============================================
   ANIMATIONS
   Content is visible by default. Only when the .js-anim
   class is added on <html> by JS do we hide & animate in.
   This guarantees content always shows, even if JS fails.
   ============================================ */
.fade-up { transition: opacity 0.7s ease, transform 0.7s ease; }
.js-anim .fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILS
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ====================================================
   DEEP SERVICE PAGES (Google Ads, SEO, Web Design)
   Two-column layout: long-form article + sticky sidebar form
   ==================================================== */

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,107,26,0.06) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px, 18px 18px;
  background-position: 0 0, 9px 9px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--orange); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 900px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 720px;
}

/* Main two-column layout */
.svc-main {
  padding: 60px 0;
  background: white;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .svc-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Article styling */
.svc-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-700);
}
.svc-content h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy-900);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 {
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}
.svc-content p {
  margin-bottom: 16px;
}
.svc-content strong { color: var(--navy-900); }
.svc-content em { color: var(--orange-dark); font-style: normal; font-weight: 600; }
.svc-content a:not(.btn) { color: var(--orange-dark); font-weight: 600; }
.svc-content a:not(.btn):hover { text-decoration: underline; }
/* Buttons inside content keep their own color */
.svc-content a.btn { color: white; text-decoration: none; }
.svc-content a.btn-primary { color: white; }
.svc-content a.btn-primary:hover { color: white; text-decoration: none; }

/* Prose lists with orange checkmarks */
.prose-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.prose-ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.prose-ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.05rem;
}

/* Inline SVG illustration */
.svc-illustration {
  margin: 30px 0;
  background: linear-gradient(135deg, var(--orange-light), #fff);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--grey-100);
}
.svc-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.svc-caption {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--grey-500);
  font-style: italic;
  text-align: center;
}

/* Deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 640px) { .deliverables-grid { grid-template-columns: 1fr; } }
.deliverable-box {
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 16px 18px;
}
.deliverable-box strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.deliverable-box p {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.55;
}

/* Pricing/comparison table */
.svc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.93rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}
.svc-table thead {
  background: var(--navy-900);
  color: white;
}
.svc-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.svc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700);
}
.svc-table tr:last-child td { border-bottom: none; }
.svc-table tr:hover td { background: var(--orange-light); }

/* Industries pills */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 30px;
}
.industry-pills span {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--grey-700);
  font-weight: 500;
}

/* Inline CTA block */
.svc-cta-block {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white;
  padding: 32px;
  border-radius: var(--radius-md);
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.svc-cta-block::before {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.svc-cta-block h3 {
  color: white;
  margin-top: 0 !important;
  font-size: 1.4rem;
}
.svc-cta-block p {
  color: rgba(255,255,255,0.85);
}
.svc-cta-block strong { color: var(--orange); }
.svc-cta-block .prose-ul li { color: rgba(255,255,255,0.85); }
.svc-cta-block .prose-ul li::before { color: var(--orange); }
.svc-cta-block .btn {
  margin-top: 16px;
}

/* ============================================
   STICKY SIDEBAR LEAD FORM
   ============================================ */
.svc-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 992px) {
  .svc-sidebar { position: static; }
}
.svc-lead-form {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(10,24,55,0.06);
  border-top: 4px solid var(--orange);
}
.svc-form-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.svc-lead-form h3 {
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.svc-form-intro {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-bottom: 18px;
}
.svc-lead-form .form-group {
  margin-bottom: 11px;
}
.svc-lead-form input,
.svc-lead-form select,
.svc-lead-form textarea {
  width: 100%;
  padding: 11px 13px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  transition: all 0.2s;
  color: var(--grey-800);
}
.svc-lead-form input:focus,
.svc-lead-form select:focus {
  outline: none;
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.svc-lead-form .form-group.error input,
.svc-lead-form .form-group.error select { border-color: #d92d20; background: #fef3f2; }
.svc-lead-form .form-error {
  font-size: 0.7rem;
  color: #d92d20;
  margin-top: 3px;
  display: none;
}
.svc-lead-form .form-group.error .form-error { display: block; }
.svc-lead-form .form-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  padding: 11px 13px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.svc-lead-form .form-success.show { display: block; }
.svc-lead-form .btn { margin-top: 4px; }
.form-fineprint {
  font-size: 0.74rem;
  color: var(--grey-400);
  text-align: center;
  margin-top: 10px;
}

.svc-form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0 14px;
  color: var(--grey-400);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.svc-form-divider::before,
.svc-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-200);
}
.svc-form-divider span { padding: 0 12px; }

.svc-form-call,
.svc-form-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.svc-form-call {
  background: var(--navy-900);
  color: white;
}
.svc-form-call:hover { background: var(--navy-800); }
.svc-form-wa {
  background: var(--green);
  color: white;
}
.svc-form-wa:hover { background: var(--green-dark); }

/* ====================================================
   FAQ list compatibility for service pages
   ==================================================== */
.faq-list {
  margin: 24px 0;
}
.faq-list .faq-item {
  background: white;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list .faq-item.open {
  border-color: var(--orange);
}
.faq-list .faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-list .faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--grey-400);
}
.faq-list .faq-item.open .faq-q svg {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-list .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-list .faq-item.open .faq-a {
  max-height: 600px;
}
.faq-list .faq-a p {
  padding: 0 22px 20px;
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.faq-list .faq-a a {
  color: var(--orange-dark);
  font-weight: 600;
}

/* CTA band actions (alias for cta-band-buttons used in new service pages) */
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .cta-band-actions { justify-content: center; } }

/* Ghost button (for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(255,107,26,0.12);
  color: white;
}

/* ====================================================
   SERVICES DROPDOWN MENU
   Hover-activated mega-menu in the header
   ==================================================== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-700);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  transition: transform 0.25s;
  margin-top: 1px;
  opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle {
  color: var(--navy-900);
  background: var(--grey-50);
}
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown.active .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(10, 24, 55, 0.16), 0 2px 8px rgba(10, 24, 55, 0.06);
  border: 1px solid var(--grey-100);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 999;
  margin-top: 6px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;  /* invisible bridge so hover doesn't break */
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy-900);
  transition: background 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--orange-light);
}
.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--grey-50);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s;
}
.nav-dropdown-item:hover .nav-dropdown-icon {
  background: white;
}
.nav-dropdown-item span:not(.nav-dropdown-icon) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--font-display);
}
.nav-dropdown-item small {
  font-size: 0.78rem;
  color: var(--grey-500);
}

/* ============================================
   MOBILE: dropdown becomes inline accordion
   ============================================ */
@media (max-width: 992px) {
  .nav-dropdown {
    display: block !important;
    width: 100% !important;
    position: relative !important;
  }
  .nav-dropdown-toggle {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 14px 18px !important;
    background: var(--grey-50) !important;
    border-radius: 8px !important;
    color: var(--navy-900) !important;
  }
  .nav-dropdown-toggle svg {
    opacity: 1 !important;
    transition: transform 0.3s ease;
  }
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: white !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    margin-top: 4px !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }
  .nav-dropdown-menu::before {
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    max-height: 600px;
    padding: 4px 0 8px 0 !important;
    pointer-events: auto;
  }
  .nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
  /* Show dropdown panel by default on mobile (no hover behavior) */
  .nav-dropdown:hover .nav-dropdown-menu {
    visibility: hidden;
    max-height: 0;
    padding: 0 !important;
    transform: none !important;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    visibility: visible;
    max-height: 600px;
    padding: 4px 0 8px 0 !important;
  }
  .nav-dropdown-item {
    padding: 12px 14px !important;
    margin-left: 18px;
    margin-right: 0;
    width: calc(100% - 18px);
    border-left: 2px solid var(--grey-100);
    border-radius: 0 8px 8px 0 !important;
    box-sizing: border-box;
  }
  .nav-dropdown-item:hover {
    border-left-color: var(--orange);
  }
  .nav-dropdown-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  .nav-dropdown-item small {
    display: none;
  }
  .nav-dropdown-item strong {
    font-size: 0.95rem !important;
  }
  /* Active state indicator on mobile - show below toggle text */
  .nav-dropdown.active .nav-dropdown-toggle::after {
    bottom: 6px !important;
    left: 12px !important;
    transform: none !important;
  }
}

@media (max-width: 540px) {
  .nav-dropdown-toggle {
    padding: 12px 14px !important;
    font-size: 0.9rem;
  }
  .nav-dropdown-item {
    padding: 10px 12px !important;
    margin-left: 12px;
    width: calc(100% - 12px);
    gap: 10px !important;
  }
  .nav-dropdown-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.9rem !important;
  }
  .nav-dropdown-item strong {
    font-size: 0.88rem !important;
  }
}

/* ====================================================
   BACK BUTTON
   Appears at top of sub-pages, takes user back in history
   ==================================================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.back-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateX(-3px);
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
}
.back-btn:active {
  transform: translateX(-1px);
}
.back-btn svg {
  transition: transform 0.2s;
}
.back-btn:hover svg {
  transform: translateX(-2px);
}

/* When the back button sits on a light background (rare) */
.back-btn.back-btn-light {
  background: var(--grey-50);
  border-color: var(--grey-200);
  color: var(--navy-900);
}
.back-btn.back-btn-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* Mobile: keep it compact but visible */
@media (max-width: 540px) {
  .back-btn {
    padding: 7px 13px;
    font-size: 0.82rem;
  }
}

/* ====================================================
   TRUST SIGNALS SECTION (replaces fake testimonials on home)
   ==================================================== */
.trust-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--grey-50) 0%, white 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  box-shadow: 0 2px 12px rgba(10, 24, 55, 0.04);
  transition: all 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 24, 55, 0.08);
  border-color: var(--orange-light);
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trust-icon svg { width: 26px; height: 26px; }
.trust-card h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.trust-card p {
  font-size: 0.94rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin: 0;
}
.trust-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--grey-500);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================================================
   THANK YOU PAGE (post form submission)
   ==================================================== */
.thank-you-hero {
  min-height: calc(100vh - 90px);
  background: linear-gradient(135deg, #f7f8fb 0%, #fff1e8 100%);
  padding: 120px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-card {
  background: white;
  max-width: 720px;
  width: 100%;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin: 0 auto;
}
.thank-you-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}
.thank-you-check svg {
  width: 100%;
  height: 100%;
  animation: thankPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes thankPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.thank-you-card h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--navy-900);
  margin-bottom: 14px;
}
.thank-you-lead {
  font-size: 1.15rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 32px;
}
.thank-you-info {
  background: var(--grey-50);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: left;
  margin-bottom: 30px;
}
.thank-you-info h3 {
  color: var(--navy-900);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.thank-you-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .thank-you-contacts { grid-template-columns: 1fr; }
}
.thank-you-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--navy-900);
  text-align: left;
  transition: all 0.2s;
  background: white;
}
.thank-you-contact:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
}
.thank-you-contact svg {
  flex-shrink: 0;
  color: var(--orange);
}
.thank-you-contact-wa svg { color: var(--green); }
.thank-you-contact-wa:hover {
  border-color: var(--green);
  background: #ecfdf3;
}
.thank-you-contact div { display: flex; flex-direction: column; }
.thank-you-contact strong {
  font-size: 0.92rem;
  font-weight: 700;
}
.thank-you-contact span {
  font-size: 0.82rem;
  color: var(--grey-500);
}
.thank-you-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.thank-you-note {
  font-size: 0.92rem;
  color: var(--grey-500);
}
.thank-you-note a {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: none;
}
.thank-you-note a:hover { text-decoration: underline; }
