/* ─── FONTS (self-hosted) ─── */
@font-face {
  font-family: 'Special Gothic Condensed One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/special-gothic-condensed-one-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dm-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dm-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── TOKENS ─── */
:root {
  --blue: #215f9d;
  --blue-dark: #163f68;
  --blue-light: #eaf1f7;
  --blue-deep: #0e2d4d;
  --yellow: #eeaf0a;
  --yellow-dark: #c98f08;
  --yellow-light: #fef6e0;
  --black: #0d0d0d;
  --off-black: #1a1a1a;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: 'Special Gothic Condensed One', sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 30px rgba(33,95,157,0.25);
}

html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--off-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
}
.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-flower {
  animation: navLogoSpin 8s linear infinite;
}
@media (max-width: 900px) {
  .hero-flower-decoration { display: none; }
}
@keyframes navLogoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-500);
  font-family: var(--font-mono);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--gray-100);
  color: var(--black);
}
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
  color: var(--gray-700) !important;
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover { color: var(--blue) !important; background: transparent !important; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--blue-deep) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }

.nav-hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  box-shadow: 3px 3px 8px rgba(0,0,0,0.06), -3px -3px 8px rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.nav-hamburger:hover { border-color: var(--yellow); }
.nav-hamburger:active {
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.08), inset -2px -2px 6px rgba(255,255,255,0.7);
}
.nav-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 100px;
  color: var(--blue-deep);
  margin-left: auto;
  margin-right: 12px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--black);
  border-radius: 100px;
  transition: 0.3s ease;
}
.nav-hamburger.open span.top { transform: translateY(8.5px) rotate(45deg); width: 22px; }
.nav-hamburger.open span.bot { transform: translateY(-8.5px) rotate(-45deg); width: 22px; }
.nav-hamburger.open span.mid { transform: translateX(-14px); opacity: 0; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 100px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 11px 14px;
  border-radius: 10px;
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--gray-100); }
.nav-mobile .nav-cta {
  background: var(--blue) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
}

/* ─── NAV CHEVRON ─── */
.nav-chevron {
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.2s;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  user-select: none;
}

/* Invisible bridge that fills the gap between the toggle and the menu
   so the mouse doesn't "leave" the dropdown while travelling down */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: all;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-40%);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 260px;
  z-index: 200;
  animation: fadeDropdown 0.15s ease;
}

@keyframes fadeDropdown {
  from { opacity: 0; transform: translateX(-40%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-40%) translateY(0); }
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 8px;
  color: var(--gray-700) !important;
  font-size: 13.5px !important;
  transition: background 0.15s;
  background: transparent !important;
}

.nav-dropdown-menu a:hover {
  background: var(--gray-50) !important;
  color: var(--black) !important;
}

.nav-dropdown-menu a strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.nav-dropdown-menu a small {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 2px;
}

.nav-dd-icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dd-footer {
  border-top: 1px solid var(--gray-100);
  margin-top: 6px;
  padding-top: 6px;
}

.nav-dd-footer a {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
  justify-content: center;
  padding: 8px 12px !important;
}

.nav-dd-footer a:hover {
  background: var(--blue-light) !important;
  color: var(--blue) !important;
}

/* Show via JS-controlled class (hover-open) OR click-open class */
.nav-dropdown.hover-open .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.hover-open .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* ─── MOBILE ACCORDION ─── */
.nav-mobile-group {
  display: flex;
  flex-direction: column;
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.nav-mobile-toggle:hover { background: var(--gray-100); }

.nav-mobile-toggle.open {
  background: var(--gray-100);
  color: var(--black);
}

.nav-mobile-toggle.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 4px 14px;
}

.nav-mobile-submenu.open {
  display: flex;
}

.nav-mobile-submenu a {
  font-size: 14px !important;
  color: var(--gray-500) !important;
  padding: 9px 14px !important;
}

.nav-mobile-submenu a:hover {
  background: var(--gray-100) !important;
  color: var(--black) !important;
}

