/* World Consulting - Corporate Styles */
:root {
  --navy-900: #061224;
  --navy-800: #0a1628;
  --navy-700: #0f2240;
  --navy-600: #1a3358;
  --navy-500: #243d6b;
  --gold-400: #e8c547;
  --gold-500: #d4af37;
  --gold-600: #b8960c;
  --gold-700: #9a7b0a;
  --white: #ffffff;
  --gray-100: #f4f6f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --shadow-sm: 0 2px 8px rgba(6, 18, 36, 0.08);
  --shadow-md: 0 8px 30px rgba(6, 18, 36, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 18, 36, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 18, 36, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo__text span {
  display: block;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-500);
  background: rgba(212, 175, 55, 0.1);
}

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

.lang-select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  min-width: 110px;
}

.lang-select option {
  background: var(--navy-800);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.btn--outline {
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
  background: transparent;
}

.btn--outline:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn--white {
  background: var(--white);
  color: var(--navy-800);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--gray-100);
}

.section--navy {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section--navy .section__label { color: var(--gold-400); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section__desc {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section--navy .section__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about__card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about__card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
}

.about__features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.about__feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about__feature p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.about__text p {
  margin-bottom: 20px;
  color: var(--gray-600);
}

.about__text p:first-of-type {
  font-size: 1.1rem;
  color: var(--gray-800);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--navy-800);
}

.service-card__desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card__list {
  display: grid;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.service-card__list li::before {
  content: '✦';
  color: var(--gold-500);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Process */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process__step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
}

.process__step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Why Us */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why__item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why__item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy-800);
}

.why__item p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* FAQ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover { color: var(--gold-600); }

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact__info {
  display: grid;
  gap: 24px;
}

.contact__card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact__card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__card h4 {
  font-size: 0.85rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact__card a,
.contact__card p {
  color: var(--white);
  font-size: 1rem;
}

.contact__card a:hover { color: var(--gold-400); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.contact__form > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  transition: var(--transition);
  background: var(--gray-100);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

.form__group textarea { resize: vertical; min-height: 130px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

.form__message.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form__message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Footer */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__brand .logo img { height: 40px; }

.footer h4 {
  color: var(--gold-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-float__menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: fadeUp 0.3s ease;
}

.whatsapp-float.open .whatsapp-float__menu { display: flex; }

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

.whatsapp-float__option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy-800);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-float__option:hover {
  background: #25d366;
  color: var(--white);
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  color: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* Loading */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
  }

  .nav.open { transform: translateX(0); }

  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .menu-toggle { display: flex; }

  .header__actions .btn--gold { display: none; }

  .hero__content { padding: 60px 0; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 1.8rem; }

  .section { padding: 70px 0; }

  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }

  .contact__form { padding: 28px; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .back-top { bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .service-card { padding: 28px; }
}

/* SEO content hub */
.seo-section {
  background: linear-gradient(180deg, var(--white), var(--gray-100));
}

.seo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.seo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.seo-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: 14px;
  line-height: 1.3;
}

.seo-card p {
  color: var(--gray-600);
  margin-bottom: 18px;
}

.seo-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.seo-card li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-800);
  font-size: 0.94rem;
}

.seo-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-600);
  font-weight: 700;
}

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

/* === Comprehensive SEO Expansion Styles === */
.services__grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.service-card__list li,
.seo-card li,
.content-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--gray-600);
  font-size: 0.94rem;
}
.service-card__list li::before,
.seo-card li::before,
.content-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 800;
}
.seo-section {
  background:
    linear-gradient(180deg, rgba(244,246,249,.85), rgba(255,255,255,1)),
    radial-gradient(ellipse at 15% 10%, rgba(212,175,55,.12), transparent 42%);
}
.seo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.seo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.seo-card--large {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) 1fr;
  column-gap: 36px;
  align-items: start;
}
.seo-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy-800);
  margin-bottom: 16px;
}
.seo-card p {
  color: var(--gray-600);
  margin-bottom: 18px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.content-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.content-card:hover,
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.42);
}
.content-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 18px;
}
.content-card h3 {
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 12px;
}
.content-card p {
  color: var(--gray-600);
  font-size: .95rem;
}
.content-card--checklist ul {
  margin-top: 16px;
}
.region-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.region-pill {
  border: 1px solid rgba(212,175,55,.28);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 16px 20px;
  color: rgba(255,255,255,.86);
  text-align: center;
  font-weight: 600;
}
.faq__list {
  max-width: 980px;
}
.faq__question {
  text-align: left;
}
@media (max-width: 1100px) {
  .services__grid--three,
  .content-grid,
  .content-grid--three,
  .region-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-card--large {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .services__grid--three,
  .content-grid,
  .content-grid--three,
  .region-list {
    grid-template-columns: 1fr;
  }
  .seo-card,
  .content-card {
    padding: 24px;
  }
}
