:root {
  --bg: #f2f6fb;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-2: #ffffff;
  --surface-soft: #eaf1f9;
  --line: rgba(10, 31, 56, 0.08);
  --line-strong: rgba(10, 31, 56, 0.16);
  --text: #102339;
  --muted: #607590;
  --navy: #0b2038;
  --navy-2: #16406f;
  --accent: #d62839;
  --accent-dark: #a91b2b;
  --accent-soft: rgba(217, 45, 58, 0.1);
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(8, 24, 46, 0.11);
  --shadow-strong: 0 28px 78px rgba(8, 24, 46, 0.17);
  --radius: 26px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 59, 104, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 45, 58, 0.1), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(12, 35, 64, 0.05), transparent 32%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
iframe { width: 100%; border: 0; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow { max-width: 920px; }

.topbar {
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 60;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}

.topbar__address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__btn {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.topbar__btn:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.topbar__social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar__social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar__social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.topbar__social-btn:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-2px) rotate(8deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Cookie Banner - Minimal & Non-intrusive */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-active {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__btn {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-banner__btn--settings {
  background: rgba(13, 34, 60, 0.05);
  color: var(--navy);
}

@media (max-width: 580px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
  }
}

/* Legal Content Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  color: var(--navy);
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 30px;
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 10px;
}
/* Nova-Style Premium Overhaul - V5 - Absolute Parity */
:root {
  --nova-blue: var(--navy);
  --nova-red: var(--accent);
  --nova-bg-light: #ffffff;
  --nova-bg-grey: #f8fafc;
  --radius-nova: 12px;
}

.hero-nova {
  padding: 28px 0 32px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
}

.hero-nova h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-nova p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

/* District page responsive grids */
@media (max-width: 768px) {
  .hero-nova h1 { font-size: 22px; }
  main section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  main section [style*="grid-template-columns: 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  main section [style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 480px) {
  main section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  main section [style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.nova-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Checklist Grid */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .check-grid { grid-template-columns: 1fr; }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  font-weight: 600;
}

.check-item::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

/* Neighborhood Pills */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.tag-item {
  padding: 8px 18px;
  background: #f1f5f9;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}

.tag-item:hover { background: var(--accent); color: white; }

/* Service Grid - Compact */
.svc-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 40px 0;
}

@media (max-width: 991px) {
  .svc-compact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .svc-compact-grid { grid-template-columns: 1fr; }
}

.svc-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s;
}

.svc-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.svc-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* FAQ Accordion Look */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-box {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.01);
}

.faq-box h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-box h3::before {
  content: "Q";
  color: var(--accent);
  font-size: 18px;
}

.faq-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding-left: 28px;
}

/* Fixed Mobile Bar */
.nova-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
  z-index: 9999;
  border-radius: 20px 20px 0 0;
  gap: 12px;
}

@media (max-width: 580px) {
  .nova-mobile-bar { display: flex; }
}

.nova-mobile-btn {
  flex: 1;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

.nova-mobile-btn--red {
  background: var(--nova-red);
  color: var(--white);
}

.nova-mobile-btn--grey {
  background: #f1f5f9;
  color: var(--navy);
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  .topbar { display: none; }
  
  .site-header { padding: 12px 0; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section { padding: 60px 0; }
  
  .nav-dropdown__menu {
    position: static;
    min-width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    padding: 10px 0;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  
  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }
}

@media (max-width: 480px) {
  .page-header-compact h1 { font-size: 28px; }
  
  .button { width: 100%; justify-content: center; }
  
  .floating-cta { display: none; }
  
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 10px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .mobile-sticky-bar a {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
  }
  
  .mobile-sticky-bar a:first-child {
    background: var(--accent);
    color: var(--white);
  }
  
  .mobile-sticky-bar a:last-child {
    background: #25d366;
    color: var(--white);
  }
}


.topbar__inner,
.header__inner,
.footer-bottom,
.section__head,
.hero__actions,
.hero__chips,

.contact-actions,
.cta-band,
.cta-band__actions,
.service-card__top,
.service-card__link,
.review-card__meta,
.breadcrumbs,
.mobile-sticky-bar {
  display: flex;
  gap: 16px;
}

.topbar__inner,
.header__inner,
.footer-bottom,
.section__head,
.cta-band,
.breadcrumbs {
  align-items: center;
}





.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 31, 56, 0.08);
  box-shadow: 0 6px 24px rgba(8, 24, 46, 0.06);
}

.header__inner {
  margin-top: 0;
  min-height: 86px;
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-content: space-between;
}

.site-header.is-scrolled .header__inner {
  box-shadow: none;
}

.brand { flex: 0 0 auto; }
.brand img { width: 246px; }
.brand--footer img { width: 210px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--navy);
}

.site-nav > a,
.nav-dropdown__toggle {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  cursor: pointer;
}

.nav-dropdown { position: relative; }

.header__cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.header__cta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__phone {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s;
}

.header__phone:hover {
  color: var(--accent);
}

.header__cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .header__cta { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 480px) {
  .brand img { width: 180px; height: auto; }
}

/* Contact Page Enhancements */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-method__icon {
  width: 54px;
  height: 54px;
  background: rgba(217, 45, 58, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-method__info h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-method__info p,
.contact-method__info a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
}

.contact-method__info a:hover {
  color: var(--accent);
}

.lead-form-modern {
  background: var(--navy);
  padding: 40px;
  border-radius: 32px;
  color: var(--white);
}

.lead-form-modern h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.lead-form-modern p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 580px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(217, 45, 58, 0.15);
}

.form-field select option {
  background: var(--navy);
  color: var(--white);
}

.map-section {
  border-radius: 32px;
  overflow: hidden;
  height: 500px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 60px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 20px;
  margin-top: 15px; /* Adjusting gap */
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(8, 24, 46, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -20px; /* Bridge the gap */
  left: 0;
  right: 0;
  height: 25px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(13, 34, 60, 0.02);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  display: block;
}

.nav-dropdown__menu a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button--primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); }
.button--secondary { background: rgba(255, 255, 255, 0.96); color: var(--navy); border-color: rgba(16, 34, 58, 0.12); }
.button--info { background: linear-gradient(135deg, #0d4f93, #1f6fbe); color: var(--white); }
.button--ghost { background: rgba(12, 35, 64, 0.05); color: var(--navy); border-color: var(--line); }
.button--light { background: var(--white); color: var(--accent); }
.button--light-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.button--ghost-light { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: rgba(255, 255, 255, 0.12); }
.button--whatsapp { background: #19bf62; color: var(--white); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header__cta .button {
  padding: 12px 20px;
  min-width: 140px;
}

.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(16, 35, 58, 0.06);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.06);
  margin: 0 0 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(8, 24, 46, 0.05);
  width: fit-content;
}

.breadcrumbs--inline {
  margin: 0 0 14px;
  background: #fff;
  border-color: rgba(16, 35, 58, 0.08);
}

.service-hero__grid > .breadcrumbs--inline {
  grid-column: 1 / -1;
  justify-self: start;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--navy);
}

.breadcrumbs span:last-child { color: var(--navy); font-weight: 700; }

.hero,
.page-hero,
.service-hero { padding: 24px 0 12px; }

.page-hero .container,
.hero-card,
.service-hero__content,
.service-hero__side,
.stack-card,
.article,
.service-card,
.service-feature-card,
.service-info-card,
.review-card,
.blog-card,
.city-card,
.mini-card,
.map-card,
.lead-form,
.region-tile,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.94));
  box-shadow: var(--shadow);
}