/* ─── HERO ─── */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 100px 40px 90px;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
}
.hero-blob-1 {
  top: -140px; right: -100px;
  width: 520px; height: 520px;
  background: var(--yellow);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  transform: rotate(8deg);
  opacity: 0.16;
}
.hero-blob-2 {
  bottom: -180px; right: 60px;
  width: 460px; height: 460px;
  background: var(--blue-deep);
  border-radius: 60% 40% 30% 70% / 55% 65% 35% 45%;
  transform: rotate(-12deg);
  opacity: 0.5;
}
.hero-blob-3 {
  top: 40%; right: -60px;
  width: 320px; height: 320px;
  background: var(--blue-dark);
  border-radius: 55% 45% 70% 30% / 40% 60% 40% 60%;
  transform: rotate(20deg);
  opacity: 0.4;
}
.hero-blob-4 {
  bottom: -100px; left: -120px;
  width: 380px; height: 380px;
  background: var(--yellow);
  border-radius: 65% 35% 40% 60% / 50% 50% 50% 50%;
  transform: rotate(-6deg);
  opacity: 0.1;
}
.hero-blob-5 {
  top: -80px; left: 30%;
  width: 260px; height: 260px;
  background: var(--blue-deep);
  border-radius: 38% 62% 55% 45% / 60% 45% 55% 40%;
  transform: rotate(15deg);
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.hero-content {
  max-width: 760px;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  width: 480px;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 1101px) {
  .hero-visual { display: block; }
}
.hero-form-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 6px rgba(238,175,10,0.08);
}
.quiz-heading {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.5px;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

/* ─── HERO QUIZ ARROW ─── */
.hero-quiz-arrow {
  position: absolute;
  display: none;
  pointer-events: none;
  z-index: 2;
  top: -18px;
  left: -230px;
  width: 220px;
  animation: quizArrowNudge 2.4s ease-in-out infinite;
}
@media (min-width: 1101px) {
  .hero-quiz-arrow { display: block; }
}
@keyframes quizArrowNudge {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, 6px) rotate(-2deg); }
}
.hero-form-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 8px;
}
.hero-form-card > p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.hero-form-card input::placeholder,
.hero-form-card textarea::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-card select { color: rgba(255,255,255,0.8); }
.hero-form-card select option { color: var(--black); }
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus { border-color: var(--yellow); }
.hero-form-card textarea { resize: vertical; }
.hero-form-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* ─── HERO DIAGNOSTIC QUIZ ─── */
.quiz-intro-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.quiz-progress {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.quiz-question { display: none; }
.quiz-question.active { display: block; animation: quizFadeIn 0.25s ease; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-question h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: white;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quiz-option-btn {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.quiz-option-btn:hover { border-color: var(--yellow); }
.quiz-option-btn.selected {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue-deep);
}
.quiz-next-btn {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  background: var(--yellow);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}
.quiz-next-btn:hover:not(:disabled) { background: var(--yellow-dark); }
.quiz-next-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.quiz-results { display: none; }
.quiz-results.active { display: block; animation: quizFadeIn 0.3s ease; }
.quiz-results h2 { margin-bottom: 12px; }
.quiz-flag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.quiz-flag-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.quiz-flag-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-results-cta {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-form-success {
  display: none;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #86efac;
  margin-bottom: 16px;
}
.hero-trusted {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
}
.hero-trusted strong { color: white; }
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 20px 0 24px;
}
.hero-checklist div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
.hero-badge-pill {
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 110px);
  line-height: 0.8;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-headline .accent {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1;
  min-height: 1em;
  color: var(--yellow);
}
.hero-cursor {
  display: inline-block;
  width: 6px;
  height: clamp(32px, 4.5vw, 48px);
  background: var(--yellow);
  margin-left: 6px;
  vertical-align: middle;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.everything-accent {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(30px, 5.5vw, 58px);
  line-height: 1.05;
  min-height: 1em;
  color: var(--yellow);
}
.everything-cursor {
  display: inline-block;
  width: 6px;
  height: clamp(26px, 4.5vw, 48px);
  background: var(--yellow);
  margin-left: 6px;
  vertical-align: middle;
  animation: blink 0.9s steps(1) infinite;
}

.service-visual img, .service-row > div:not(.service-text) img {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-visual:hover img, .service-row > div:not(.service-text):hover img {
  box-shadow: 0 12px 32px rgba(33,95,157,0.25), 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 18px;
  background: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease-in;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.08), -5px -5px 10px #ffffff, 0 0 0 1.5px var(--blue);
}
.btn-learn-more:active {
  color: var(--blue-dark);
  box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1), inset -3px -3px 8px #ffffff;
}
.btn-learn-more:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
  z-index: -1;
}
.btn-learn-more:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--blue);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
  z-index: -1;
}
.btn-learn-more:hover {
  color: #ffffff;
  box-shadow: 0 0 0 1.5px var(--blue);
}
.btn-learn-more:hover:before {
  top: -35%;
  background-color: var(--blue);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.btn-learn-more:hover:after {
  top: -45%;
  background-color: var(--blue);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.btn-learn-more-desktop { display: inline-flex; }
.btn-learn-more-mobile { display: none; }
@media (max-width: 700px) {
  .btn-learn-more-desktop { display: none; }
  .btn-learn-more-mobile { display: inline-flex; }
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0.2em 0 var(--yellow);
  transition: box-shadow 0.5s, background 0.5s;
}
.btn-primary:active { transform: scale(0.96); }
.btn-primary:hover {
  outline: 0.12em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 1em 0 var(--yellow);
  animation: btnRipple 1s linear infinite, btnColorize 1s infinite;
}
@keyframes btnColorize {
  0% { background: var(--yellow); }
  50% { background: var(--yellow-dark); }
  100% { background: var(--yellow); }
}
@keyframes btnRipple {
  0% { outline: 0em solid transparent; outline-offset: -0.1em; }
  50% { outline: 0.15em solid rgba(238,175,10,0.3); outline-offset: 0.2em; }
  100% { outline: 0.3em solid transparent; outline-offset: 0.4em; }
}
.btn-primary svg.btn-arrow {
  height: 0.85em;
  fill: var(--blue-deep);
  margin-left: 2px;
  margin-right: -5px;
  position: relative;
  transition: 0.5s;
}
.btn-primary:hover svg.btn-arrow {
  margin-right: 6px;
  filter: drop-shadow(2px 2px 1.5px rgba(0,0,0,0.25));
}
.btn-primary svg.btn-arrow polygon:nth-child(1) { transition: 0.4s; transform: translateX(-60%); }
.btn-primary svg.btn-arrow polygon:nth-child(2) { transition: 0.5s; transform: translateX(-30%); }
.btn-primary:hover svg.btn-arrow polygon:nth-child(1) { transform: translateX(0%); animation: btnArrowOpacity 1s infinite 0.6s; }
.btn-primary:hover svg.btn-arrow polygon:nth-child(2) { transform: translateX(0%); animation: btnArrowOpacity 1s infinite 0.4s; }
.btn-primary:hover svg.btn-arrow polygon:nth-child(3) { animation: btnArrowOpacity 1s infinite 0.2s; }
@keyframes btnArrowOpacity {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(238,175,10,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--yellow);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: white;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: white;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--yellow); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: var(--blue);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-banner-text {
  font-size: 15px;
  color: white;
  font-weight: 600;
}
.promo-banner-text strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
}
.promo-banner-tag {
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.promo-banner a {
  background: white;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.promo-banner a:hover { opacity: 0.9; }

/* ─── SECTION SHELLS ─── */
.section {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 28px rgba(37,150,190,0.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.service-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.service-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  background: radial-gradient(ellipse at bottom, var(--blue-dark) 0%, var(--gray-900) 100%);
}
.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}
.stars, .stars2, .stars3 {
  position: absolute;
  top: 0; left: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0.45;
}
.testimonials-inner .section-title { color: white; }
.testimonials-inner .section-sub { color: rgba(255,255,255,0.4); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, border-color 0.2s;
}
.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(37,150,190,0.3);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: white; }
.review-meta { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.review-stars { color: #fbbc04; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── FAQ ─── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q.open { background: var(--gray-50); color: var(--blue); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--gray-500);
}
.faq-q.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-a.open { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15.5px;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ─── PORTFOLIO GRID ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 48px;
}
.portfolio-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  background: var(--white);
}
.portfolio-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37,150,190,0.1);
  transform: translateY(-3px);
}
.portfolio-thumb {
  aspect-ratio: 1800 / 760;
  overflow: hidden;
  background: var(--blue-light);
  position: relative;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.04); }
