:root {
  --aw-navy: #071a3a;
  --aw-navy-deep: #020817;
  --aw-blue: #0a2a7a;
  --aw-gold: #cfa66a;
  --aw-gold-light: #f3d79f;
  --aw-surface: #ffffff;
  --aw-surface-soft: #f5f7fb;
  --aw-text: #14213a;
  --aw-muted: #5d687b;
  --aw-line: rgba(10, 42, 122, 0.12);
  --aw-shadow: 0 22px 55px rgba(2, 8, 23, 0.12);
  --aw-shadow-hover: 0 28px 70px rgba(2, 8, 23, 0.18);
}

html {
  scroll-padding-top: 120px;
}

body {
  overflow-x: hidden;
  color: var(--aw-text);
  background: var(--aw-surface);
  line-height: 1.75;
}

body,
button,
input,
select,
textarea {
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--aw-gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--aw-gold);
  color: var(--aw-navy-deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-progress {
  position: fixed;
  z-index: 1900;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  pointer-events: none;
}

.site-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8e602b, var(--aw-gold-light), var(--aw-gold));
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}

html[dir="ltr"] .site-progress > span {
  transform-origin: left center;
}

/* Compact contact bar */
.top-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 4px 0;
  background: var(--aw-navy-deep);
  border-bottom: 1px solid rgba(207, 166, 106, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.top-bar .container,
.main-nav .container {
  width: min(1440px, calc(100% - 48px));
  max-width: 1440px;
}

.top-bar-left,
.top-bar-right {
  gap: 14px;
}

.top-bar-left span {
  margin: 0;
  font-size: 0.79rem;
}

.top-bar-left i {
  color: var(--aw-gold-light);
}

.top-bar a:hover {
  color: var(--aw-gold-light);
}

.social-icons a[href="#"] {
  display: none !important;
}

/* Header and navigation */
.main-header {
  z-index: 1050;
}

.main-nav,
.dark-theme .main-nav {
  min-height: 88px;
  overflow: visible;
  background: linear-gradient(105deg, #071a3a 0%, #020817 64%, #06132a 100%);
  border: 0;
  box-shadow: 0 12px 35px rgba(2, 8, 23, 0.28);
}

.main-nav::after,
.dark-theme .main-nav::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  inset-block-end: 0;
  height: 3px;
  background: linear-gradient(90deg, #8f6029 0%, var(--aw-gold-light) 48%, #a97838 100%);
  opacity: 1;
  pointer-events: none;
}

.main-nav .container {
  position: relative;
  z-index: 2;
  gap: 18px;
}

.navbar-brand {
  flex: 0 0 238px;
  margin: 0;
  padding: 6px 0;
}

.navbar-brand picture {
  display: block;
  width: 100%;
}

.brand-text {
  display: none !important;
}

.brand-logo-img {
  width: 238px;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(207, 166, 106, 0.32);
  border-radius: 13px;
  padding: 5px 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.17);
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.main-nav .nav-link,
.dark-theme .main-nav .nav-link {
  position: relative;
  margin: 0;
  padding: 29px 9px 25px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 9px;
  inset-block-end: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--aw-gold);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
  color: #fff !important;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav .jobs-link {
  margin-inline-start: 6px;
  padding-inline: 15px !important;
  border: 1px solid rgba(207, 166, 106, 0.62);
  border-radius: 999px;
  color: var(--aw-gold-light) !important;
}

.main-nav .jobs-link::after {
  display: none;
}

.main-nav .jobs-link:hover {
  background: var(--aw-gold);
  color: var(--aw-navy-deep) !important;
}

.main-nav .dropdown-menu {
  margin-top: -4px;
  padding: 9px;
  border: 1px solid rgba(207, 166, 106, 0.22);
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.98);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.main-nav .dropdown-item {
  border-radius: 8px;
}

.navbar-toggler {
  border: 1px solid rgba(207, 166, 106, 0.5);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: none !important;
}

/* Homepage first viewport */
.hero-section {
  position: relative;
  min-height: clamp(650px, calc(100svh - 126px), 850px);
  padding: 74px 0 108px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.5) 0%, rgba(4, 17, 42, 0.76) 45%, rgba(4, 17, 42, 0.95) 100%),
    url("assets/projects/project1.webp") center / cover no-repeat;
}