.page-hero .container::before,
.hero-card::before,
.service-hero__content::before,
.stack-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 45, 58, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(22, 59, 104, 0.14), transparent 30%);
  pointer-events: none;
}

.service-card:hover,
.review-card:hover,
.blog-card:hover,
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-soft);
  transition: all 0.3s ease;
}

.service-card:hover::before,
.review-card:hover::before,
.blog-card:hover::before,
.city-card:hover::before {
  opacity: 0.8;
}

.page-hero .container,
.hero-card,
.service-hero__content,
.service-hero__side,
.stack-card,
.article,
.service-card,
.service-feature-card,
.service-info-card,
.review-card,
.blog-card,
.city-card,
.mini-card,
.map-card,
.lead-form {
  padding: 30px;
}

.page-hero .container {
  max-width: 1040px;
  padding: 38px 42px 36px;
}

.hero__grid,
.split,
.split--contact,
.split--map,
.service-hero__grid,
.proof-grid,
.card-grid,
.reviews-grid,
.city-grid,
.region-grid,
.footer-grid,
.mini-card-grid,
.service-feature-stack,
.city-highlight {
  display: grid;
  gap: 24px;
}

.hero__grid,
.split,
.split--map,
.service-hero__grid { grid-template-columns: 1.15fr 0.85fr; }
.split--contact { grid-template-columns: 1fr 1fr; }
.proof-grid { grid-template-columns: repeat(2, 1fr); }
.card-grid--three { grid-template-columns: repeat(3, 1fr); }
.card-grid--four { grid-template-columns: repeat(4, 1fr); }
.card-grid--two,
.reviews-grid { grid-template-columns: repeat(2, 1fr); }
.city-grid { grid-template-columns: repeat(4, 1fr); }
.region-grid { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.mini-card-grid { grid-template-columns: repeat(3, 1fr); }
.service-feature-stack,
.city-highlight { grid-template-columns: 1fr; }

.hero-card--dark,
.service-hero__content,
.section--accent .cta-band {
  background:
    radial-gradient(circle at top right, rgba(217, 45, 58, 0.25), transparent 20%),
    radial-gradient(circle at left bottom, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(145deg, #07131f, #102846 58%, #48141d);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}

.hero-card--dark,
.service-hero__content {
  isolation: isolate;
}

.hero-card--dark::after,
.service-hero__content::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.hero-card--dark p,
.hero-card--dark span,
.service-hero__content p,
.service-hero__content span,
.lead--light { color: rgba(255, 255, 255, 0.84); }

.hero-card--light { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,248,249,0.95)); }

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

h1, h2, h3, h4 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(33px, 4vw, 56px); max-width: 11ch; }
h2 { font-size: clamp(24px, 2.4vw, 34px); }
h3 { font-size: clamp(18px, 1.55vw, 22px); }

.hero-card--dark h1,
.service-hero__content h1,
.section--accent h2 { color: var(--white); }

.lead {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
  color: var(--muted);
}

.hero__actions,
.hero__chips,
.contact-actions,
.cta-band__actions,
.service-card__top,
.service-card__link,
.review-card__meta { flex-wrap: wrap; }

.hero__actions,
.hero__chips { margin-top: 22px; }

.hero__chips span,
.route-chip-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.hero-card--light .route-chip-list span,
.service-side-card .checklist li,
.teaser__chips span { color: var(--navy); }

.hero-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(10, 31, 56, 0.03);
  margin-bottom: 14px;
}

.oa-scope-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,255,0.96));
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: var(--shadow);
}

.oa-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.oa-scope-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.75;
}

.oa-scope-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.hero-stat small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.hero-stat strong {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  color: var(--navy);
}

.hero-list h3 { margin-top: 20px; }

.panel-link,
.text-link {
  color: var(--accent);
  font-weight: 700;
}

.section { padding: 34px 0; }
.section--soft { background: rgba(255, 255, 255, 0.52); }
.section--accent {
  background: linear-gradient(140deg, #081420, #102846 58%, #46141d);
  color: var(--white);
}

.section--accent .mini-card,
.section--accent .service-feature-card,
.section--accent .service-info-card,
.section--accent .stack-card,
.section--accent .oa-scope-card,
.section--accent .chip-links a {
  color: var(--navy);
}

.section--accent .mini-card p,
.section--accent .service-feature-card p,
.section--accent .service-info-card p,
.section--accent .stack-card p,
.section--accent .oa-scope-card p,
.section--accent .chip-links a {
  color: var(--muted);
}

.section--accent .mini-card h3,
.section--accent .service-feature-card h3,
.section--accent .service-info-card h3,
.section--accent .stack-card h2,
.section--accent .oa-scope-card h2 {
  color: var(--navy);
}

.hero-home-v2 {
  position: relative;
  padding: 22px 0 6px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.2), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(217,45,58,0.26), transparent 30%),
    linear-gradient(155deg, #06284d 0%, #0b4a87 58%, #0d5ba4 100%);
}

.hero-home-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(11,74,135,0), rgba(11,74,135,0.32));
  pointer-events: none;
}

.hero-home-v2__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 38px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 94% 8%, rgba(255,255,255,0.16), transparent 30%);
  background-size: 22px 22px, 22px 22px, auto;
  background-color: rgba(4, 40, 83, 0.74);
  box-shadow: 0 30px 70px rgba(4, 23, 44, 0.34);
  backdrop-filter: blur(2px);
}

.hero-home-v2__content,
.hero-home-v2__side {
  position: relative;
  z-index: 1;
}

.hero-home-v2 .eyebrow {
  margin-bottom: 14px;
}

.hero-home-v2 .eyebrow--light {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 8px 12px;
  letter-spacing: 0.11em;
}

.hero-home-v2__content h1 {
  color: #fff;
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
  text-shadow: 0 8px 24px rgba(2, 17, 33, 0.34);
}

.hero-home-v2__content h1 span {
  color: #ff3f52;
}

.hero-home-v2__content p {
  color: rgba(255,255,255,0.9);
  max-width: 54ch;
  margin: 0;
  line-height: 1.76;
}

.hero-home-v2__actions,
.hero-home-v2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-home-v2__actions .button {
  padding: 14px 20px;
  box-shadow: 0 12px 24px rgba(5, 20, 38, 0.22);
}

.hero-home-v2__actions .button--whatsapp {
  box-shadow: 0 12px 26px rgba(7, 73, 36, 0.32);
}

.hero-home-v2__meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.home-stat-grid article {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.home-stat-grid strong {
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}

.home-stat-grid span {
  color: rgba(255,255,255,0.84);
  font-size: 12px;
}

.hero-home-v2__image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 20px 38px rgba(2, 18, 35, 0.3);
}

.hero-home-v2__image img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.hero-home-v2__content > *,
.hero-home-v2__side > * {
  opacity: 0;
  transform: translateY(16px);
}