.portfolio-body { padding: 16px 18px 18px; }
.portfolio-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.portfolio-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.portfolio-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
}
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  background: var(--gray-100);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.portfolio-btn:hover { background: var(--black); color: white; }

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 48px;
}
.blog-card {
  box-sizing: border-box;
  display: flex;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}
.blog-card:hover {
  border-color: var(--blue);
  box-shadow: 10px 10px 30px rgba(33,95,157,0.12);
}
.blog-card-datebar {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 14px 10px;
  flex-shrink: 0;
}
.blog-card-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  line-height: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-mono);
}
.blog-card-sep {
  width: 1px;
  flex: 1 1 0%;
  background: var(--gray-100);
}
.blog-card-body {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card-infos {
  border-left: 1.5px solid var(--gray-100);
  padding: 18px;
}
.blog-card-title {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.15;
  color: var(--black);
}
.blog-card-infos a:hover .blog-card-title { color: var(--blue); }
.blog-card-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--gray-500);
}
.blog-card-action {
  display: block;
  background: var(--yellow);
  padding: 12px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue-deep);
  transition: background 0.15s;
}
.blog-card-action:hover { background: var(--yellow-dark); }

/* ─── BLOG FEATURED + EDITOR'S PICKS ─── */
.blog-featured-section {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.blog-featured-post {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-featured-post:hover {
  border-color: var(--blue);
  box-shadow: 10px 10px 30px rgba(33,95,157,0.12);
}
.blog-featured-thumb {
  aspect-ratio: 900/560;
  overflow: hidden;
  background: var(--blue-light);
}
.blog-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-featured-post:hover .blog-featured-thumb img { transform: scale(1.04); }
.blog-featured-body { padding: 28px; }
.blog-cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.blog-featured-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px,3vw,32px);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}
.blog-featured-post a:hover .blog-featured-title { color: var(--blue); }
.blog-featured-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-featured-meta {
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--gray-500);
}