html[dir="ltr"] .hero-section {
  background:
    linear-gradient(270deg, rgba(2, 8, 23, 0.5) 0%, rgba(4, 17, 42, 0.76) 45%, rgba(4, 17, 42, 0.95) 100%),
    url("assets/projects/project1.webp") center / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(207, 166, 106, 0.2), transparent 32%),
    linear-gradient(0deg, rgba(2, 8, 23, 0.36), transparent 45%);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset-inline: 0;
  inset-block-end: 0;
  width: auto;
  height: 6px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #8f6029, var(--aw-gold-light), #a97838);
  box-shadow: none;
}

.hero-gradient {
  background: transparent;
}

.hero-section .container,
.hero-section .row {
  position: relative;
  z-index: 2;
}

.hero-section .row {
  min-height: 500px;
}

.hero-section .hero-content {
  max-width: 820px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 15px;
  border: 1px solid rgba(243, 215, 159, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aw-gold-light) !important;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-section .hero-content h1 {
  max-width: 810px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.55rem, 4.7vw, 4.75rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-section .hero-content h1 span {
  color: var(--aw-gold-light);
  font-weight: 500;
}

.hero-section .hero-content > p {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px !important;
  font-weight: 800;
}

.btn-primary-pill {
  border-color: var(--aw-gold);
  background: var(--aw-gold);
  color: var(--aw-navy-deep);
}

.btn-primary-pill:hover,
.btn-primary-pill:focus {
  border-color: var(--aw-gold-light);
  background: var(--aw-gold-light);
  color: var(--aw-navy-deep);
}

.btn-outline-pill {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-outline-pill:hover,
.btn-outline-pill:focus {
  border-color: #fff;
  background: #fff;
  color: var(--aw-navy);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px !important;
  margin-top: 26px;
}

.badge-pill {
  padding: 9px 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px !important;
  background: rgba(2, 8, 23, 0.46);
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.79rem;
  backdrop-filter: blur(9px);
}

.hero-card {
  max-width: 480px;
  margin-inline-start: auto;
  padding: 34px;
  border: 1px solid rgba(243, 215, 159, 0.3);
  border-radius: 22px;
  background: rgba(2, 8, 23, 0.72) !important;
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.hero-card h3 {
  margin-bottom: 20px;
  color: var(--aw-gold-light);
  font-size: 1.22rem;
}

.hero-card ul {
  margin: 0;
  padding-inline-start: 1.25rem;
}

.hero-card li {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.hero-card li::marker {
  color: var(--aw-gold);
}

.hero-contact-box {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-contact-box span {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.84rem;
}

/* Trust and content sections */
.trust-strip {
  position: relative;
  z-index: 8;
  margin-top: -52px;
  padding: 0;
}

.trust-strip .container {
  padding: 12px;
  border: 1px solid var(--aw-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--aw-shadow);
}

.trust-grid {
  gap: 0;
}

.trust-item {
  min-height: 92px;
  padding: 16px 18px;
  border-inline-start: 1px solid var(--aw-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-item:first-child {
  border-inline-start: 0;
}

.trust-item:hover {
  transform: none;
  background: var(--aw-surface-soft);
  box-shadow: none;
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(10, 42, 122, 0.08);
  color: var(--aw-blue);
}

.section-padding {
  padding-top: clamp(72px, 7vw, 110px);
  padding-bottom: clamp(72px, 7vw, 110px);
}

.section-title {
  max-width: 820px;
  margin-inline: auto;
}

.section-title h2,
.inner-title {
  color: var(--aw-navy);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-title p,
.section-intro {
  color: var(--aw-muted);
  line-height: 1.95;
}

.service-card,
.info-item,
.project-card,
.news-card,
.transparency-card,
.jobs-box,
.org-box,
.contact-info-box,
.contact-form-card {
  border: 1px solid var(--aw-line) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 14px 38px rgba(2, 8, 23, 0.07) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.info-item:hover,
.project-card:hover,
.news-card:hover,
.transparency-card:hover,
.jobs-box:hover,
.org-box:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 166, 106, 0.5) !important;
  box-shadow: var(--aw-shadow-hover) !important;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 166, 106, 0.32);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 42, 122, 0.1), rgba(207, 166, 106, 0.15));
  color: var(--aw-blue);
}

.project-picture,
.project-card picture {
  border-radius: 14px;
}

.project-card::after {
  background: var(--aw-gold);
  color: var(--aw-navy-deep);
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid rgba(10, 42, 122, 0.17);
  border-radius: 11px;
  background-color: #fff;
}

textarea.form-control {
  min-height: 138px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--aw-gold);
  box-shadow: 0 0 0 4px rgba(207, 166, 106, 0.14);
}

.form-status {
  margin: 16px 0 0;
  color: var(--aw-blue);
  font-weight: 700;
}

.contact-form-card form[data-whatsapp-form] .btn[type="submit"] {
  min-height: 52px;
  border: 0;
  background: linear-gradient(135deg, #1fbf6b, #128c55);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 140, 85, 0.25);
}

.contact-form-card form[data-whatsapp-form] .btn[type="submit"]:hover {
  background: linear-gradient(135deg, #22c976, #0f7c4a);
  color: #fff;
}

.contact-form-card form[data-whatsapp-form] .btn[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.inner-hero {
  padding: 92px 0 118px;
  background:
    radial-gradient(circle at 80% 10%, rgba(207, 166, 106, 0.2), transparent 32%),
    linear-gradient(135deg, var(--aw-navy) 0%, var(--aw-navy-deep) 72%);
}

.inner-hero::after {
  height: 6px;
  background: linear-gradient(90deg, #8f6029, var(--aw-gold-light), #a97838);
}

.main-footer {
  margin-top: 76px;
  background: radial-gradient(circle at top left, #17346e 0%, #071a3a 42%, #020817 100%);
}

.main-footer::before {
  opacity: 0.92;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.56);
}

.whatsapp-float {
  min-height: 50px;
  padding: 11px 19px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: #128c55;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float::before {
  content: "↗";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
}

/* Dark mode refinements */
.dark-theme body {
  color: #e8edf6;
  background: #050816;
}

.dark-theme .trust-strip .container,
.dark-theme .service-card,
.dark-theme .info-item,
.dark-theme .project-card,
.dark-theme .news-card,
.dark-theme .transparency-card,
.dark-theme .jobs-box,
.dark-theme .org-box,
.dark-theme .contact-info-box,
.dark-theme .contact-form-card {
  border-color: rgba(207, 166, 106, 0.2) !important;
  background: #08132a;
}

.dark-theme .trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dark-theme .trust-text strong,
.dark-theme .section-title h2,
.dark-theme .inner-title {
  color: #fff;
}

.dark-theme .trust-text span,
.dark-theme .section-title p,
.dark-theme .section-intro {
  color: rgba(255, 255, 255, 0.64);
}

/* Responsive navigation and first viewport */
@media (max-width: 1399.98px) {
  .top-bar .container,
  .main-nav .container {
    width: min(1320px, calc(100% - 32px));
  }

  .navbar-brand {
    flex-basis: 196px;
  }

  .brand-logo-img {
    width: 196px;
    height: 64px;
    padding-inline: 9px;
  }

  .main-nav .nav-link,
  .dark-theme .main-nav .nav-link {
    padding-inline: 6px !important;
    font-size: 0.76rem;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 88px;
  }

  .main-nav {
    min-height: 78px;
  }

  .navbar-brand {
    flex-basis: 205px;
  }

  .brand-logo-img {
    width: 205px;
    height: 62px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 120px);
    margin-top: 10px;
    padding: 10px 4px 18px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 2px;
  }

  .main-nav .nav-link,
  .dark-theme .main-nav .nav-link {
    padding: 13px 15px !important;
    border-radius: 9px;
    font-size: 0.95rem;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.07);
  }

  .main-nav .jobs-link {
    margin: 7px 0 0;
    text-align: center;
  }

  .main-nav .dropdown-menu {
    position: static;
    margin: 0 14px 8px;
    box-shadow: none;
  }

  .hero-section {
    min-height: auto;
    padding: 76px 0 100px;
    text-align: start;
    background-position: 37% center;
  }

  .hero-section .row {
    min-height: 0;
  }

  .hero-section .hero-content {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .trust-strip {
    margin-top: -36px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    border: 0;
  }

  .trust-item:nth-child(odd) {
    border-inline-end: 1px solid var(--aw-line);
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--aw-line);
  }
}

@media (max-width: 767.98px) {
  .top-bar .container {
    justify-content: center !important;
  }

  .top-bar-left {
    width: 100%;
    justify-content: center;
  }

  .top-bar-left span:nth-child(3),
  .top-bar-right .social-icons {
    display: none;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .hero-section .hero-content h1 {
    font-size: clamp(2.25rem, 9.6vw, 3.35rem);
  }

  .hero-section .hero-content > p {
    font-size: 0.96rem;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .badge-pill {
    flex: 1 1 calc(50% - 8px);
    display: grid;
    place-items: center;
    min-height: 46px;
    text-align: center;
  }

  .inner-hero {
    padding: 64px 0 82px;
  }

  .main-footer {
    margin-top: 52px;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    min-height: 34px;
  }

  .top-bar-left {
    gap: 8px;
  }

  .top-bar-left span {
    font-size: 0.71rem;
  }

  .top-bar-left span:nth-child(2) {
    display: none;
  }

  .top-bar-right {
    position: absolute;
    inset-inline-end: 12px;
    width: auto;
  }

  .top-bar .theme-toggle-btn {
    display: none;
  }

  .top-bar .lang-switch {
    font-size: 0.73rem;
  }

  .main-nav .container {
    width: calc(100% - 22px);
  }

  .navbar-brand {
    flex: 0 1 178px;
    justify-content: flex-start !important;
  }

  .brand-logo-img {
    width: 178px;
    height: 57px;
    border-radius: 10px;
  }

  .hero-section {
    padding: 62px 0 82px;
    background-position: 32% center;
  }

  .hero-tagline {
    padding: 7px 11px;
    font-size: 0.7rem;
  }

  .hero-section .hero-content h1 {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
    line-height: 1.23;
  }

  .hero-badges {
    display: none;
  }

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

  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-child(n + 3) {
    min-height: 78px;
    border: 0;
    border-top: 1px solid var(--aw-line);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .whatsapp-float {
    inset-inline-start: 12px;
    inset-block-end: 14px;
    min-height: 46px;
    padding: 9px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Search-focused service landing pages */
.seo-landing {
  background: #f5f7fb;
}

.seo-landing .landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(207, 166, 106, 0.2), transparent 32%),
    linear-gradient(135deg, #06132a 0%, #0a2a7a 100%);
  color: #fff;
}

.seo-landing .landing-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 72px;
  background: url("assets/branding/header-wave.svg") center bottom / 100% 100% no-repeat;
}

.seo-landing .landing-eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4d9aa;
  font-weight: 700;
}

.seo-landing .landing-hero h1 {
  max-width: 820px;
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.seo-landing .landing-hero .lead {
  max-width: 760px;
  color: #e5e7eb;
  line-height: 1.9;
}

.seo-landing .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.seo-landing .landing-actions .btn {
  min-width: 180px;
}

.seo-landing .landing-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.seo-landing .landing-section h2 {
  color: #0a2a7a;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
}

.seo-landing .landing-copy {
  color: #374151;
  font-size: 1.04rem;
  line-height: 2;
}

.seo-landing .landing-card,
.seo-landing .faq-card,
.seo-landing .coverage-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(10, 42, 122, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.seo-landing .landing-card h3,
.seo-landing .coverage-card h3 {
  color: #0a2a7a;
  font-size: 1.15rem;
  font-weight: 800;
}

.seo-landing .landing-card i {
  margin-bottom: 1rem;
  color: #cfa66a;
  font-size: 1.9rem;
}

.seo-landing .landing-list {
  padding: 0;
  list-style: none;
}

.seo-landing .landing-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-inline-start: 1.4rem;
}

.seo-landing .landing-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: #b48745;
  font-weight: 800;
}

.seo-landing .landing-cta {
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #0a2a7a, #06132a);
  color: #fff;
  box-shadow: 0 22px 55px rgba(6, 19, 42, 0.22);
}

.seo-landing .landing-cta h2,
.seo-landing .landing-cta p {
  color: #fff;
}

.seo-landing .breadcrumb {
  margin-bottom: 0;
}

.seo-landing .breadcrumb a {
  color: #0a2a7a;
}

.dark-theme .seo-landing,
.dark-theme .seo-landing .landing-section {
  background: #050816;
}

.dark-theme .seo-landing .landing-card,
.dark-theme .seo-landing .faq-card,
.dark-theme .seo-landing .coverage-card {
  border-color: rgba(207, 166, 106, 0.2);
  background: #071125;
}

.dark-theme .seo-landing .landing-copy,
.dark-theme .seo-landing .landing-card p,
.dark-theme .seo-landing .landing-card li,
.dark-theme .seo-landing .faq-card p {
  color: #d1d5db;
}