.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *,
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__side > * {
  animation: heroFadeUp 0.62s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *:nth-child(4) { animation-delay: 0.29s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__content > *:nth-child(5) { animation-delay: 0.37s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__side > *:nth-child(1) { animation-delay: 0.47s; }
.hero-home-v2__wrap.reveal.is-visible .hero-home-v2__side > *:nth-child(2) { animation-delay: 0.58s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-services-v2 .service-card {
  min-height: 242px;
}

.home-services-v2 .service-card__top {
  align-items: center;
}

.home-services-v2 .service-card__meta {
  max-width: calc(100% - 62px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-services-v2 .service-card h3 {
  line-height: 1.26;
  min-height: 2.52em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-services-v2 .service-card small {
  display: block;
}

.home-services-v2 .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 35, 58, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.home-services-v2 .service-card__link:hover {
  background: #fff;
  border-color: rgba(16, 35, 58, 0.2);
}

.home-services-v2 .service-card__arrow {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 13px;
}

.home-reasons-v2 .mini-card {
  min-height: 0;
}

.home-testimonials-v2 {
  background: linear-gradient(180deg, #0a3f79, #0b4f96);
  padding: 26px 0;
}

.home-testimonials-v2 .section__head h2,
.home-testimonials-v2 .section__head p,
.home-testimonials-v2 .eyebrow {
  color: #fff;
}

.home-testimonials-v2 .button--ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.14);
}

.home-testimonials-v2 .button--ghost:hover {
  color: #0b3f79;
  border-color: #ffffff;
  background: #ffffff;
}

.home-testimonials-v2 .section__head {
  margin-bottom: 14px;
}

.home-testimonials-v2 .reviews-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.home-testimonials-v2 .reviews-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
}

.home-testimonials-v2 .reviews-grid.is-marquee {
  animation: reviewsMarquee 34s linear infinite;
}

.home-testimonials-v2 .reviews-grid.is-paused {
  animation-play-state: paused;
}

.home-testimonials-v2 .review-card {
  flex: 0 0 clamp(250px, 23vw, 300px);
  min-height: 0;
  padding: 16px 14px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.home-testimonials-v2 .review-card p,
.home-testimonials-v2 .review-card__meta strong,
.home-testimonials-v2 .review-card__meta span {
  color: rgba(255,255,255,0.92);
}

.home-testimonials-v2 .review-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-testimonials-v2 .review-card__head {
  margin-bottom: 8px;
}

.home-testimonials-v2 .review-card__meta {
  gap: 8px;
}

.home-testimonials-v2 .review-card__meta strong,
.home-testimonials-v2 .review-card__meta span {
  font-size: 13px;
}

.home-testimonials-v2 .review-stars {
  color: #ffd44c;
}

.home-testimonials-v2 .review-google-badge {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}

@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-shift, 0px))); }
}

.home-urgent-v2 {
  background: linear-gradient(180deg, #db142a, #c90f24);
  color: white;
}

.home-urgent-v2 h2,
.home-urgent-v2 p,
.home-urgent-v2 .eyebrow {
  color: white;
}

.home-urgent-v2 .cta-band {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 32px;
  border-radius: 32px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.home-urgent-v2 .cta-band__actions {
  flex: 1;
  justify-content: flex-end;
}

.about-hero {
  background: linear-gradient(180deg, #0a4a87, #0d4d89 65%, #0a477e);
  padding: 34px 0 44px;
}

.about-hero__inner h1,
.about-hero__inner p {
  color: #fff;
}

.about-hero__inner h1 {
  max-width: 20ch;
  font-size: clamp(36px, 4vw, 58px);
}

.about-hero__inner p {
  max-width: 64ch;
  line-height: 1.72;
  font-size: clamp(17px, 1.4vw, 21px);
  margin: 0;
}

.about-stats {
  background: linear-gradient(180deg, #db142a, #cc0f24);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stats__grid article {
  text-align: center;
  padding: 24px 12px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.about-stats__grid article:last-child {
  border-right: 0;
}

.about-stats__grid strong {
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 6px;
}

.about-stats__grid span {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.about-layout .article h2 {
  font-size: clamp(30px, 2.5vw, 42px);
  margin-top: 20px;
}

.about-layout .article h2:first-child {
  margin-top: 0;
}

.about-side h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.4vw, 40px);
}

.about-why-list {
  display: grid;
  gap: 14px;
}

.about-why-list article {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #edf3fa, #e7eff8);
  padding: 18px 16px;
}

.about-why-list h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 1.75vw, 29px);
}

.about-why-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-contact-card {
  margin-top: 16px;
  border-radius: 18px;
  padding: 20px 18px;
  background: linear-gradient(180deg, #db142a, #ca1025);
  box-shadow: var(--shadow-strong);
}

.about-contact-card h3,
.about-contact-card p,
.about-contact-card a:not(.button) {
  color: #fff;
}

.about-contact-card .button {
  color: inherit;
}

.about-contact-card p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.about-contact-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.competency-hero {
  background: linear-gradient(180deg, #e31128, #c80f23);
  padding: 38px 0 46px;
}

.competency-hero__inner h1,
.competency-hero__inner p {
  color: #fff;
}

.competency-hero__inner h1 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 20ch;
}

.competency-hero__inner p {
  margin: 0;
  max-width: 70ch;
  line-height: 1.72;
}

.competency-card-grid .mini-card {
  border-top: 3px solid rgba(217,45,58,0.65);
}

.competency-card-grid h3 {
  margin-bottom: 10px;
}

.competency-regs {
  display: grid;
  gap: 12px;
}

.reg-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(217,45,58,0.8);
  padding: 16px 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
}

.reg-item h3 {
  margin-bottom: 8px;
}

.reg-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.equipment-group {
  margin-bottom: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

.equipment-group h3 {
  margin-bottom: 12px;
  color: #cb1227;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.equipment-list--three {
  grid-template-columns: repeat(3, 1fr);
}

.equipment-list span {
  border-radius: 10px;
  border: 1px solid rgba(217,45,58,0.25);
  background: rgba(217,45,58,0.05);
  padding: 9px 10px;
  font-size: 14px;
  color: var(--navy);
}

.manager-wrap {
  display: grid;
  place-items: center;
}

.manager-card {
  width: min(420px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(217,45,58,0.2);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  text-align: center;
}

.manager-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #e11a2f, #b70e21);
}

.manager-card small {
  display: block;
  margin: 10px 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.manager-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.manager-stats span {
  border-radius: 10px;
  padding: 10px 8px;
  background: rgba(217,45,58,0.05);
  border: 1px solid rgba(217,45,58,0.2);
  color: var(--navy);
  font-size: 13px;
}

.manager-stats strong {
  display: block;
  color: #c51125;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
}

.competency-cert {
  padding: 34px 0;
  background: linear-gradient(180deg, #d9e4f2, #d4e0ef);
}

.competency-cert__inner {
  text-align: center;
}

.competency-cert__inner h2 {
  font-size: clamp(24px, 2.1vw, 34px);
  max-width: 28ch;
  margin: 0 auto 10px;
}

.competency-cert__inner p {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-hero {
  background: linear-gradient(180deg, #0a4a87, #083f74);
  padding: 34px 0 44px;
}

.pricing-hero__inner h1,
.pricing-hero__inner p {
  color: #fff;
}

.pricing-hero__inner h1 {
  max-width: 18ch;
  font-size: clamp(34px, 3.8vw, 52px);
}

.pricing-hero__inner p {
  margin: 0;
  max-width: 66ch;
  line-height: 1.72;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-estimator {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.95));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.pricing-estimator p {
  margin: 0 0 6px;
  color: var(--muted);
}

.pricing-estimator label {
  font-weight: 600;
  color: var(--navy);
}

.pricing-estimator input[type="range"] {
  width: 100%;
  accent-color: #d62839;
}

.pricing-estimator select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 11px 12px;
}

.pricing-result {
  margin-top: 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217,45,58,0.14), rgba(16,64,111,0.14));
  border: 1px solid rgba(217,45,58,0.28);
  color: #b81529;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 700;
  text-align: center;
  padding: 16px 12px;
}

.pricing-cards .pricing-result {
  font-size: clamp(24px, 2.2vw, 34px);
}

.pricing-estimator small {
  color: var(--muted);
}

.section--tight { padding: 22px 0; }

.service-hero--example .service-hero__content {
  background: linear-gradient(160deg, #084683, #07386a 58%, #0a2f59);
}

.service-hero--example .service-hero__content h1 {
  max-width: 17ch;
  font-size: clamp(34px, 3.8vw, 56px);
}

.service-hero__side--image {
  padding: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,253,0.96));
}

.service-hero__side--image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-hero--oa {
  padding: 0;
}

.service-hero--oa .service-hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 14px;
  align-items: center;
}

.service-hero--oa .container.service-hero__grid {
  max-width: none;
}

.service-hero--oa .service-hero__content.oa-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  padding: clamp(14px, 1.2vw, 18px) clamp(16px, 1.8vw, 24px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(14,97,177,0.07), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(217,45,58,0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,254,0.96));
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 8px 20px rgba(10, 31, 56, 0.04);
}

.service-hero--oa .service-hero__content.oa-page::after {
  display: none;
}

.service-hero--oa .service-hero__content.oa-page::before {
  display: none;
}

.service-hero--oa .service-hero__content.oa-page h1 {
  max-width: 14ch;
  margin-bottom: 6px;
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.08;
  text-wrap: balance;
  color: var(--navy);
}

.service-hero--oa .service-hero__content.oa-page .lead {
  max-width: 74ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.service-hero--oa .service-hero__content.oa-page .eyebrow--light {
  margin-bottom: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(217,45,58,0.08);
  border: 1px solid rgba(217,45,58,0.14);
  letter-spacing: 0.08em;
  font-size: 11px;
}

.service-hero--oa .hero__actions {
  margin-top: 10px;
  gap: 10px;
  align-items: center;
}

.service-hero--oa .hero__actions .button {
  padding: 10px 18px;
  border-radius: 999px;
}

.service-hero--oa .hero__chips {
  margin-top: 8px;
  gap: 6px;
}

.service-hero--oa .hero__chips span {
  padding: 5px 9px;
  background: rgba(12,35,64,0.05);
  border-color: rgba(12,35,64,0.08);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}



.service-hero--oa .service-hero__side--image.oa-page {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(13,79,147,0.10), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(217,45,58,0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,253,0.96));
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 8px 20px rgba(14, 49, 86, 0.05);
}

.service-hero--oa .service-hero__side--image.oa-page img {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,254,0.98));
}