.blog-picks {
  display: flex;
  flex-direction: column;
}
.blog-picks-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--black);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--blue);
}
.blog-pick-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.blog-pick-item:first-of-type { padding-top: 0; }
.blog-pick-item:last-of-type { border-bottom: none; }
.blog-pick-thumb {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--blue-light);
}
.blog-pick-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-pick-cat {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.blog-pick-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.blog-pick-item a:hover .blog-pick-title { color: var(--blue); }
.blog-pick-date {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* ─── BLOG POST GRID (with thumbnails) ─── */
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-post-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.blog-post-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(33,95,157,0.12);
  transform: translateY(-3px);
}
.blog-post-thumb {
  aspect-ratio: 900/560;
  overflow: hidden;
  background: var(--blue-light);
}
.blog-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-post-card:hover .blog-post-thumb img { transform: scale(1.05); }
.blog-post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-post-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 8px;
}
.blog-post-card:hover .blog-post-card-title { color: var(--blue); }
.blog-post-card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.blog-post-card-meta {
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--gray-500);
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
@media (max-width: 900px) {
  .blog-featured-section { grid-template-columns: 1fr; }
}

/* ─── SOCIAL GRID ─── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.social-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
}
.social-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.social-grid a:hover img { transform: scale(1.06); }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }
.lightbox:target { display: flex; }
.lightbox::after {
  content: "×";
  position: absolute;
  top: 20px; right: 26px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 48px 0 0;
}
.cta-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.cta-strip-heading {
  font-family: var(--font-display);
  font-size: 32px;
  color: white;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.cta-strip-heading span { color: var(--yellow); }
.cta-strip-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ─── FOOTER ─── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 56px 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
}
.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-dba {
  font-size: 11px;
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--blue); }
.footer-contact-icon {
  width: 28px; height: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
  font-family: var(--font-mono);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: var(--gray-500);
  font-weight: 500;
  transition: color 0.15s, padding-left 0.2s;
  display: block;
}
.footer-col ul li a:hover { color: var(--blue); padding-left: 5px; }
.footer-col ul li.footer-nested {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li.footer-nested ul {
  margin-top: 8px;
  margin-left: 12px;
}
.footer-col ul li.footer-nested ul li {
  margin-bottom: 8px;
}
.footer-col ul li.footer-nested ul li a {
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

/* ─── SECTION LAYOUT UTILITIES ─── */
.section-pad { padding: 80px 40px; }
.section-pad-sm { padding: 56px 40px; background: var(--white); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.text-center-mt32 { text-align: center; margin-top: 32px; }
.cta-left-sm { text-align: left; margin-top: 32px; }
.cta-left-lg { text-align: left; margin-top: 48px; }
.see-all-work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
}

