/* ============================================================
   Digital MarCom USA — Design System (fastHTML-matched layout)
   ============================================================ */

/* --- FORCED DESKTOP NAV (always horizontal) --- */
/* These override everything to ensure nav shows horizontally on desktop */
@media (min-width: 992px) {
  nav {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
    background: transparent !important;
    transform: none !important;
    z-index: auto !important;
  }
  nav ul.list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: center;
  }
  nav ul.list li {
    display: inline-block !important;
    width: auto !important;
  }
  nav ul.list li a {
    display: block !important;
    padding: 22px 14px !important;
  }
  .mobile-toggle,
  .nav-overlay,
  .close-nav {
    display: none !important;
  }
  .dropdown-menu {
    display: block !important;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 150% !important;
    transition: all 0.3s ease;
  }
  .dropdown-menu.show,
  nav ul.list li.dropdown:hover .dropdown-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
    top: 100% !important;
  }
}

/* --- 1. CSS Reset & Base --- */
* { margin: 0; padding: 0; outline: none !important; box-sizing: border-box; }
html { scroll-behavior: smooth; -ms-overflow-style: -ms-autohiding-scrollbar; }
body { overflow-x: hidden; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 14px; color: #000; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
a { text-decoration: none !important; color: inherit; transition: all 0.2s; }
a:hover { text-decoration: none !important; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 8px 0; color: #282C3F; }
h4 { font-size: 18px; }
h5, h6 { line-height: 23px; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
hr { margin: 10px 0 !important; }
::selection { color: #fff; background: #0077b5; }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; cursor: pointer; transition: all 0.4s; }
::-webkit-scrollbar-track { border-radius: 10px; background: #fff; }
::-webkit-scrollbar-thumb { border-radius: 10px; background: #4499c5; cursor: pointer; }

/* --- 2. Typography --- */
.text-blue { color: #0077b5 !important; }
.text-orange { color: #ff6f27 !important; }
.text-dark { color: #202730 !important; }
.font-12 { font-size: 12px !important; }
.font-13 { font-size: 13px; line-height: 20px; }
.font-14 { font-size: 14px; line-height: 25px; }
.font-15 { font-size: 15px; line-height: 26px; }
.font-16 { font-size: 16px !important; line-height: 28px !important; }
.font-18 { font-size: 18px !important; line-height: 30px !important; }
.font-20 { font-size: 20px !important; line-height: 28px; }
.font-24 { font-size: 24px !important; }
.font-30 { font-size: 30px !important; }
.font-w-300 { font-weight: 300 !important; }
.font-w-400 { font-weight: 400 !important; }
.font-w-500 { font-weight: 500 !important; }
.font-w-600 { font-weight: 600 !important; }
.font-w-700 { font-weight: 700 !important; }
.font-w-800 { font-weight: 800 !important; }

/* Heading class matching fastHTML */
.hd { line-height: 1.15; color: #282C3F; font-weight: 800; }
h2.hd { font-size: 32px; line-height: 42px; }

/* --- 3. Layout --- */
.container-fluid { max-width: 90%; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
section { padding: 30px 0; }
.pb-1 { padding-bottom: 10px !important; }
.pb-4 { padding-bottom: 40px !important; }
.pt-2 { padding-top: 20px !important; }
.pt-3 { padding-top: 30px !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.text-center { text-align: center; }

/* Section pattern matching fastHTML */
.section-label {
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: #0077b5;
  margin-bottom: 8px;
  display: block;
}
.section-sub, .section-copy {
  font-size: 18px;
  line-height: 30px;
  color: #666;
  margin-bottom: 20px;
}

/* --- 4. Buttons (fastHTML pattern) --- */
.btn {
  font-size: 17px;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none !important;
  font-weight: 500;
}
.btn-blue { background: #0077b5; }
.btn-blue:hover { background: #393a3a; color: #fff; }
.btn-dark { background: #393a3a; color: #fff !important; }
.btn-dark:hover { background: #0077b5; color: #fff !important; }
.btn-org { background: #ff6f27; }
.btn-org:hover { background: #fff; color: #000; }
.btn-border { background: transparent; color: #fff; border-color: #fff; }
.btn-border:hover { background: #fff; color: #0077b5; }
.btn-lg { font-size: 17px; padding: 8px 25px; }
.btn-radius-left { border-bottom-left-radius: 0; }
.btn-radius-right { border-bottom-right-radius: 0; }
.btn-radius-left:hover { border-bottom-left-radius: 50px; }
.btn-radius-right:hover { border-bottom-right-radius: 50px; }

/* --- 5. Cards --- */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px;
  padding: 15px;
  transition: all 0.3s;
}
.card:hover { box-shadow: 0px 3px 6px rgb(0 0 0 / 20%); }
.card.shadow { box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%) !important; }
.card.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.card.border-0 { border: 0 !important; }

/* Ripple effect (from fastHTML) */
.ripple { background-position: center; transition: background 0.8s; }
.ripple:hover { background: #535266 radial-gradient(circle, transparent 1%, #535266 1%) center/15000%; }
.ripple:active { background-color: #898892; background-size: 100%; transition: background 0s; }

/* Border-effect (fastHTML link underline animation) */
.border-effect {
  position: relative;
  color: #4499c5;
  text-decoration: none;
}
.border-effect:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #4499c5;
  content: "";
  transition: all 0.2s;
}
.border-effect:hover:after { width: 100%; }

/* ============================================================
   TOP STRIP (fastHTML ticker bar)
   ============================================================ */
.top-strip {
  padding: 0 !important;
  height: auto;
  background: #2f2e41;
}
.top-strip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  padding: 0 15px;
}
.contact-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}
.contact-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #fff !important;
  transition: opacity 0.3s;
}
.contact-link:hover { opacity: 0.8; }
.contact-icon { width: 14px; margin-right: 8px; filter: brightness(0) invert(1); }
.contact-text { font-size: 13px; font-weight: 700; white-space: nowrap; }

/* Ticker / Stream Box */
.stream-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  max-width: 1000px;
}
.mic-icon {
  width: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  animation: tada 1.5s infinite;
}
.ai-stream-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 3px 0;
  overflow: hidden;
  width: 100%;
}
.ai-badge {
  background: linear-gradient(45deg, #1e73be, #00c6ff);
  color: #fff !important;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap !important;
  margin: 0 15px;
  flex-shrink: 0;
}
.ticker-mask {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.ticker-wrap {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-wrap:hover { animation-play-state: paused; }
.ticker-item {
  color: #fff;
  font-size: 13px;
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.ai-tag { color: #00c6ff; font-weight: 800; font-size: 12px; margin-right: 6px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ============================================================
   HEADER / NAV (fastHTML pattern)
   ============================================================ */
header {
  width: 100%;
  background: #fff !important;
  position: relative;
}
header.scroll { box-shadow: 0px 1px 5px #0000001a; }
.position-sticky { position: sticky; top: 0; z-index: 100; }

header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 70px;
}

/* Logo */
.da-logo-link { display: flex; align-items: center; }
.da-logo { width: clamp(160px, 20vw, 250px); height: auto; display: block; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #0077b5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text img { height: 44px; width: auto; }

/* Nav (fastHTML list-inline pattern) */
nav { position: relative; }
nav ul.list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul.list li {
  display: inline-block;
  position: relative;
}
nav ul.list li a {
  color: #202730;
  font-size: 17px;
  font-weight: 500;
  display: block;
  padding: 22px 14px;
  position: relative;
}
/* Orange underline hover — fastHTML exact */
nav ul.list li a:before {
  content: '';
  width: 0%;
  height: 3px;
  background: #ff6f27;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.2s;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
nav ul.list li a:hover:before { width: 100%; left: 0; opacity: 1; }
nav ul.list li a.act:before { width: 100%; left: 0; opacity: 1; }

/* Nav CTA button — no underline */
nav ul.list li a.btn {
  color: #fff !important;
  padding: 10px 30px !important;
  margin-left: 10px;
}
nav ul.list li a.btn:before { display: none; }

/* Dropdown arrow */
.dropdown-toggle::after { display: none; }
nav ul.list li a .fa-angle-down {
  font-size: 18px;
  color: #ff6f27;
  margin-left: 4px;
  transition: transform 0.2s;
}
nav ul.list li:hover > a .fa-angle-down { transform: rotate(180deg); }

/* Dropdown menu — fastHTML exact pattern */
.dropdown-menu {
  border: 0;
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 30%), 0 2px 2px 0 rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%) !important;
  z-index: 1000;
  top: 150% !important;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s !important;
  transform: none !important;
  background: #fff;
  width: 260px;
  min-width: auto;
  padding: 8px 0;
  border-radius: 4px;
  position: absolute;
  left: 0;
}
.dropdown-menu.show, nav ul.list li:hover .dropdown-menu {
  top: 100% !important;
  visibility: inherit;
  opacity: 1;
}
.dropdown-menu li { display: block; width: 100%; }
.dropdown-menu li a {
  padding: 10px 16px;
  font-size: 14px;
  display: block;
  color: #000;
}
/* Underline on dropdown items — fastHTML single style */
.dropdown-menu.single li a { position: relative; }
.dropdown-menu.single li a:after {
  content: '';
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.2s;
  position: absolute;
  bottom: 5px;
  left: 16px;
}
.dropdown-menu.single li a:hover { color: #0077b5 !important; }
.dropdown-menu.single li a:hover:after { width: calc(100% - 32px); }

/* Nav overlay (mobile) */
.nav-overlay {
  width: 100%;
  height: 150%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99;
  display: none;
}
.nav-overlay.open { display: block; }

/* Close nav button (mobile) */
.close-nav {
  display: none;
  width: 35px;
  position: absolute;
  top: 0;
  left: -35px;
  cursor: pointer;
  background: #fff;
  padding: 10px;
  transition: all 0.3s;
}
.close-nav img { width: 20px; }

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #202730;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION (fastHTML banner pattern)
   ============================================================ */
.hero {
  width: 100%;
  min-height: 526px;
  margin: auto;
  padding: 45px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1b2631 0%, #1a5276 50%, #1a6fa0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,111,39,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-copy {
  max-width: min(58vw, 900px);
  position: relative;
  z-index: 2;
}
.hero .hd {
  color: #fff;
  font-size: clamp(26px, 3.25vw, 39px) !important;
  line-height: 1.08 !important;
  margin-bottom: 16px;
}
.type-wrap {
  display: block;
  height: auto;
  min-height: 42px;
}
#typed-strings { display: none; }
#typed {
  display: inline;
  color: #ff6f27;
  font-weight: 800;
}
.typed-cursor { display: none !important; }
.hero .hero-desc {
  font-size: 16px;
  line-height: 28px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  max-width: 600px;
}
.hero .hero-tagline {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 15px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-text {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 14px;
  font-weight: 700;
  color: #bdc3c7;
  letter-spacing: 1px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-logo i { font-size: 14px; }

/* ============================================================
   SERVICES SECTION (fastHTML card pattern)
   ============================================================ */
.home_section2 { width: 100%; background: #f8f8f8; }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  justify-content: center;
}
.service_card {
  padding: 15px 25px 45px 25px;
  flex: 0 0 calc(33.333% - 24px);
  margin: 0 12px 24px;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.6s;
  background: #fff;
  border-radius: 4px;
}
.service_card .icon {
  display: flex;
  align-items: center;
  height: 188px;
  justify-content: center;
  position: relative;
  margin: auto;
}
.service_card .icon:before {
  content: '';
  width: 207px;
  height: 188px;
  position: absolute;
  top: 8px;
  left: -54px;
  background: radial-gradient(ellipse, rgba(0,119,181,0.08) 0%, transparent 70%);
  transition: all 0.6s;
}
.service_card .icon .ele {
  position: relative;
  z-index: 1;
  font-size: 56px;
  color: #0077b5;
}
.service_card:hover { box-shadow: 0px 3px 6px rgb(0 0 0 / 20%); }
.service_card:hover .icon:before { transform: scale(5); }
.service_card .info { position: relative; z-index: 2; }
.service_card .info h3 {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
}
.service_card .info p {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #666;
}
.service_card-link { text-decoration: none; color: inherit; display: block; }

/* Learn more link */
.learn-more {
  font-size: 14px;
  font-weight: 600;
  color: #0077b5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service_card:hover .learn-more { gap: 12px; color: #ff6f27; }

/* ============================================================
   PROCESS SECTION (fastHTML horizontal cards pattern)
   ============================================================ */
.process-section { background: #fff; }
.home-process-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 18px -12px 0;
  padding: 0;
}
.home-process-grid .process-item {
  margin: 0;
  padding: 0 12px 24px;
  position: relative;
  width: 25%;
}
.home-process-grid .process-item:not(:last-child):after {
  content: '';
  width: 70px;
  height: 15px;
  position: absolute;
  top: 43%;
  right: -35px;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='15' viewBox='0 0 70 15'%3E%3Cpath d='M0 7.5h60M55 2l10 5.5-10 5.5' fill='none' stroke='%23ddd' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
}
.home-process-grid .process-item .card {
  border: 0;
  height: 100%;
  overflow: hidden;
  padding: 25px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.home-process-grid .icon {
  flex: 0 0 45px;
  width: 45px;
}
.home-process-grid .icon .step-num {
  font-size: 17px;
  font-weight: 700;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-process-grid .process-item:nth-child(3n+1) .icon .step-num { background: #d9f6ff; color: #00c3ff; }
.home-process-grid .process-item:nth-child(3n+2) .icon .step-num { background: #d8e7fc; color: #0160e7; }
.home-process-grid .process-item:nth-child(3n+3) .icon .step-num { background: #ffe3dc; color: #fe562a; }
.home-process-grid .info { flex: 1; }
.home-process-grid .info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.home-process-grid .info p {
  font-size: 15px;
  line-height: 25px;
  color: #666;
  margin: 0;
}

/* ============================================================
   WHY US SECTION (fastHTML two-column pattern)
   ============================================================ */
.why-us { background: #fff; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.why-us-card {
  height: 100%;
  border: 0;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
  padding: 25px;
  border-radius: 4px;
}
.why-us-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why-us-card ul { list-style: none; padding: 0; margin: 0; }
.why-us-card ul li {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.why-us-card ul li i {
  margin-top: 5px;
  flex-shrink: 0;
}
.why-us-card ul li .fa-check-circle { color: #0077b5; }
.why-us-card ul li .fa-times-circle { color: #0077b5; }

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-section { background: #f8f8f8; }
.results-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.result-card {
  flex: 0 0 calc(33.333% - 24px);
  margin: 0 12px 24px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
  transition: all 0.3s;
  position: relative;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077b5, #ff6f27);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.result-card:hover::before { transform: scaleX(1); }
.result-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important; }
.result-card-top { padding: 20px; border-bottom: 1px solid #f0f0f0; }
.result-industry {
  display: inline-block;
  background: rgba(0,119,181,0.08);
  color: #0077b5;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.result-card-top h3 { font-size: 18px; font-weight: 600; margin-top: 8px; }
.result-card-body { padding: 20px; }
.result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
}
.result-value {
  font-size: 14px;
  line-height: 25px;
  color: #333;
  margin-bottom: 12px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; }
.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar { height: 6px; }
.testimonials-track::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.testimonials-track::-webkit-scrollbar-thumb { background: #0077b5; border-radius: 3px; }
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.testimonial-stars { color: #ff6f27; margin-bottom: 12px; font-size: 14px; }
.testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 25px;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: #333; }
.testimonial-role { font-size: 12px; color: #999; }

/* ============================================================
   LOCAL FOCUS SECTION
   ============================================================ */
.local-section {
  background: linear-gradient(135deg, #0077b5 0%, #1b2631 100%);
  color: #fff;
}
.local-section .section-label { color: #ff6f27; }
.local-section .hd { color: #fff; }
.local-section .section-sub { color: rgba(255,255,255,0.7); }
.local-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  margin-top: 30px;
}
.local-card {
  flex: 0 0 calc(25% - 24px);
  margin: 0 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.local-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.local-card i { font-size: 28px; color: #ff6f27; margin-bottom: 12px; }
.local-card h4 { font-size: 16px; color: #fff; font-weight: 600; margin-bottom: 8px; }
.local-card p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: #f8f8f8; text-align: center; padding: 60px 0; }
.final-cta .hd { font-size: 28px; margin-bottom: 12px; }
.final-cta p { font-size: 18px; color: #666; max-width: 560px; margin: 0 auto 24px; }

/* ============================================================
   FOOTER (clean dark style)
   ============================================================ */
.site-footer {
  background: #1b2631;
  color: #fff;
  padding: 60px 0 0;
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.site-footer .footer-brand {
  flex: 0 0 30%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.site-footer .footer-col {
  flex: 0 0 23.333%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.site-footer .footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 24px;
}
.site-footer .footer-col ul li a:hover { color: #ff6f27; }
.site-footer .footer-brand .logo {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .site-footer .footer-grid { flex-direction: column; }
  .site-footer .footer-brand,
  .site-footer .footer-col { flex: 0 0 100%; }
}

/* ============================================================
   INNER PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1b2631 0%, #0077b5 100%);
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,111,39,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .section-label { color: #ff6f27; }
.page-hero .hd {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
}

/* Results page hero stats */
.results-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.results-hero-stat .number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: block;
}
.results-hero-stat .label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.about-intro { background: #fff; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-intro-copy .hd { font-size: 28px; margin-bottom: 16px; }
.about-intro-copy p { font-size: 16px; line-height: 28px; color: #333; }
.about-intro-image {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8 0%, #eef2f7 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}
.about-intro-image .placeholder { font-size: 72px; color: #0077b5; opacity: 0.15; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover { border-color: #0077b5; box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,119,181,0.08), rgba(255,111,39,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #0077b5;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; margin: 0; color: #666; }

/* Approach list */
.approach-section { background: #f8f8f8; }
.approach-list { max-width: 800px; margin: 0 auto; }
.approach-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}
.approach-item:last-child { border-bottom: none; }
.approach-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0077b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.approach-item h3 { font-size: 18px; margin-bottom: 4px; }
.approach-item p { font-size: 14px; margin: 0; color: #666; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f8f8f8;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0077b5;
  border: 3px solid #f0f0f0;
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: #ff6f27; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: #666; }

/* ============================================================
   SERVICE PAGE SECTIONS
   ============================================================ */
.service-overview { background: #fff; }
.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-overview-copy .hd { font-size: 28px; margin-bottom: 16px; }
.service-overview-copy p { font-size: 16px; line-height: 28px; color: #333; }
.service-overview-image {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8 0%, #eef2f7 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}
.service-overview-image .placeholder { font-size: 80px; color: #0077b5; opacity: 0.12; }

/* Service features */
.service-features { background: #f8f8f8; }
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}
.service-feature-card:hover { border-color: #0077b5; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.service-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,119,181,0.08), rgba(0,119,181,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #0077b5;
}
.service-feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.service-feature-card p { font-size: 14px; margin: 0; color: #666; }

/* Service process */
.service-process { background: #fff; }
.service-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.service-step { text-align: center; padding: 24px; }
.service-step::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0077b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 12px;
}
.service-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-step p { font-size: 14px; margin: 0; color: #666; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { background: #f8f8f8; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #282C3F;
  transition: color 0.2s;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: #0077b5; }
.faq-question i { transition: transform 0.2s; color: #ff6f27; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-answer-inner { padding: 0 24px 16px; }
.faq-answer p { font-size: 14px; line-height: 25px; margin: 0; color: #666; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: grid; gap: 16px; }
.contact-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0077b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 14px; margin: 0; color: #666; }
.contact-card a { color: #0077b5; font-weight: 500; }
.contact-card a:hover { color: #ff6f27; }

/* Contact form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.contact-form-wrapper h3 { font-size: 22px; margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 14px; margin-bottom: 24px; color: #666; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #282C3F; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0077b5;
  box-shadow: 0 0 0 3px rgba(0,119,181,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #999;
}
.map-placeholder i { font-size: 48px; opacity: 0.3; }

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #ff6f27 0%, #d35400 100%);
  padding: 40px 0;
  text-align: center;
}
.cta-banner .hd { color: #fff; font-size: 28px; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none !important;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