.oa-visual-shell {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  justify-items: center;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,254,0.98));
}

.oa-visual-shell img {
  max-width: 70%;
  align-self: center;
}

.oa-visual-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16,35,58,0.09);
  box-shadow: 0 8px 18px rgba(10, 31, 56, 0.06);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oa-visual-title {
  width: 100%;
  display: grid;
  gap: 2px;
  margin: 6px 0 10px;
  text-align: center;
  padding: 0 20px;
}

.oa-visual-title strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.oa-visual-title span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.oa-visual-note {
  width: 100%;
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(12,35,64,0.04);
  border: 1px solid rgba(12,35,64,0.08);
}

.oa-visual-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
}

.oa-visual-note span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.service-hero--oa .button--primary {
  box-shadow: 0 14px 30px rgba(217,45,58,0.18);
}

.service-hero--premium {
  padding-top: 20px;
}

.service-hero__grid--balanced {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 460px);
  gap: 24px;
  align-items: stretch;
}

.service-hero__content--compact,
.service-hero__side--visual {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
  border: 1px solid rgba(14, 35, 69, 0.08);
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(14, 35, 69, 0.06);
}

.service-hero__content--compact {
  padding: 42px 42px 34px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-hero__content--compact h1 {
  margin: 14px 0 18px;
  max-width: 11ch;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-hero__content--compact .lead {
  max-width: 920px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #60738f;
  margin-bottom: 24px;
}

.service-hero__content--compact .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.service-hero__content--compact .hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-hero__content--compact .hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 35, 69, 0.08);
  background: #ffffff;
  color: #183153;
  font-weight: 700;
  font-size: 0.95rem;
}

.service-hero__side--visual {
  padding: 22px;
  display: flex;
  align-items: stretch;
}

.hero-visual-card {
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 60, 77, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border: 1px solid rgba(14, 35, 69, 0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-visual-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(14, 35, 69, 0.08);
  color: #183153;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-visual-card__image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
}

.hero-visual-card__image-wrap img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.hero-visual-card__footer {
  margin-top: 8px;
}

.hero-visual-card__item {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 35, 69, 0.08);
}

.hero-visual-card__item strong {
  display: block;
  color: #183153;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-visual-card__item span {
  display: block;
  color: #60738f;
  line-height: 1.6;
  font-size: 0.96rem;
}

.card-grid--oa {
  gap: 18px;
}

.card-grid--oa .mini-card {
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,252,255,0.95));
  box-shadow: 0 18px 40px rgba(15, 44, 76, 0.08);
}

.card-grid--oa .mini-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ff8e98);
}

.card-grid--oa .mini-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: clamp(20px, 1.8vw, 24px);
}

.article--oa {
  padding: 30px 32px;
  border: 1px solid rgba(16, 35, 58, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(13,79,147,0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(250,252,255,0.96));
  box-shadow: 0 18px 48px rgba(10, 31, 56, 0.07);
}

.article--oa h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(27px, 2.3vw, 36px);
}

.article--oa p {
  font-size: 16px;
  line-height: 1.82;
}

.service-feature-stack--oa {
  gap: 18px;
  align-content: start;
}

.service-feature-stack--oa .service-feature-card {
  padding: 24px;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(15, 44, 76, 0.08);
}

.service-feature-stack--oa .service-feature-card:first-child {
  background:
    radial-gradient(circle at top right, rgba(217,45,58,0.14), transparent 28%),
    linear-gradient(180deg, #fff6f7, #ffffff 68%);
}

.service-feature-stack--oa .service-feature-card:last-child {
  background:
    radial-gradient(circle at top left, rgba(13,79,147,0.1), transparent 26%),
    linear-gradient(180deg, #f5faff, #ffffff 72%);
}

.section--accent-oa {
  position: relative;
  overflow: hidden;
}

.section--accent-oa::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.06), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(217,45,58,0.16), transparent 28%),
    linear-gradient(135deg, #08121d, #102640 52%, #142f4d);
  pointer-events: none;
}

.section--accent-oa .container,
.section--accent-oa .split,
.section--accent-oa .service-info-card {
  position: relative;
  z-index: 1;
}

.section--accent-oa .service-info-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

.section--accent-oa .service-info-card .eyebrow,
.section--accent-oa .service-info-card p,
.section--accent-oa .service-info-card li {
  color: rgba(255,255,255,0.82);
}

.section--accent-oa .service-info-card h2 {
  color: #fff;
}

.faq-list--oa {
  gap: 16px;
}

.faq-list--oa .faq-item {
  padding: 0 24px;
  border-radius: 20px;
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,254,0.95));
  box-shadow: 0 12px 28px rgba(10, 31, 56, 0.05);
}