/* ─── EVERYTHING SECTION ─── */
.everything-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.5vw, 78px);
  line-height: 0.95;
  color: var(--blue);
  margin-bottom: 0;
}
.everything-sub { margin-top: 20px; margin-bottom: 32px; }
.service-row-list { display: flex; flex-direction: column; gap: 64px; margin-top: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 14px;
}
.service-card-text {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.75;
}
.service-card-img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .service-row { grid-template-columns: 1fr !important; gap: 20px !important; }
  .service-text, .service-visual { order: unset !important; }
}
.areas-serve-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 32px;
  margin-bottom: 10px;
}
.areas-serve-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pill {
  background: #1F5D9D;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: white;
}

/* ─── SERVICES PAGE: PRICING TIER CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.pricing-card {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pricing-card.featured {
  border-color: var(--blue);
  background: var(--blue-light);
}
.pricing-tier-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.pricing-tier-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 12px;
}
.pricing-tier-price span {
  font-size: 15px;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: 600;
}
.pricing-tier-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── SERVICES PAGE: WHAT WE BUILD CARDS ─── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.build-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.build-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37,150,190,0.08);
}
.build-card-icon { font-size: 28px; margin-bottom: 12px; }
.build-card-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; color: var(--black); }
.build-card-desc { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.build-card-desc a { color: var(--blue); font-weight: 600; }

@media (max-width: 700px) {
  .pricing-grid { gap: 10px; margin-top: 24px; }
  .pricing-card { padding: 16px; }
  .pricing-tier-price { font-size: 24px; margin-bottom: 6px; }
  .pricing-tier-desc { font-size: 12.5px; line-height: 1.5; }
  .build-grid { gap: 10px; margin-top: 24px; }
  .build-card { padding: 14px; }
  .build-card-icon { font-size: 20px; margin-bottom: 6px; }
  .build-card-title { font-size: 13.5px; margin-bottom: 4px; }
  .build-card-desc { font-size: 12.5px; line-height: 1.45; }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.footer-copy strong { color: var(--gray-500); font-weight: 600; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-100);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.15s;
}
.footer-social a:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
}
.footer-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, #5b8def 60%, #b8d3fb 100%);
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,150,190,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 4px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.contact-info-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--black);
}
.contact-info-value a { color: var(--blue); }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: #166534;
  font-weight: 500;
}

/* ─── ANIMATIONS ─── */
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes fadein { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.fade-in { animation: fadein 0.6s ease both; }
.fade-in-2 { animation: fadein 0.6s 0.1s ease both; }
.fade-in-3 { animation: fadein 0.6s 0.2s ease both; }
.fade-in-4 { animation: fadein 0.6s 0.3s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; height: 72px; }
  .nav-logo img { height: 62px !important; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; background: var(--blue-light); }
  .nav-call { display: flex; }
  .nav-mobile { top: 72px; }
  .hero { padding: 40px 24px 40px; }
  .hero-inner { flex-wrap: wrap; }
  .hero-content { max-width: 100%; flex-shrink: 1; }
  .hero-headline { font-size: 68px; margin-bottom: 14px; }
  .hero-headline .accent { min-height: 1.1em; }
  .hero-trusted { margin-bottom: 10px; }
  .hero-sub { margin-bottom: 22px; }
  .hero-checklist { grid-template-columns: 1fr; margin: 14px 0 18px; gap: 8px; }
  .hero-stats { gap: 28px; margin-top: 20px; padding-top: 20px; }
  .section { padding: 60px 24px; }
  .promo-banner { padding: 16px 24px; flex-direction: column; text-align: center; }
  .testimonials-wrap { padding: 60px 24px; }
  .footer { padding: 40px 24px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 54px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 20px; }
  .cta-strip-heading { font-size: 26px; }
}
@media (max-width: 768px) {
  /* Container padding for main sections */
  div[style*="padding: 64px 40px"],
  div[style*="padding:64px 40px"] {
    padding: 48px 24px !important;
  }
  
  /* Pricing cards and grid layouts need better breathing room */
  div[style*="grid-template-columns:repeat(auto-fit"] {
    gap: 12px !important;
    padding: 0 !important;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  div[style*="grid-template-columns:1fr 1.4fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  div[style*="position:sticky"] {
    position: relative !important;
    top: auto !important;
  }
  div[style*="grid-template-columns:180px 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 24px 0 !important;
  }
  div[style*="padding:80px 40px"],
  div[style*="padding: 80px 40px"] {
    padding: 48px 20px !important;
  }
  div[style*="padding:72px 40px 64px"] {
    padding: 48px 20px 40px !important;
  }
  div[style*="padding:0 40px 80px"] {
    padding: 0 20px 48px !important;
  }
  div[style*="gap:80px"] {
    gap: 0 !important;
  }
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  div[style*="padding:64px 40px 80px"] {
    padding: 40px 20px 60px !important;
  }
  div[style*="padding:64px 40px 56px"] {
    padding: 40px 20px 36px !important;
  }
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }
  .wordpress-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .why-us-section {
    padding-bottom: 48px !important;
  }
}