.faq-list--oa .faq-item summary {
  padding: 20px 0;
  color: var(--navy);
  font-weight: 700;
}

.faq-list--oa .faq-item p {
  padding-bottom: 4px;
}

.oa-scope-card {
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #eaf2fb, #e6eff9);
}

.oa-scope-card h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.oa-scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.oa-scope-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 600;
}

.oa-scope-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #1ea85f;
  font-weight: 900;
}

.article--plain {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.article--plain h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.4vw, 38px);
}

.article--plain h2:first-child {
  margin-top: 0;
}

.chip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-links a {
  padding: 11px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-weight: 700;
}

.section__head { justify-content: space-between; margin-bottom: 24px; }
.section__head p { margin: 0; color: var(--muted); max-width: 54ch; }

.article p,
.stack-card p,
.service-card p,
.service-feature-card p,
.service-info-card p,
.review-card p,
.blog-card p,
.city-card p,
.mini-card span { margin: 0 0 16px; color: var(--muted); line-height: 1.72; }

.mini-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.article p { font-size: 16px; }
.stack-card p,
.service-info-card p,
.service-feature-card p { font-size: 16px; }

.checklist,
.ordered-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li,
.ordered-list li { margin-bottom: 12px; line-height: 1.68; }

.service-card {
  display: grid;
  min-height: 266px;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card h3 {
  text-wrap: balance;
}

.service-card:hover,
.region-tile:hover,
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(217, 45, 58, 0.18);
}

.service-card__index {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,59,104,0.12), rgba(217,45,58,0.16));
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.service-card__meta {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 35, 64, 0.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card small { color: var(--muted); line-height: 1.6; }
.service-card__link { margin-top: auto; font-weight: 700; color: var(--navy); justify-content: space-between; }
.service-card__arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}

.review-card { padding: 26px; min-height: 190px; }
.review-card p { color: var(--navy); font-size: 17px; }
.review-card__meta strong { color: var(--navy); }
.review-card__meta span { color: var(--muted); }
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  letter-spacing: 0.08em;
  color: #ffbe1a;
  font-size: 15px;
  font-weight: 700;
}

.review-google-badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12,35,64,0.04);
  color: #34538a;
  font-size: 12px;
  font-weight: 700;
}

.review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.95));
}

.service-side-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.service-side-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  color: var(--navy);
}

.service-feature-card,
.service-info-card,
.stack-card--cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.92));
}

.city-highlight .mini-card { min-height: 0; }

.city-card,
.blog-card,
.region-tile { display: grid; gap: 10px; min-height: 190px; }
.region-tile strong { font-family: "Sora", sans-serif; font-size: 24px; color: var(--navy); }
.region-tile span { color: var(--muted); line-height: 1.7; }

.blog-grid--modern {
  align-items: stretch;
}

.blog-hero {
  padding: 0;
}

.blog-hero .container {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  padding: 26px clamp(20px, 4vw, 72px) 22px;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(13,79,147,0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(217,45,58,0.22), transparent 36%),
    linear-gradient(110deg, #ecf3fc 0%, #f7fbff 54%, #fdecef 100%);
  box-shadow: inset 0 -1px 0 rgba(16, 35, 58, 0.08);
}

.blog-hero .container > * {
  position: relative;
  z-index: 1;
}

.blog-hero .eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  background: rgba(217,45,58,0.08);
  border: 1px solid rgba(217,45,58,0.2);
  border-radius: 999px;
  padding: 6px 10px;
  letter-spacing: 0.11em;
}

.blog-hero h1 {
  max-width: 20ch;
  font-size: clamp(29px, 3.2vw, 42px);
  margin-bottom: 6px;
  color: var(--navy);
  text-shadow: none;
}

.blog-hero .lead {
  max-width: 78ch;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.62;
  color: var(--muted);
}

.blog-hero .chip-links {
  margin-top: 12px;
}

.blog-hero .chip-links a {
  background: rgba(12,35,64,0.06);
  border-color: rgba(12,35,64,0.1);
  color: var(--navy);
}

.blog-hero .chip-links a:hover {
  background: rgba(217,45,58,0.12);
  border-color: rgba(217,45,58,0.26);
  color: var(--accent-dark);
}

.blog-card--modern {
  min-height: 0;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12,35,64,0.07);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.blog-card__footer small {
  color: var(--muted);
  font-weight: 600;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(300px, 0.48fr);
  gap: 28px;
  align-items: start;
}

.blog-article {
  border-radius: 24px;
  padding: clamp(26px, 2.1vw, 38px);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,252,255,0.96));
}

.blog-article p {
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.78;
}

.blog-article h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.blog-section-block {
  margin-bottom: 28px;
}

.blog-section-block h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.blog-meta-line {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-meta-line span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(12,35,64,0.06);
  border: 1px solid rgba(12,35,64,0.1);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.blog-keywords {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-keywords span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217,45,58,0.08);
  border: 1px solid rgba(217,45,58,0.18);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.blog-highlight {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f6f9fd, #eef4fb);
  padding: 18px 18px 8px;
  margin-bottom: 22px;
}

.blog-highlight strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.blog-side {
  position: sticky;
  top: 108px;
  max-width: 380px;
  justify-self: end;
  width: 100%;
  padding: 22px;
  border-radius: 22px;
}

.blog-toc {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-toc a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12,35,64,0.05);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.blog-toc a.is-active {
  background: rgba(217,45,58,0.14);
  border: 1px solid rgba(217,45,58,0.28);
  color: var(--accent-dark);
}

.blog-side .link-stack {
  display: grid;
  gap: 10px;
}

.blog-side .link-stack .text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(217,45,58,0.14);
  background: rgba(255,255,255,0.92);
  color: var(--accent-dark);
  font-weight: 700;
}

.blog-inline-cta {
  margin-top: 8px;
  border-radius: 18px;
  border: 1px solid rgba(217,45,58,0.2);
  background: linear-gradient(180deg, rgba(217,45,58,0.08), rgba(217,45,58,0.03));
  padding: 18px;
}

.blog-inline-cta h3 {
  margin-bottom: 8px;
}

.blog-inline-cta p {
  margin-bottom: 12px;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1300;
  background: rgba(11,32,56,0.08);
}

.reading-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d62839, #1f6fbe);
  transition: width 0.12s linear;
}

.city-grid .city-card,
.mini-card-grid .mini-card { min-height: 170px; }

.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-stack a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(12, 35, 64, 0.05);
}

.link-stack--cards a { background: rgba(217, 45, 58, 0.06); }

.map-card iframe { min-height: 360px; border-radius: 22px; }

.lead-form { display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 8px; font-weight: 700; color: var(--navy); }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0 22px; background: rgba(255,255,255,0.92); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  color: var(--navy);
}
.faq-item p { margin: 0 0 20px; }

.site-footer {
  margin-top: 34px;
  padding: 40px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(217,45,58,0.08), transparent 20%),
    linear-gradient(180deg, #081420, #0b1828);
  color: rgba(255,255,255,0.82);
}

.site-footer h2 { margin-bottom: 12px; font-size: 16px; color: var(--white); }
.footer-nav { display: grid; gap: 10px; }
.footer-bottom {
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.floating-cta {
  position: fixed;
  right: 18px;
  z-index: 45;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  color: var(--white);
}

.floating-cta--whatsapp { bottom: 88px; background: #1cbf75; }
.floating-cta--phone { bottom: 22px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.mobile-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.mobile-sticky-bar a:first-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}

.mobile-sticky-bar a:last-child {
  background: #1cbf75;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero.blog-hero .reveal,
.blog-layout .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
  .hero-home-v2__content > *,
  .hero-home-v2__side > * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero__grid,
  .split,
  .split--contact,
  .split--map,
  .service-hero__grid,
  .proof-grid,
  .card-grid--three,
  .card-grid--four,
  .card-grid--two,
  .city-grid,
  .region-grid,
  .footer-grid,
  .mini-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-side {
    position: static;
  }
  .blog-hero .container {
    padding: 20px 16px 16px;
  }
  .service-hero__grid--balanced {
    grid-template-columns: 1fr;
  }
  .service-hero--oa .service-hero__grid {
    grid-template-columns: 1fr;
  }
  .card-grid--oa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    max-height: min(78vh, 620px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown__toggle {
    width: 100%;
    text-align: left;
    padding: 10px 0;
  }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown__menu { display: grid; }
  .hero__grid,
  .split,
  .split--contact,
  .split--map,
  .service-hero__grid,
  .proof-grid,
  .card-grid--three,
  .card-grid--four,
  .card-grid--two,
  .city-grid,
  .region-grid,
  .footer-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }
  .header__inner { padding: 14px 16px; }
  .brand img { width: 190px; }
  .page-hero .container,
  .hero-card,
  .service-hero__content,
  .service-hero__side,
  .stack-card,
  .article,
  .service-card,
  .service-feature-card,
  .service-info-card,
  .review-card,
  .blog-card,
  .city-card,
  .mini-card,
  .map-card,
  .lead-form { padding: 22px; }
  .page-hero .container { padding: 26px 22px; }
  .service-hero__content--compact {
    padding: 28px 22px 24px;
    border-radius: 24px;
    min-height: auto;
  }
  .service-hero__side--visual {
    padding: 16px;
    border-radius: 24px;
  }
  .hero-visual-card {
    border-radius: 20px;
    padding: 14px;
  }
  .service-hero__content--compact .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .service-hero--oa .service-hero__content.oa-page,
  .service-hero--oa .service-hero__side--image.oa-page,
  .article--oa,
  .service-feature-stack--oa .service-feature-card,
  .section--accent-oa .service-info-card {
    padding: 16px;
    border-radius: 18px;
  }
  .service-hero--oa .service-hero__content.oa-page h1 {
    max-width: none;
    font-size: clamp(24px, 6.8vw, 29px);
  }
  .service-hero--oa .service-hero__content.oa-page .lead,
  .article--oa p {
    font-size: 13px;
    line-height: 1.55;
  }
  .oa-visual-shell {
    padding: 12px 10px 10px;
  }
  .faq-list--oa .faq-item {
    padding: 0 18px;
  }
  h1 { font-size: 30px; max-width: none; }
  .lead { max-width: none; font-size: 16px; }
  .floating-cta { display: none; }
  .mobile-sticky-bar { display: flex; }
  .site-footer { padding-bottom: 120px; }
  .hero-home-v2__wrap {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    border-radius: 22px;
  }
  .hero-home-v2__content h1 {
    max-width: none;
    font-size: 34px;
  }
  .hero-home-v2__actions .button {
    flex: 1 1 180px;
  }
  .hero-home-v2__image img {
    height: 210px;
  }
  .home-testimonials-v2 .reviews-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    padding-bottom: 4px;
  }
  .home-testimonials-v2 .reviews-grid.is-marquee {
    animation: none;
  }
  .home-testimonials-v2 .review-card {
    flex-basis: 270px;
  }
  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats__grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .pricing-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
  }
  .equipment-list,
  .equipment-list--three {
    grid-template-columns: 1fr 1fr;
  }
  .oa-scope-list {
    grid-template-columns: 1fr;
  }
  .article--plain h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .hero-home-v2 {
    padding-top: 14px;
  }
  .hero-home-v2__wrap {
    padding: 20px 14px;
  }
  .hero-home-v2__content h1 {
    font-size: 31px;
  }
  .hero-home-v2__actions .button {
    width: 100%;
  }
  .hero-home-v2__meta {
    gap: 8px;
  }
  .blog-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-article {
    padding: 22px;
  }
  .blog-hero .container {
    padding: 18px 14px 14px;
  }
  .blog-hero h1 {
    font-size: 27px;
  }
  .blog-meta-line {
    gap: 8px;
  }
  .pricing-info-grid,
  .equipment-list,
  .equipment-list--three,
  .manager-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SVC-HERO — Premium Hizmet Sayfası Hero
   ========================================= */

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 32px;
  background: linear-gradient(150deg, #04192e 0%, #07305c 45%, #0d1f38 80%, #1a0b0f 100%);
}

.svc-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.svc-hero__orb--1 {
  width: 600px; height: 600px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(214,40,57,0.22), transparent 65%);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.svc-hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(13,75,147,0.28), transparent 65%);
  animation: orbFloat 11s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.06); }
}

.svc-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.svc-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0 32px;
  padding-top: 16px;
}