/* ─── TESTIMONIALS STARFIELD ─── */
.stars {
  width: 1px; height: 1px;
  box-shadow:
    663px 885px #fff,
    308px 602px #fff,
    1333px 424px #fff,
    148px 820px #fff,
    1097px 448px #fff,
    748px 698px #fff,
    118px 865px #fff,
    1039px 509px #fff,
    76px 444px #fff,
    888px 614px #fff,
    143px 523px #fff,
    185px 682px #fff,
    869px 430px #fff,
    1158px 463px #fff,
    457px 722px #fff,
    1284px 698px #fff,
    126px 695px #fff,
    1199px 603px #fff,
    101px 899px #fff,
    452px 423px #fff,
    1140px 839px #fff,
    272px 548px #fff,
    858px 473px #fff,
    1107px 460px #fff,
    1169px 557px #fff,
    1147px 817px #fff,
    1396px 492px #fff,
    211px 697px #fff,
    1169px 727px #fff,
    384px 590px #fff,
    199px 680px #fff,
    128px 688px #fff,
    122px 716px #fff,
    421px 654px #fff,
    1393px 672px #fff,
    875px 797px #fff,
    643px 638px #fff,
    1199px 872px #fff,
    928px 585px #fff,
    613px 527px #fff,
    368px 757px #fff,
    499px 441px #fff,
    1176px 553px #fff,
    1075px 653px #fff,
    703px 773px #fff,
    919px 547px #fff,
    1247px 437px #fff,
    241px 662px #fff,
    856px 484px #fff,
    700px 477px #fff,
    1001px 615px #fff,
    80px 892px #fff,
    1368px 439px #fff,
    1142px 693px #fff,
    642px 574px #fff,
    717px 704px #fff,
    1017px 696px #fff,
    934px 435px #fff,
    191px 883px #fff,
    552px 642px #fff,
    1360px 433px #fff,
    124px 774px #fff,
    634px 731px #fff,
    1183px 748px #fff,
    912px 545px #fff,
    790px 854px #fff,
    1369px 577px #fff,
    46px 881px #fff,
    945px 581px #fff,
    344px 712px #fff,
    239px 652px #fff,
    120px 511px #fff,
    588px 466px #fff,
    507px 603px #fff,
    800px 869px #fff,
    1016px 441px #fff,
    340px 629px #fff,
    822px 681px #fff,
    569px 852px #fff,
    280px 819px #fff,
    881px 842px #fff,
    1126px 542px #fff,
    850px 583px #fff,
    1398px 852px #fff,
    779px 890px #fff,
    472px 477px #fff,
    169px 490px #fff,
    309px 518px #fff,
    1348px 519px #fff,
    24px 648px #fff,
    1206px 493px #fff,
    538px 544px #fff,
    8px 474px #fff,
    858px 673px #fff,
    756px 712px #fff,
    1159px 563px #fff,
    257px 753px #fff,
    1055px 886px #fff,
    1264px 735px #fff,
    1384px 778px #fff,
    110px 633px #fff,
    1393px 808px #fff,
    1145px 600px #fff,
    815px 604px #fff,
    807px 453px #fff,
    986px 724px #fff,
    820px 431px #fff,
    390px 434px #fff,
    427px 625px #fff,
    332px 456px #fff,
    696px 707px #fff,
    107px 452px #fff,
    0px 690px #fff,
    309px 674px #fff,
    207px 885px #fff,
    744px 714px #fff,
    52px 436px #fff,
    425px 714px #fff,
    770px 476px #fff,
    1299px 529px #fff,
    711px 708px #fff,
    745px 642px #fff,
    251px 459px #fff,
    999px 900px #fff,
    954px 645px #fff,
    990px 559px #fff,
    175px 473px #fff,
    209px 783px #fff,
    701px 779px #fff,
    542px 645px #fff,
    330px 664px #fff,
    47px 505px #fff,
    1081px 585px #fff,
    300px 753px #fff,
    1112px 868px #fff,
    55px 788px #fff,
    1081px 552px #fff,
    1316px 842px #fff,
    186px 756px #fff,
    534px 665px #fff;
  animation: animStar 70s linear infinite;
}
.stars2 {
  width: 2px; height: 2px;
  box-shadow:
    751px 865px #fff,
    342px 582px #fff,
    456px 672px #fff,
    1109px 798px #fff,
    1029px 568px #fff,
    1303px 514px #fff,
    1255px 815px #fff,
    399px 812px #fff,
    490px 818px #fff,
    820px 778px #fff,
    464px 502px #fff,
    1060px 652px #fff,
    728px 774px #fff,
    59px 414px #fff,
    572px 641px #fff,
    530px 499px #fff,
    1239px 889px #fff,
    705px 628px #fff,
    715px 888px #fff,
    746px 441px #fff,
    451px 452px #fff,
    464px 640px #fff,
    402px 572px #fff,
    418px 647px #fff,
    1278px 860px #fff,
    1249px 830px #fff,
    3px 645px #fff,
    1337px 576px #fff,
    1317px 443px #fff,
    1352px 461px #fff,
    795px 800px #fff,
    408px 644px #fff,
    365px 622px #fff,
    1302px 570px #fff,
    177px 810px #fff,
    810px 637px #fff,
    822px 780px #fff,
    173px 771px #fff,
    325px 487px #fff,
    260px 414px #fff,
    309px 702px #fff,
    953px 812px #fff,
    1343px 474px #fff,
    1252px 823px #fff,
    1220px 642px #fff,
    1346px 879px #fff,
    717px 479px #fff,
    1123px 680px #fff,
    268px 410px #fff,
    29px 809px #fff,
    1330px 452px #fff,
    1078px 783px #fff,
    285px 622px #fff,
    398px 822px #fff,
    432px 414px #fff,
    515px 508px #fff,
    599px 656px #fff,
    492px 791px #fff,
    1201px 566px #fff,
    531px 678px #fff,
    858px 827px #fff,
    268px 431px #fff,
    724px 859px #fff,
    938px 739px #fff,
    1194px 817px #fff,
    1058px 615px #fff,
    1027px 466px #fff,
    1089px 477px #fff,
    1072px 661px #fff,
    38px 846px #fff,
    901px 797px #fff,
    375px 711px #fff,
    8px 797px #fff,
    306px 488px #fff,
    289px 642px #fff,
    1267px 771px #fff,
    246px 684px #fff,
    126px 566px #fff,
    1397px 665px #fff,
    1086px 684px #fff;
  animation: animStar 130s linear infinite;
}
.stars3 {
  width: 3px; height: 3px;
  box-shadow:
    988px 801px #fff,
    217px 852px #fff,
    1147px 429px #fff,
    508px 497px #fff,
    567px 421px #fff,
    200px 659px #fff,
    926px 687px #fff,
    57px 789px #fff,
    129px 626px #fff,
    666px 713px #fff,
    1035px 710px #fff,
    1048px 502px #fff,
    567px 631px #fff,
    1040px 673px #fff,
    979px 659px #fff,
    507px 757px #fff,
    1071px 848px #fff,
    531px 872px #fff,
    1145px 857px #fff,
    414px 830px #fff,
    916px 470px #fff,
    853px 462px #fff,
    803px 626px #fff,
    647px 437px #fff,
    1374px 523px #fff,
    877px 437px #fff,
    435px 742px #fff,
    620px 801px #fff,
    250px 859px #fff,
    316px 881px #fff,
    1317px 738px #fff,
    749px 473px #fff,
    518px 852px #fff,
    281px 895px #fff,
    957px 512px #fff,
    192px 603px #fff,
    997px 483px #fff,
    1367px 826px #fff,
    458px 482px #fff,
    883px 663px #fff;
  animation: animStar 190s linear infinite;
}
@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-900px); }
}