.svc-hero__breadcrumbs {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.svc-hero__breadcrumbs a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.svc-hero__breadcrumbs a:hover { color: #fff; }
.svc-hero__breadcrumbs span:last-child { color: rgba(255,255,255,0.9); font-weight: 600; }

.svc-hero__content {
  padding: 0 0 24px;
  display: flex; flex-direction: column; justify-content: center;
}

.svc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 14px; width: fit-content;
}

.svc-hero__pulse {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: heroPulse 2s infinite; flex-shrink: 0;
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.svc-hero__content h1 {
  color: #fff; font-size: clamp(28px,3.2vw,46px);
  max-width: 15ch; line-height: 1.06; margin-bottom: 12px;
  text-shadow: 0 6px 24px rgba(2,14,28,0.4);
}
.svc-hero__content h1 em { font-style: normal; color: #ff3f52; }

.svc-hero__content p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(14px,1.1vw,16px); line-height: 1.7;
  max-width: 52ch; margin: 0 0 16px;
}

.svc-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.svc-hero__btn-main { gap: 8px; font-size: 15px; padding: 13px 22px; box-shadow: 0 10px 28px rgba(214,40,57,0.38); }

.svc-hero__trust { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-hero__trust span {
  font-size: 13px; color: rgba(255,255,255,0.78);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
}

.svc-hero__panel {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 24px; align-self: center;
}

.svc-hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-hero__stat {
  padding: 12px 14px; border-radius: 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  text-align: center; transition: background 0.2s, transform 0.2s;
}
.svc-hero__stat:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.svc-hero__stat strong {
  display: block; color: #fff;
  font-family: "Outfit", sans-serif; font-size: clamp(18px,1.6vw,24px);
  font-weight: 800; line-height: 1; margin-bottom: 3px;
}
.svc-hero__stat strong sup { font-size: 0.55em; vertical-align: super; }
.svc-hero__stat span { color: rgba(255,255,255,0.7); font-size: 12px; line-height: 1.4; }

.svc-hero__info-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  padding: 16px; backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 12px;
}
.svc-hero__info-row { display: flex; align-items: flex-start; gap: 14px; }
.svc-hero__info-row div:last-child { display: flex; flex-direction: column; gap: 2px; }
.svc-hero__info-row strong { color: #fff; font-size: 14px; font-weight: 700; }
.svc-hero__info-row span { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.4; }

.svc-hero__info-icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.svc-hero__info-icon--green { background: rgba(46,204,113,0.18); border: 1px solid rgba(46,204,113,0.3); color: #2ecc71; }
.svc-hero__info-icon--blue  { background: rgba(30,130,230,0.18); border: 1px solid rgba(30,130,230,0.3); }
.svc-hero__info-icon--red   { background: rgba(214,40,57,0.18);  border: 1px solid rgba(214,40,57,0.3); }

.svc-hero__cta-full {
  width: 100%; justify-content: center;
  padding: 15px; font-size: 15px; margin-top: 4px;
  box-shadow: 0 12px 28px rgba(214,40,57,0.38);
}

@media (max-width: 960px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__content h1 { max-width: none; font-size: 34px; }
}
@media (max-width: 640px) {
  .svc-hero { padding-bottom: 36px; }
  .svc-hero__actions { flex-direction: column; }
  .svc-hero__actions .button { width: 100%; justify-content: center; }
}

/* =========================================
   SVC PAGE — Modern Sayfa Bileşenleri
   ========================================= */

/* Trust bar */
.svc-trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(10,31,56,0.08);
  padding: 0;
}
.svc-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 52px;
}
.svc-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.svc-trust-bar__icon { font-size: 16px; }
.svc-trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(10,31,56,0.1);
  flex-shrink: 0;
}

/* Section heading */
.svc-section-head {
  margin-bottom: 32px;
}
.svc-section-head .eyebrow { display: block; margin-bottom: 8px; }
.svc-section-head h2 { margin: 0; max-width: 38ch; }

/* Feature grid 3x2 */
.svc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(214,40,57,0.2);
}
.svc-feat__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.svc-feat__icon--red    { background: rgba(214,40,57,0.1);  }
.svc-feat__icon--blue   { background: rgba(13,79,147,0.1); }
.svc-feat__icon--green  { background: rgba(46,204,113,0.12); }
.svc-feat__icon--purple { background: rgba(108,55,168,0.1); }
.svc-feat__icon--orange { background: rgba(230,126,34,0.1); }
.svc-feat__icon--teal   { background: rgba(0,163,163,0.1); }
.svc-feat h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.svc-feat p  { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Sidebar layout */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.svc-main-content { min-width: 0; }

/* Article styles */
.svc-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 38px;
  box-shadow: var(--shadow);
}
.svc-article h2 {
  font-size: clamp(20px,1.8vw,26px);
  color: var(--navy);
  margin: 28px 0 12px;
}
.svc-article h2:first-child { margin-top: 0; }
.svc-article p {
  font-size: 15px; color: var(--muted);
  line-height: 1.76; margin: 0 0 14px;
}
.svc-checklist {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: grid; gap: 8px;
}
.svc-checklist li {
  padding-left: 26px; position: relative;
  font-size: 15px; color: var(--muted); line-height: 1.65;
}
.svc-checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #2ecc71; font-weight: 900;
}

/* Sidebar widgets */
.svc-sidebar { display: flex; flex-direction: column; gap: 18px; }

.svc-cta-card {
  background: linear-gradient(145deg, #07131f, #102846 60%, #48141d);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-strong);
}
.svc-cta-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.svc-cta-card h3 {
  color: #fff; font-size: 22px; margin: 6px 0 8px;
}
.svc-cta-card p {
  color: rgba(255,255,255,0.72); font-size: 14px;
  line-height: 1.6; margin: 0 0 16px;
}

.svc-info-widget, .svc-other-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.svc-info-widget h4, .svc-other-widget h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin: 0 0 14px; font-weight: 700;
}
.svc-scope-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.svc-scope-list li {
  font-size: 14px; color: var(--navy); font-weight: 500;
  padding: 8px 12px 8px 30px; position: relative;
  background: rgba(12,35,64,0.03); border-radius: 10px;
}
.svc-scope-list li::before {
  content: "→"; position: absolute; left: 10px;
  color: var(--accent); font-weight: 900;
}
.svc-other-links {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-other-links a {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(12,35,64,0.05);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--navy);
  transition: background 0.18s, border-color 0.18s;
}
.svc-other-links a:hover {
  background: rgba(214,40,57,0.07);
  border-color: rgba(214,40,57,0.2);
  color: var(--accent);
}

/* Process steps */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.svc-step__num {
  font-family: "Outfit", sans-serif;
  font-size: 42px; font-weight: 800; line-height: 1;
  color: rgba(214,40,57,0.12);
  margin-bottom: 14px;
}
.svc-step h3 {
  font-size: 16px; color: var(--navy); margin-bottom: 8px;
}
.svc-step p {
  margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65;
}

/* FAQ wrapper */
.svc-faq-wrap { max-width: 820px; }

/* Responsive */
@media (max-width: 1080px) {
  .svc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-trust-bar__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .svc-trust-bar__divider { display: none; }
  .svc-article { padding: 24px 22px; }
}
@media (max-width: 600px) {
  .svc-feature-grid { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; }
}

/* =========================================
   CORPORATE PAGE HEADER (Compact Hero)
   ========================================= */
.page-header-compact {
  padding: 60px 0 50px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(214, 40, 57, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(22, 64, 111, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #071527 0%, #102846 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-header-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 70%);
  pointer-events: none;
}

.page-header-compact .breadcrumbs {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
}

.page-header-compact .breadcrumbs a { color: var(--white); font-weight: 600; }
.page-header-compact .breadcrumbs span { opacity: 0.5; margin: 0 4px; }
.page-header-compact .breadcrumbs span:last-child { color: var(--white); opacity: 1; font-weight: 700; }

.page-header-compact .eyebrow {
  color: #ff3f52;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.page-header-compact h1 {
  color: var(--white);
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  max-width: 18ch;
}

.page-header-compact .lead {
  color: rgba(255,255,255,0.85);
  margin-top: 18px;
  max-width: 65ch;
  font-size: 18px;
  line-height: 1.6;
}

.page-header-compact .hero-deco {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.page-header-compact .hero-deco::after {
  content: "ASRIN";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.2em;
}

/* =========================================
   CORPORATE CONTENT STYLES
   ========================================= */
.corp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  margin-top: 40px;
}

.corp-main h2 {
  font-size: 28px;
  margin-top: 40px;
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

.corp-main h2:first-child { margin-top: 0; }

.corp-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.corp-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.corp-sidebar-widget h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--navy);
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 10px;
}

.corp-icon-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.corp-icon-box .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.corp-icon-box .text h4 {
  margin: 0 0 5px;
  font-size: 18px;
}

.corp-icon-box .text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 992px) {
  .corp-layout {
    grid-template-columns: 1fr;
  }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS REFINEMENT */
.button--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(214, 40, 57, 0.3);
}

.button--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(214, 40, 57, 0.4);
}

.button--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.button--whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* CHECKLIST REFINEMENT */
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* FAQ REFINEMENT */
.faq-item summary {
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--surface-soft);
  border-radius: 8px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: var(--navy);
  color: var(--white);
}

.faq-item p {
  padding: 15px;
  border-left: 2px solid var(--navy);
  margin: 0;
}

/* =========================================
   PREMIUM UI ENHANCEMENTS
   ========================================= */

:root {
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 30px 60px rgba(214, 40, 57, 0.15);
}

/* Smooth background shape */
.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.bg-shape--1 {
  width: 400px; height: 400px;
  background: var(--accent-soft);
  top: -100px; right: -100px;
}
.bg-shape--2 {
  width: 300px; height: 300px;
  background: var(--navy-soft);
  bottom: 10%; left: -50px;
}

/* Glassmorphism Cards */
.corp-sidebar-widget, .corp-main section {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.corp-main section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--accent-soft);
}

/* Enhanced Buttons */
.button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.button:hover::after {
  transform: translateX(0);
}

/* Icon Box Hover */
.corp-icon-box {
  padding: 15px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.corp-icon-box:hover {
  background: var(--surface-soft);
}

.corp-icon-box .icon {
  transition: transform 0.3s ease;
}
.corp-icon-box:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.ph-sidebar .corp-sidebar-widget:first-child {
  animation: float 4s ease-in-out infinite;
}

/* Page Header Enhancement */
/* Consolidated into section above */

/* REFINED TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 15px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 140px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Breadcrumbs Premium Style */
.breadcrumbs {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  margin-bottom: 20px !important;
}

/* Page Header Sub-Elements */
.page-header-compact .eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Content Section Layout Adjustments */
.corp-main section {
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.corp-main h2 {
  font-size: 32px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Sidebar Widget Enhancements */
.corp-sidebar-widget {
  transition: all 0.3s ease;
}

.corp-sidebar-widget h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: inherit; /* Inherit white from parent div if set */
}

.corp-sidebar-widget p {
  color: inherit;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.corp-sidebar-widget .button {
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.corp-sidebar-widget--dark {
  background: linear-gradient(135deg, #0b2038, #16406f);
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 20px 40px rgba(8, 24, 46, 0.3) !important;
}

.corp-sidebar-widget--dark h3 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.corp-sidebar-widget--dark p {
  color: rgba(255,255,255,0.9) !important;
}

.corp-sidebar-widget--dark .button--primary {
  background: linear-gradient(135deg, #d62839, #a91b2b);
  box-shadow: 0 8px 20px rgba(214, 40, 57, 0.4);
}

.corp-sidebar-widget--dark .button--whatsapp {
  background: linear-gradient(135deg, #19bf62, #128c49);
  box-shadow: 0 8px 20px rgba(25, 191, 98, 0.4);
}

.corp-sidebar-widget--dark .widget-footer {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.7;
  text-align: center;
  color: #fff;
}

.svc-scope-list li {
  background: rgba(12, 35, 64, 0.03);
  border: 1px solid rgba(12, 35, 64, 0.05);
  margin-bottom: 10px;
  padding: 12px 12px 12px 35px !important;
  border-radius: 12px;
}

/* Footer Bottom Style */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .corp-main section {
    padding: 30px 20px;
  }
  .page-header-compact {
    padding: 40px 20px;
  }
}

/* =========================================
   ENRICHED PAGE SECTIONS
   ========================================= */

/* Feature Grid with Image Backgrounds */
.ph-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.ph-img-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
}

.ph-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ph-img-card:hover img {
  transform: scale(1.1);
}

.ph-img-card__content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.ph-img-card__content h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* Steps Timeline */
.ph-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 0;
}

.ph-timeline::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; width: 2px; height: 100%;
  background: var(--accent-soft);
  transform: translateX(-50%);
}

.ph-timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.ph-timeline-item--left { left: 0; text-align: right; }
.ph-timeline-item--right { left: 50%; text-align: left; }

.ph-timeline-item::after {
  content: "";
  position: absolute;
  top: 30px; width: 20px; height: 20px;
  background: var(--white);
  border: 4px solid var(--accent);
  border-radius: 50%;
  z-index: 1;
}

.ph-timeline-item--left::after { right: -10px; }
.ph-timeline-item--right::after { left: -10px; }

.ph-timeline-content {
  background: var(--white);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
}

.ph-timeline-content h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

/* Stats Counter Section */
.ph-stats-bar {
  display: flex;
  justify-content: space-around;
  background: var(--navy);
  color: #fff;
  padding: 60px 20px;
  border-radius: 30px;
  margin: 80px 0;
  box-shadow: 0 30px 60px rgba(12, 35, 64, 0.2);
}

.ph-stat-item {
  text-align: center;
}

.ph-stat-item .num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-header);
}

.ph-stat-item .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* Comparison Table */
.ph-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 50px 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.ph-compare th, .ph-compare td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.ph-compare th {
  background: var(--surface-soft);
  font-weight: 700;
  color: var(--navy);
}

.ph-compare .check { color: #2ecc71; font-weight: bold; }
.ph-compare .cross { color: #e74c3c; font-weight: bold; }

@media (max-width: 768px) {
  .ph-img-grid { grid-template-columns: 1fr; }
  .ph-timeline::before { left: 20px; }
  .ph-timeline-item { width: 100%; left: 0; text-align: left; padding-left: 50px; }
  .ph-timeline-item::after { left: 10px; }
  .ph-stats-bar { flex-direction: column; gap: 40px; }
}


/* Trust Bar / Logo Section */
.trust-bar {
  background: var(--surface-soft);
  padding: 40px 0;
  margin: 60px 0;
  border-radius: 24px;
}

.trust-bar__wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.trust-bar:hover .trust-bar__wrap {
  opacity: 1;
  filter: grayscale(0);
}

.trust-item {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

/* Timeline Customization */
.ph-timeline-item h3 {
  font-size: 18px;
  font-weight: 800;
}

/* Comparison Table Styling */
.ph-compare thead th {
  background: var(--navy);
  color: var(--white);
  border: none;
}

.ph-compare td {
  font-size: 15px;
}

/* Mobile Adjustments for Enriched Sections */
@media (max-width: 600px) {
  .ph-stats-bar {
    padding: 30px 10px;
  }
  .ph-stat-item .num {
    font-size: 32px;
  }
  .ph-compare {
    display: block;
    overflow-x: auto;
  }
}

/* REFINED TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 40px 0;
}

.trust-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.trust-card .icon {
  font-size: 32px;
  margin-bottom: 5px;
}

.trust-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  display: block;
}

@media (max-width: 992px) {
  .trust-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .trust-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-card {
    padding: 20px 10px;
    min-height: 120px;
  }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   SEO CONTENT UTILITIES
   ========================================= */

.checklist {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.checklist li {
  position: relative;
  padding: 12px 12px 12px 35px;
  margin-bottom: 12px;
  background: var(--surface-soft);
  border-radius: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}

.ordered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 25px 0;
}

.ordered-list li {
  counter-increment: item;
  position: relative;
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.ordered-list li::before {
  content: counter(item);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.svc-other-links {
  display: grid;
  gap: 10px;
}

.svc-other-links a {
  padding: 12px 16px;
  background: rgba(12, 35, 64, 0.03);
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.svc-other-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateX(5px);
}

.district-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.district-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.district-tag:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

/* Responsive text utilities */
.show-mobile { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline !important; }
}


/* --- Google Translate & Lang Switcher --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.lang-btn:hover, .lang-btn.active {
  color: #fff;
}

/* Hide Google Translate Default Bar */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
  display: none !important;
}
body {
  top: 0px !important;
}
/* Hide the Google popup tooltip */
.goog-tooltip {
  display: none !important;
}
.goog-tooltip:hover {
  display: none !important;
}
/* Hide the default widget */
#google_translate_element {
  display: none !important;
}