/* ─── FUN FACT POPUP ─── */
.fun-fact-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fun-fact-wrapper.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fun-fact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: #7a1414;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 8px 24px rgba(122,20,20,0.35);
  transition: transform 0.2s, background 0.2s;
}
.fun-fact-btn:hover, .fun-fact-btn:active {
  transform: scale(1.05);
  background: #931a1a;
}
.fun-fact-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  background: #ffffff;
  color: var(--black);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
  width: 220px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: opacity 0.2s ease;
}
.fun-fact-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 24px;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
.fun-fact-wrapper:hover .fun-fact-tooltip,
.fun-fact-wrapper.open .fun-fact-tooltip {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 700px) {
  .fun-fact-wrapper { bottom: 16px; right: 16px; }
}

/* ─── LIGHT SECTION BLOB FIELD ─── */
.section-blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.section-blob {
  position: absolute;
  filter: blur(50px);
}
.section-blob-1 {
  top: -160px; right: -120px;
  width: 620px; height: 620px;
  background: var(--yellow);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  transform: rotate(8deg);
  opacity: 0.30;
}
.section-blob-2 {
  bottom: -220px; right: 20px;
  width: 560px; height: 560px;
  background: var(--blue);
  border-radius: 60% 40% 30% 70% / 55% 65% 35% 45%;
  transform: rotate(-12deg);
  opacity: 0.26;
}
.section-blob-3 {
  top: 35%; right: -100px;
  width: 400px; height: 400px;
  background: var(--blue);
  border-radius: 55% 45% 70% 30% / 40% 60% 40% 60%;
  transform: rotate(20deg);
  opacity: 0.20;
}
.section-blob-4 {
  bottom: -140px; left: -160px;
  width: 460px; height: 460px;
  background: var(--yellow);
  border-radius: 65% 35% 40% 60% / 50% 50% 50% 50%;
  transform: rotate(-6deg);
  opacity: 0.24;
}
.section-blob-5 {
  top: -100px; left: 25%;
  width: 340px; height: 340px;
  background: var(--blue);
  border-radius: 38% 62% 55% 45% / 60% 45% 55% 40%;
  transform: rotate(15deg);
  opacity: 0.18;
}
