﻿/* ═══════════════════════════════════════════════════════════
   ALL INDEED — COLOR SYSTEM
   Palette: Deep Black · Warm White · Gold
   Dark Mode = Default | Light Mode = [data-theme="light"]
═══════════════════════════════════════════════════════════ */

:root {
  /* ── Gold Palette ── */
  --gold:        #c9a227;
  --gold-bright: #e8c355;
  --gold-deep:   #86640d;
  --gold-pale:   rgba(201, 162, 39, 0.12);
  --gold-line:   rgba(201, 162, 39, 0.28);
  --gold-glow:   rgba(232, 195, 85, 0.18);

  /* ── Dark Mode Surfaces (Default) ── */
  --bg:           #080808;
  --bg-soft:      #121212;
  --bg-card:      #0f0f0f;
  --panel:        rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.09);

  /* ── Dark Mode Text ── */
  --text:   #f0ead8;
  --muted:  #c8bfa4;
  --hint:   #7a7163;
  --white:  #ffffff;

  /* ── Dark Mode Borders ── */
  --line:        rgba(232, 195, 85, 0.20);
  --line-soft:   rgba(255, 255, 255, 0.08);
  --line-strong: rgba(232, 195, 85, 0.38);

  /* ── Shadows ── */
  --shadow:      rgba(0, 0, 0, 0.40);
  --shadow-gold: rgba(201, 162, 39, 0.22);

  /* ── Radii ── */
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;

  /* ── Layout ── */
  --container: 1180px;
}

/* ───────────────────────────────────────────
   LIGHT MODE OVERRIDES
─────────────────────────────────────────── */

html[data-theme="light"] {
  --bg:           #faf7f0;
  --bg-soft:      #f3ece0;
  --bg-card:      #ffffff;
  --panel:        rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);

  --text:   #18140c;
  --muted:  #564e3c;
  --hint:   #9a9080;
  --white:  #18140c;

  --line:        rgba(201, 162, 39, 0.24);
  --line-soft:   rgba(0, 0, 0, 0.07);
  --line-strong: rgba(201, 162, 39, 0.42);

  --shadow:      rgba(0, 0, 0, 0.10);
  --shadow-gold: rgba(201, 162, 39, 0.16);

  --gold-pale: rgba(201, 162, 39, 0.10);
  --gold-glow: rgba(201, 162, 39, 0.14);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.13), transparent 26%),
    radial-gradient(circle at 14% 78%,   rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #040404 0%, #0c0c0c 50%, #070707 100%);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 162, 39, 0.16), transparent 30%),
    radial-gradient(circle at 80% 64%, rgba(201, 162, 39, 0.08), transparent 32%),
    linear-gradient(180deg, #faf7f0 0%, #f5ecdc 55%, #ede2ce 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
  pointer-events: none;
  z-index: -2;
}

html[data-theme="light"] body::before { opacity: 0; }

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a   { color: inherit; }

.cards,
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(12px, 3vw, 24px);
}

h1 { font-size: clamp(26px, 6vw, 52px); }
h2 { font-size: clamp(22px, 5vw, 36px); }
h3 { font-size: clamp(18px, 4.5vw, 26px); }
p  { font-size: clamp(14px, 3.8vw, 18px); }

.decor,
.shape,
.bg-element {
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */

.page-shell { position: relative; }

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 260px; height: 260px;
  top: 120px; right: -100px;
  background: rgba(201, 162, 39, 0.16);
}

.page-shell::after {
  width: 220px; height: 220px;
  top: 760px; left: -80px;
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .page-shell::after {
  background: rgba(201, 162, 39, 0.08);
}

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

/* ═══════════════════════════════════════════
   HEADER & NAVBAR
═══════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 8px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.80);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

html[data-theme="light"] .navbar {
  background: rgba(250, 247, 240, 0.94);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 52px; height: 52px;
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, #1c1c1e 0%, #0a0a0b 90%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 60px; height: 14px;
  right: -6px; top: 20px;
  background: linear-gradient(90deg, #c28c27 0%, #e8c355 100%);
  transform: rotate(-35deg);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(232, 195, 85, 0.36);
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.4rem;
  line-height: 1;
}

.brand-text strong {
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #f0ead8;
}

.brand-text em {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--gold-bright);
}

html[data-theme="light"] .brand-text strong { color: #18140c; }
html[data-theme="light"] .brand-text em     { color: var(--gold-deep); }

.brand-text strong,
.brand-text em {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

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

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

.nav-link,
.nav-dropdown-link {
  color: var(--text);
  text-decoration: none;
  padding: 9px 14px;
  font-size: 0.94rem;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-link:hover {
  background: var(--gold-pale);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active,
html[data-theme="light"] .nav-dropdown-link:hover {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-deep);
}

.nav-cta {
  border: 1px solid var(--line-strong);
  background: var(--gold-pale);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 0.72rem;
  color: var(--gold-bright);
}

html[data-theme="light"] .nav-dropdown-trigger::after { color: var(--gold-deep); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

html[data-theme="light"] .nav-dropdown-menu {
  background: rgba(250, 247, 240, 0.98);
  border-color: rgba(201, 162, 39, 0.20);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.nav-theme-toggle {
  width: 46px; height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, #0d0d0f, #1a1a1f);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}

.nav-theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

html[data-theme="light"] .nav-theme-toggle {
  background: linear-gradient(135deg, #f5edd8, #e8c355);
  color: #18140c;
  border-color: var(--line-strong);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: var(--text);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */

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

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

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */

.hero,
.section { padding: 72px 0; }

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

.hero {
  padding-top: 18px;
  background:
    radial-gradient(circle at 20% 16%, rgba(201, 162, 39, 0.11), transparent 36%),
    radial-gradient(circle at 82% 68%, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #060606 0%, #0c0c0c 68%, rgba(6,6,6,0.12) 100%);
}

html[data-theme="light"] .hero {
  background:
    radial-gradient(circle at 20% 16%, rgba(201, 162, 39, 0.13), transparent 32%),
    radial-gradient(circle at 80% 72%, rgba(0, 0, 0, 0.04), transparent 34%),
    linear-gradient(180deg, #faf7f0 0%, #f5f0e8 70%, #ede5d6 100%);
}

/* ═══════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════ */

.hero-grid,
.section-grid,
.service-showcase-grid,
.contact-page-grid,
.faq-layout {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: calc(100vh - 140px);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

html[data-theme="light"] .eyebrow { color: var(--gold-deep); }

.hero-copy h1,
.hero-copy h2,
.section-intro h2,
.section-head h2,
.contact-form-intro h2,
.faq-content h2 {
  margin: 0;
  font-weight: 900;
}

.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.3;
  color: #f0ead8;
}

html[data-theme="light"] .hero-headline { color: #18140c; }

.hero-subline {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 12px 0 0;
}

.hero-text,
.hero-subline,
.section-intro p,
.slide-content p,
.service-card p,
.blog-card p,
.contact-info-text,
.faq-answer p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

.hero-actions,
.contact-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn,
.service-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.service-package-btn:hover { transform: translateY(-3px); }

.btn-primary {
  color: #100d06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 32px var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.34);
}

.btn-secondary,
.service-package-btn {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}

html[data-theme="light"] .btn-secondary {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
}

/* ═══════════════════════════════════════════
   SHARED CARD SYSTEM
═══════════════════════════════════════════ */

.stat-card,
.service-card,
.blog-card,
.about-panel,
.slider-frame,
.service-step-card,
.service-package-card,
.service-showcase-copy article,
.contact-page-grid {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  box-shadow: 0 20px 40px var(--shadow);
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .stat-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .blog-card,
html[data-theme="light"] .about-panel,
html[data-theme="light"] .slider-frame,
html[data-theme="light"] .service-step-card,
html[data-theme="light"] .service-package-card,
html[data-theme="light"] .service-showcase-copy article {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,240,0.92));
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

/* ═══════════════════════════════════════════
   HERO STATS
═══════════════════════════════════════════ */

.hero-stats,
.about-stats-grid,
.services-grid,
.blog-grid,
.service-steps-grid,
.service-packages-grid {
  display: grid;
  gap: 18px;
}

.hero-stats,
.about-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.stat-card,
.about-stat-item {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(0,0,0,0.44));
  box-shadow: 0 14px 28px var(--shadow);
}

html[data-theme="light"] .stat-card,
html[data-theme="light"] .about-stat-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(250,247,240,0.88));
  border-color: var(--line-strong);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.stat-card strong,
.about-stat-item strong {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

html[data-theme="light"] .stat-card strong,
html[data-theme="light"] .about-stat-item strong { color: var(--gold-deep); }

.stat-card span,
.about-stat-item span { color: var(--muted); }

/* ═══════════════════════════════════════════
   HERO ILLUSTRATION
═══════════════════════════════════════════ */

.hero-visual-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  margin: 0;
  width: 100%;
  max-width: 640px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px var(--shadow);
  background: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0.6));
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-theme="light"] .hero-photo {
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 440px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 24% 18%, rgba(201, 162, 39, 0.16), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(0,0,0,0.45), transparent 42%),
    #0e0e0e;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px var(--shadow);
  overflow: hidden;
}

html[data-theme="light"] .hero-illustration {
  background:
    radial-gradient(circle at 24% 18%, rgba(201, 162, 39, 0.12), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(0,0,0,0.06), transparent 42%),
    #f0e8d8;
  border-color: rgba(201, 162, 39, 0.24);
}

.hero-board {
  position: absolute;
  top: 38px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 42%;
  border-radius: 18px;
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  padding: 20px 24px;
}

html[data-theme="light"] .hero-board {
  background: linear-gradient(180deg, #f5f0e8, #ede5d4);
  border-color: rgba(201, 162, 39, 0.22);
}

.hero-board::before {
  content: "";
  position: absolute;
  top: 10px; left: 18px;
  width: 48px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.14);
}

.hero-board-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: end;
  height: 100%;
}

.hero-board-bars span {
  display: block;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 6px 16px var(--shadow-gold);
}

.hero-person {
  position: absolute;
  width: 160px; height: 260px;
  bottom: 34px;
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

html[data-theme="light"] .hero-person {
  background: linear-gradient(180deg, #e8dfc8, #d4c8b0);
  border-color: rgba(201, 162, 39, 0.20);
}

.hero-person-analyst { left: 80px; }
.hero-person-presenter { right: 80px; }

.hero-person::before,
.hero-person::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-person::before {
  width: 46px; height: 46px;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  background: #f5f1e6;
}

html[data-theme="light"] .hero-person::before { background: #e8d8b8; }

.hero-person::after {
  width: 60px; height: 10px;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border-radius: 10px;
}

html[data-theme="light"] .hero-person::after { background: #c8b898; }

.hero-person-presenter::after { width: 88px; }

.hero-bubble {
  position: absolute;
  top: 46px; right: 46px;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle, rgba(232, 195, 85, 0.20), rgba(0,0,0,0.38));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.hero-bubble::after {
  content: "↑";
  font-size: 1.6rem;
  color: var(--gold-bright);
  font-weight: 900;
}

/* ═══════════════════════════════════════════
   SLIDER
═══════════════════════════════════════════ */

.slide-visual { min-height: 290px; }

.mock-card,
.gold-panel,
.ring,
.grid-lines,
.spotlight,
.floating-badge,
.tech-screen,
.tech-data-lines,
.legal-laptop,
.legal-scale,
.legal-visual-glow,
.blog-table,
.blog-people,
.faq-person,
.faq-bubble,
.faq-briefcase { position: absolute; }

.visual-1 .mock-card {
  inset: 26px 24px auto auto;
  width: 65%; height: 62%;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.visual-1 .mock-chart,
.visual-2 .mini-cards {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.visual-1 .mock-chart {
  left: 30px; right: 30px;
  bottom: 28px; height: 140px;
}

.visual-1 .mock-chart span,
.visual-2 .mini-cards span {
  display: inline-block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.visual-1 .mock-chart span { width: 14%; }
.visual-1 .mock-chart span:nth-child(1) { height: 44%; }
.visual-1 .mock-chart span:nth-child(2) { height: 86%; }
.visual-1 .mock-chart span:nth-child(3) { height: 58%; }
.visual-1 .mock-chart span:nth-child(4) { height: 95%; }
.visual-1 .mock-chart span:nth-child(5) { height: 37%; }

.visual-2 .ring {
  width: 250px; height: 250px;
  border: 1px solid rgba(232, 195, 85, 0.32);
  border-radius: 50%;
  top: 24px; left: 30px;
}

.visual-2 .gold-panel {
  inset: 62px 32px 32px auto;
  width: 44%;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(232, 195, 85, 0.88), rgba(134, 100, 13, 0.86));
}

.visual-2 .mini-cards {
  right: 30px; left: 30px;
  bottom: 26px; gap: 16px;
}

.visual-2 .mini-cards span {
  width: calc(33.333% - 12px);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(201, 162, 39, 0.90));
}

.visual-2 .mini-cards span:nth-child(1) { height: 92px; }
.visual-2 .mini-cards span:nth-child(2) { height: 128px; }
.visual-2 .mini-cards span:nth-child(3) { height: 68px; }

.visual-3 .grid-lines {
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.32;
}

.visual-3 .spotlight {
  width: 220px; height: 220px;
  top: 34px; right: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 195, 85, 0.65), rgba(232, 195, 85, 0));
  filter: blur(10px);
}

.visual-3 .floating-badge {
  bottom: 28px; left: 28px;
  padding: 16px 24px;
  border-radius: 999px;
  color: #100d06;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-btn,
.slider-dot { cursor: pointer; }

.slider-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 1.4rem;
}

.slider-dots { display: flex; gap: 6px; }

.slider-dot {
  width: 12px; height: 12px;
  border: 0; padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}

html[data-theme="light"] .slider-dot { background: rgba(0,0,0,0.14); }

.slider-dot.is-active {
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px var(--gold-glow);
}

html[data-theme="light"] .slider-dot.is-active { background: var(--gold-deep); }

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */

.section-grid { grid-template-columns: 0.95fr 1.05fr; }
.about-grid { grid-template-columns: 1fr; gap: 34px; }

.about-dark {
  background: linear-gradient(180deg, #060606 0%, #0c0c0c 50%, #050505 100%);
  color: #f0ead8;
}

html[data-theme="light"] .about-dark {
  background: linear-gradient(180deg, #faf7f0 0%, #f5f0e8 55%, #ece4d4 100%);
  color: #18140c;
}

html[data-theme="light"] .about-dark .about-title  { color: #18140c; }
html[data-theme="light"] .about-dark .about-lede   { color: #564e3c; }

html[data-theme="light"] .about-dark .about-badge {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,247,240,0.82));
  border-color: var(--line-strong);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

html[data-theme="light"] .about-dark .about-card,
html[data-theme="light"] .about-dark .about-list-item,
html[data-theme="light"] .about-dark .about-metric {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,240,0.90));
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

html[data-theme="light"] .about-dark .about-card h3    { color: #18140c; }
html[data-theme="light"] .about-dark .about-card p     { color: #564e3c; }
html[data-theme="light"] .about-dark .about-metric span { color: #564e3c; }
html[data-theme="light"] .about-dark .about-list-item p { color: #18140c; }

html[data-theme="light"] .about-dark .about-list-number {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.28);
  color: var(--gold-deep);
}

html[data-theme="light"] .about-dark .about-list-section { background: transparent; }

html[data-theme="light"] .about-dark .about-list-media {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
    url("images/about-business.jpg") center/cover no-repeat;
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 12px 22px rgba(0,0,0,0.06);
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.4fr;
  gap: 28px;
  align-items: center;
  padding: 26px 0 10px;
}

.about-title {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.5;
  color: #f0ead8;
}

html[data-theme="light"] .about-title { color: #18140c; }

.about-lede {
  margin: 0 0 8px;
  color: #c8bfa4;
  line-height: 1.9;
}

html[data-theme="light"] .about-lede { color: #564e3c; }

.about-badge {
  justify-self: end;
  text-align: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: 500px;
  height: 500px;
  display: grid;
  place-items: center;
}

.about-badge-top {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
}

.about-badge-bottom {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
}

html[data-theme="light"] .about-badge-bottom { color: var(--gold-deep); }

.about-logo {
  display: grid;
  place-items: center;
  gap: 6px;
}

.about-logo-photo {
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 50px var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.30));
}

.about-logo-all {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #f0ead8;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.about-logo-indeed {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

html[data-theme="light"] .about-logo-all { color: #18140c; }
html[data-theme="light"] .about-logo-indeed { color: var(--gold-deep); }

.about-cards-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 10px 0 24px;
}

.about-card {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.26));
  box-shadow: 0 14px 28px var(--shadow);
}

.about-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.4rem;
}

.about-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
}

.about-pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  font-weight: 800;
  background: var(--gold-pale);
}

html[data-theme="light"] .about-pill { color: var(--gold-deep); }

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.about-metric {
  text-align: center;
  padding: 18px 12px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.26));
  box-shadow: 0 10px 22px var(--shadow);
}

.about-metric strong {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 6px;
}

html[data-theme="light"] .about-metric strong { color: var(--gold-deep); }

.about-metric span { color: var(--muted); }

.about-list-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
  padding: 10px 0 12px;
}

.about-list-media {
  width: 500px;
  max-width: 500px;
  justify-self: end;
  border-radius: 18px;
  border: 0;
  padding: 0;
  min-height: 500px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 30px var(--shadow);
  overflow: hidden;
}

.about-list-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

html[data-theme="light"] .about-list-media img {
  object-position: center bottom;
}

html[data-theme="light"] .about-list-media {
  border: 0;
  box-shadow: none;
}

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

.about-list-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
}

html[data-theme="light"] .about-list-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,247,240,0.88));
  border-color: rgba(201, 162, 39, 0.16);
}

.about-list-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px; height: 74px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: var(--gold-bright);
  font-weight: 900;
  font-size: 1.1rem;
  border: 1px solid var(--line-strong);
}

html[data-theme="light"] .about-list-number { color: var(--gold-deep); }

.about-list-item p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICE PAGES INTRO
═══════════════════════════════════════════ */

.about-intro-centered,
.service-hero-wrap,
.service-intro-wrap,
.blogs-hero-wrap { text-align: center; }

.service-hero-wrap {
  min-height: 70vh;
  display: grid;
  align-content: end;
  padding-bottom: 60px;
}

.about-intro-centered h2,
.service-intro-wrap h2,
.service-intro-wrap h3 {
  max-width: 1120px;
  margin-inline: auto;
  line-height: 1.6;
}

.about-intro-centered h3 {
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */

.services-grid,
.blog-grid,
.service-packages-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid { margin-top: 28px; }
.blog-grid     { margin-top: 24px; }

.service-card,
.blog-card,
.service-package-card,
.service-step-card,
.service-showcase-copy article {
  padding: 24px;
  border-radius: 24px;
}

.service-card h3,
.blog-card h3,
.service-showcase-copy h3,
.service-step-card h3,
.service-package-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--text);
}

.service-index,
.blog-card span,
.service-package-en {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold-bright);
  font-weight: 800;
}

html[data-theme="light"] .service-index,
html[data-theme="light"] .blog-card span,
html[data-theme="light"] .service-package-en { color: var(--gold-deep); }

/* Section head */
.section-head { margin-bottom: 8px; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--text);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */

.contact-page-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: stretch;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.98), rgba(10, 10, 10, 0.98));
}

html[data-theme="light"] .contact-page-grid {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,240,0.96));
  border-color: rgba(201, 162, 39, 0.20);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-hero-visual {
  grid-column: 1 / -1;
  margin: 0 0 16px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 40px var(--shadow);
}

.contact-hero-visual img {
  display: block;
  width: 100%; height: auto;
  object-fit: cover;
}

.contact-form-intro {
  max-width: 540px;
  margin-bottom: 28px;
}

.contact-form-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--text);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.contact-form-layout label { display: grid; gap: 10px; }

.contact-form-layout span,
.contact-info-label {
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 800;
}

html[data-theme="light"] .contact-form-layout span,
html[data-theme="light"] .contact-info-label { color: var(--gold-deep); }

.contact-form-layout input,
.contact-form-layout textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text);
  padding: 14px 0 12px;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease;
}

html[data-theme="light"] .contact-form-layout input,
html[data-theme="light"] .contact-form-layout textarea {
  border-bottom-color: rgba(0,0,0,0.14);
}

.contact-form-layout input:focus,
.contact-form-layout textarea:focus { border-bottom-color: var(--gold); }

.contact-form-layout input::placeholder,
.contact-form-layout textarea::placeholder { color: var(--hint); }

.contact-form-layout textarea {
  resize: vertical;
  min-height: 140px;
}

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

.contact-submit-wrap { display: flex; }

.contact-info-shell {
  display: grid;
  align-content: start;
  gap: 28px;
  padding-top: 24px;
}

.contact-info-highlight,
.contact-mail-link,
.contact-social-link { text-decoration: none; }

.contact-info-highlight {
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 800;
}

html[data-theme="light"] .contact-info-highlight { color: var(--gold-deep); }

.contact-mail-link {
  color: var(--gold-bright);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 800;
  white-space: nowrap;
  word-break: normal;
}

html[data-theme="light"] .contact-mail-link { color: var(--gold-deep); }

.contact-social-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-social-link:hover,
.contact-info-highlight:hover,
.contact-mail-link:hover { color: var(--gold-bright); }

html[data-theme="light"] .contact-social-link:hover,
html[data-theme="light"] .contact-info-highlight:hover,
html[data-theme="light"] .contact-mail-link:hover { color: var(--gold-deep); }

.contact-map-section { padding: 0 0 48px; }

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

html[data-theme="light"] .contact-map-section iframe {
  filter: grayscale(0.3) contrast(1.02) brightness(1.04);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.faq { padding-top: 26px; }

.faq-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 48px;
}

.faq-illustration {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 460px;
  justify-self: center;
  min-height: 560px;
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(201, 162, 39, 0.14), transparent 30%),
    radial-gradient(circle at 82% 62%, rgba(255,255,255,0.06), transparent 32%),
    linear-gradient(180deg, rgba(12,12,12,0.88), rgba(6,6,6,0.94));
}

.faq-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

html[data-theme="light"] .faq-illustration img {
  filter: brightness(1.12) contrast(1.02) saturate(1.05);
}

.faq-content {
  position: relative;
  z-index: 1;
}

html[data-theme="light"] .faq-illustration {
  background:
    radial-gradient(circle at 28% 22%, rgba(201, 162, 39, 0.12), transparent 30%),
    linear-gradient(180deg, #f0e8d8, #e4d8c4);
}

.faq-person {
  bottom: 0;
  width: 210px; height: 260px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fdfdfd 0%, #f2f2f2 60%, #d7d7d7 100%);
  border: 2px solid rgba(15,15,15,0.9);
  box-shadow: 0 16px 36px var(--shadow);
}

.faq-person::before {
  content: "";
  position: absolute;
  top: -110px; left: 50%;
  width: 140px; height: 140px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fefefe;
  border: 3px solid rgba(15,15,15,0.9);
  box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

.faq-person-a { left: 58px; height: 260px; }
.faq-person-a::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -180px;
  width: 26px; height: 220px;
  background: var(--gold);
  border-radius: 12px;
  box-shadow: 0 10px 20px var(--shadow);
}

.faq-person-b { display: none; }

.faq-bubble-main {
  left: 164px; top: 52px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: #050505;
  border: 2px solid var(--line-strong);
  box-shadow: 0 14px 26px var(--shadow);
}

html[data-theme="light"] .faq-bubble-main { background: #18140c; }

.faq-bubble-main::before {
  content: "";
  position: absolute;
  left: 28px; bottom: -30px;
  width: 42px; height: 42px;
  background: #050505;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

html[data-theme="light"] .faq-bubble-main::before { background: #18140c; }

.faq-bubble-main::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 3.4rem;
  font-weight: 800;
}

.faq-bubble-secondary {
  left: 240px; top: 24px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 2px solid var(--line-soft);
  background: radial-gradient(circle, var(--panel), transparent);
}

.faq-briefcase { display: none; }

.faq-list  { border-top: 1px solid var(--line-soft); }
.faq-item  { border-bottom: 1px solid var(--line-soft); }

html[data-theme="light"] .faq-list  { border-top-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .faq-item  { border-bottom-color: rgba(0,0,0,0.08); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.faq-icon {
  min-width: 24px;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--gold-bright);
}

html[data-theme="light"] .faq-icon { color: var(--gold-deep); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease, padding-bottom 0.28s ease;
  padding-bottom: 0;
}

.faq-answer p { overflow: hidden; margin: 0; }

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 26px;
}

/* ═══════════════════════════════════════════
   SERVICE PAGES
═══════════════════════════════════════════ */

.service-page {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.14), transparent 24%),
    radial-gradient(circle at 15% 80%,   rgba(255,255,255,0.05), transparent 22%),
    linear-gradient(180deg, #030303 0%, #0b0b0b 45%, #070707 100%);
}

.blogs-page-dark { color: var(--text); }

.blogs-page-dark::before,
.blogs-page-dark .page-shell::before,
.blogs-page-dark .page-shell::after { display: none; }

.service-page .navbar,
.blogs-page-dark .navbar {
  background: rgba(6, 6, 6, 0.82);
  border-color: var(--line);
}

.service-page .nav-link,
.service-page .nav-dropdown-link,
.blogs-page-dark .nav-link,
.blogs-page-dark .nav-dropdown-link { color: var(--text); }

.service-page .nav-link:hover,
.service-page .nav-link.active,
.service-page .nav-dropdown-link:hover,
.blogs-page-dark .nav-link:hover,
.blogs-page-dark .nav-link.active,
.blogs-page-dark .nav-dropdown-link:hover {
  background: var(--gold-pale);
  color: var(--gold-bright);
}

.service-page .nav-dropdown-menu,
.blogs-page-dark .nav-dropdown-menu {
  background: rgba(8,8,8,0.97);
  border-color: var(--line);
}

.light-section { padding: 38px 0 0; }

.service-hero-wrap h1,
.service-hero-wrap h2,
.blogs-hero-wrap h2 {
  margin: 0;
  color: var(--text);
  line-height: 1.15;
  font-weight: 900;
}

.business-solutions-page-title,
.media-platform-page-title,
.public-relations-page-title,
.technology-services-page-title,
.legal-consulting-page-title {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

.construction-investment-page-title {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.media-platform-intro-title,
.service-intro-wrap h2,
.service-intro-wrap h3 {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 800;
}

.service-title-mark {
  width: 64px; height: 150px;
  margin: 26px auto 0;
  border-top: 2px solid var(--line-soft);
  border-right: 2px solid var(--line-soft);
  position: relative;
}

.service-title-mark::after {
  content: "";
  position: absolute;
  width: 52px; height: 2px;
  right: -2px; bottom: 27px;
  background: var(--line-soft);
  transform: rotate(-46deg);
  transform-origin: right center;
}

.service-intro { padding-top: 86px; }

.service-intro-wrap p {
  max-width: 1240px;
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.service-showcase { padding-top: 50px; }

.service-showcase-grid {
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 1.02fr);
  align-items: stretch;
}

.service-showcase-media {
  min-height: 760px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  box-shadow: 0 24px 50px var(--shadow);
}

.service-showcase-copy { display: grid; gap: 18px; }

.service-showcase-copy article {
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  border-color: var(--line);
  box-shadow: 0 16px 32px var(--shadow);
}

.service-showcase-copy h3,
.service-step-card h3,
.service-package-card h3 { color: var(--text); }

.service-showcase-copy p,
.service-step-card p,
.service-package-card li,
.blog-feature-copy span,
.blog-feature-copy h3 { color: var(--muted); }

.service-showcase-copy p,
.service-step-card p { margin: 0; line-height: 1.85; }

.service-steps { padding-top: 42px; }

.service-steps-grid,
.service-packages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-steps-grid .service-step-card { min-height: 250px; }

.service-step-card,
.service-package-card {
  border-color: var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  box-shadow: 0 16px 32px var(--shadow);
}

.service-package-card ul {
  margin: 16px 0 20px;
  padding-inline-start: 20px;
  display: grid;
  gap: 10px;
}

.service-package-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.8rem;
}

.service-package-card.featured {
  background: linear-gradient(180deg, #111111, #050505);
  border-color: var(--line-strong);
}

html[data-theme="light"] .service-package-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,240,0.94));
  border-color: rgba(201, 162, 39, 0.20);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.service-package-card.featured h3,
.service-package-card.featured li,
.service-package-card.featured strong,
.service-package-card.featured .service-package-en { color: var(--text); }

html[data-theme="light"] .service-package-card.featured h3,
html[data-theme="light"] .service-package-card.featured li,
html[data-theme="light"] .service-package-card.featured strong,
html[data-theme="light"] .service-package-card.featured .service-package-en {
  color: #18140c;
}

.service-package-card.featured .service-package-btn {
  color: #100d06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

/* ═══════════════════════════════════════════
   CTA OVAL
═══════════════════════════════════════════ */

.business-cta-dark { padding: 60px 0 180px; }

.business-cta-dark-wrap {
  position: relative;
  overflow: visible;
  min-height: 760px;
}

.business-cta-dark-oval {
  position: absolute;
  left: 50%; bottom: -280px;
  transform: translateX(-50%);
  width: min(940px, 102%);
  min-height: 860px;
  padding: 220px 48px 130px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 32%, rgba(232, 195, 85, 0.18), transparent 36%),
    linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  text-align: center;
  box-shadow: 0 28px 70px var(--shadow);
}

.business-cta-dark-oval h3 {
  margin: 0 auto 14px;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  line-height: 1.26;
}

.business-cta-dark-oval p {
  margin: 0 auto;
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

/* Light theme variant */
html[data-theme="light"] .business-cta-dark { background: transparent; }

html[data-theme="light"] .business-cta-dark-oval {
  border-color: rgba(48, 36, 18, 0.16);
  background:
    radial-gradient(circle at 50% 32%, rgba(228, 199, 136, 0.16), transparent 38%),
    linear-gradient(180deg, #f6f1e5 0%, #f2ead8 48%, #ece2d0 100%);
  box-shadow: 0 24px 52px rgba(82, 68, 38, 0.12);
}

html[data-theme="light"] .business-cta-dark-oval h3 {
  color: #353231;
}

html[data-theme="light"] .business-cta-dark-oval p {
  color: #51473c;
}

/* ═══════════════════════════════════════════
   SERVICE VISUALS
═══════════════════════════════════════════ */

.media-platform-visual,
.business-solutions-visual,
.construction-investment-visual,
.public-relations-visual,
.technology-services-visual,
.legal-consulting-visual {
  position: relative;
  min-height: 760px;
}

.media-platform-photo,
.business-solutions-photo,
.construction-investment-photo,
.public-relations-photo {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.media-platform-overlay,
.business-solutions-overlay,
.construction-investment-overlay,
.public-relations-overlay { position: absolute; inset: 0; }

.media-platform-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.34)),
    radial-gradient(circle at 78% 14%, rgba(232, 185, 75, 0.28), transparent 26%),
    radial-gradient(circle at 22% 72%, rgba(62, 141, 255, 0.16), transparent 24%);
}

.business-solutions-overlay {
  background:
    linear-gradient(180deg, rgba(8,17,28,0.10), rgba(8,17,28,0.44)),
    radial-gradient(circle at 18% 20%, rgba(232, 195, 85, 0.22), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.10), transparent 24%);
}

.construction-investment-overlay {
  background:
    linear-gradient(180deg, rgba(10,24,37,0.12), rgba(10,24,37,0.40)),
    radial-gradient(circle at 18% 22%, rgba(201, 162, 39, 0.22), transparent 26%),
    radial-gradient(circle at 76% 24%, rgba(255,255,255,0.14), transparent 24%);
}

.public-relations-overlay {
  background:
    linear-gradient(180deg, rgba(14,44,74,0.12), rgba(14,44,74,0.36)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(109, 181, 255, 0.16), transparent 24%);
}

.business-solutions-caption,
.construction-investment-caption,
.public-relations-caption {
  position: absolute;
  right: 28px; left: 28px; bottom: 28px;
  display: grid; gap: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,17,28,0.72), rgba(8,17,28,0.52));
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.construction-investment-caption {
  background: linear-gradient(180deg, rgba(10,24,37,0.74), rgba(10,24,37,0.54));
}

.public-relations-caption {
  background: linear-gradient(180deg, rgba(14,44,74,0.72), rgba(14,44,74,0.50));
}

.business-solutions-caption strong,
.construction-investment-caption strong,
.public-relations-caption strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.business-solutions-caption span,
.construction-investment-caption span,
.public-relations-caption span {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
}

.media-platform-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.80;
  pointer-events: none;
}

.media-platform-glow-a {
  width: 130px; height: 130px;
  right: 56px; top: 48px;
  background: rgba(232, 195, 85, 0.20);
}

.media-platform-glow-b {
  width: 170px; height: 170px;
  left: 34px; bottom: 28px;
  background: rgba(55, 120, 255, 0.14);
}

.technology-services-visual {
  background: linear-gradient(160deg, #101826 0%, #0f2237 38%, #0a1018 100%);
  box-shadow: 0 24px 50px var(--shadow);
}

.technology-services-photo {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.technology-services-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,14,26,0.16), rgba(6,14,26,0.48)),
    radial-gradient(circle at 76% 14%, rgba(232, 185, 75, 0.32), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(67, 152, 255, 0.16), transparent 24%);
}

.technology-services-caption {
  position: absolute;
  right: 28px; left: 28px; bottom: 28px;
  display: grid; gap: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(9,19,34,0.78), rgba(9,19,34,0.56));
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.technology-services-caption strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.technology-services-caption span {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
}

.tech-screen {
  border-radius: 18px;
  background: rgba(16,28,36,0.94);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.tech-screen::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(117,232,255,0.16), rgba(255,255,255,0.02));
}

.tech-screen-a { left: 40px; top: 120px; width: 280px; height: 350px; }
.tech-screen-b { right: 64px; top: 88px; width: 330px; height: 300px; }
.tech-screen-c { left: 152px; bottom: 84px; width: 310px; height: 180px; }

.tech-data-lines {
  inset: 74px 54px 64px;
  border-radius: 24px;
  background:
    linear-gradient(0deg, transparent 95%, rgba(0,214,255,0.26) 96%, transparent 97%),
    linear-gradient(90deg, transparent 95%, rgba(0,214,255,0.16) 96%, transparent 97%),
    radial-gradient(circle at 30% 40%, rgba(0,214,255,0.20), transparent 22%);
}

.legal-consulting-visual {
  background: linear-gradient(160deg, #d8c0a0 0%, #b98c5f 38%, #2a1c16 100%);
  box-shadow: 0 24px 50px rgba(61,36,18,0.18);
}

.legal-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 18% 14%, rgba(255,231,180,0.50), transparent 28%);
  pointer-events: none;
}

.legal-consulting-photo {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.legal-consulting-caption {
  position: absolute;
  right: 28px; left: 28px; bottom: 28px;
  display: grid; gap: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(38,26,19,0.82), rgba(38,26,19,0.64));
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.legal-consulting-caption strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.legal-consulting-caption span {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.86);
}

.legal-laptop {
  left: 70px; bottom: 120px;
  width: 360px; height: 220px;
  border-radius: 20px;
  background: rgba(28,24,22,0.94);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.legal-laptop::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,214,148,0.13), rgba(255,255,255,0.03));
}

.legal-scale {
  right: 96px; bottom: 160px;
  width: 130px; height: 200px;
}

.legal-scale::before,
.legal-scale::after { content: ""; position: absolute; }

.legal-scale::before {
  left: 50%; top: 0;
  width: 6px; height: 140px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.legal-scale::after {
  left: 18px; right: 18px; bottom: 0;
  height: 56px;
  border-radius: 999px 999px 18px 18px;
  border: 2px solid rgba(232, 195, 85, 0.80);
  box-shadow: 0 -22px 0 -18px rgba(232, 195, 85, 0.80),
              inset 0 0 0 2px rgba(134, 100, 13, 0.40);
}

/* ═══════════════════════════════════════════
   BLOGS
═══════════════════════════════════════════ */

.blogs-hero-wrap h2 { font-size: clamp(4rem, 7vw, 7rem); }

.blogs-hero-copy {
  max-width: 760px;
  margin: 130px 0 0 auto;
  text-align: right;
}

.blog-hero-visual {
  margin: 38px auto 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 40px var(--shadow);
}

.blog-hero-visual img {
  display: block;
  width: 100%; height: auto;
  object-fit: cover;
}

.blogs-hero-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.blogs-hero-copy h2,
.blog-feature-copy h3 { color: var(--text); }

.blogs-list {
  padding-top: 52px;
  padding-bottom: 80px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  justify-content: start;
}

.blog-feature-card { display: grid; gap: 24px; }

.blog-feature-media {
  min-height: 560px;
  background: linear-gradient(160deg, #1a2027 0%, #253140 38%, #0e1117 100%);
  box-shadow: 0 24px 50px var(--shadow);
}

.blog-feature-media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 24% 12%, rgba(255,255,255,0.06), transparent 24%);
}

.blog-table {
  left: -20px; right: -20px; bottom: -30px;
  height: 210px;
  background: linear-gradient(180deg, #3a2c24, #1e1714);
  transform: perspective(900px) rotateX(72deg);
  transform-origin: center top;
}

.blog-people {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.64));
  box-shadow: 0 18px 28px rgba(0,0,0,0.18);
}

.blog-people::before {
  content: "";
  position: absolute;
  top: -36px; left: 50%;
  width: 54px; height: 54px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f0cfb8 0%, #b67f57 70%, #764a2d 100%);
}

.blog-people-a { left: 34px; bottom: 122px; width: 96px; height: 180px; }
.blog-people-b { left: 160px; bottom: 164px; width: 110px; height: 200px; }
.blog-people-c { left: 304px; bottom: 136px; width: 104px; height: 188px; }
.blog-people-d { right: 46px; bottom: 82px; width: 118px; height: 236px; }

.site-footer {
  margin-top: 32px;
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 14% 10%, rgba(201, 162, 39, 0.12), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #040404 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 70%, rgba(255, 215, 130, 0.05), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr 0.9fr;
  gap: 20px 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.footer-brand-mark {
  width: 60px;
  height: 60px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.footer-brand-name {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.25px;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 260px;
  font-size: 0.96rem;
}

.footer-heading {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.25px;
  font-size: 1rem;
}

.footer-links a,
.footer-link {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-link:hover {
  color: var(--gold-bright);
  border-color: rgba(255, 215, 130, 0.6);
  transform: translateY(-3px);
}

.footer-location {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.footer-location-city {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-top: 14px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: var(--text);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero-grid,
  .service-showcase-grid,
  .contact-page-grid,
  .faq-layout,
  .about-hero,
  .about-cards-grid,
  .about-list-section {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .blog-grid,
  .service-packages-grid,
  .service-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slider-frame { min-height: 560px; }
  .about-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container,
  .section,
  .wrapper,
  .hero,
  .cards,
  .stats {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header { padding-top: 8px; }

  .navbar {
    padding: 8px 12px;
    border-radius: 22px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle { display: inline-block; }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav-menu.is-open { display: flex; }
  .nav-dropdown { display: block; }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
  }

  .nav-link,
  .nav-dropdown-link { text-align: center; font-size: 0.92rem; }

  .hero-grid { min-height: auto; }

  .hero {
    min-height: auto;
    padding: clamp(24px, 6vw, 60px) 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(26px, 6.5vw, 48px);
    line-height: 1.2;
  }

  .hero p { font-size: clamp(14px, 3.8vw, 18px); }

  .hero-stats,
  .about-stats-grid,
  .services-grid,
  .blog-grid,
  .service-packages-grid,
  .service-steps-grid { grid-template-columns: 1fr; }

  .slider-frame,
  .service-showcase-media,
  .technology-services-visual,
  .legal-consulting-visual { min-height: 500px; }

  .service-showcase-grid { grid-template-columns: 1fr; }
  .service-showcase-media { min-height: 460px; }

  .business-solutions-caption,
  .construction-investment-caption,
  .public-relations-caption {
    right: 18px; left: 18px; bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .tech-screen-a { left: 18px; top: 90px; width: 160px; height: 200px; }
  .tech-screen-b { right: 22px; top: 64px; width: 180px; height: 170px; }
  .tech-screen-c { left: 70px; bottom: 48px; width: 180px; height: 100px; }
  .tech-data-lines { inset: 34px 22px 30px; }

  .legal-laptop { left: 26px; bottom: 72px; width: 220px; height: 140px; }
  .legal-scale { right: 34px; bottom: 104px; width: 86px; height: 132px; }
  .legal-scale::before { height: 92px; }
  .legal-scale::after { height: 38px; }

  .contact-page-grid { padding: 30px; }
  .contact-form-layout { grid-template-columns: 1fr; }

  .blogs-grid { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 420px; }

  .blog-people-a { left: 18px; bottom: 98px; width: 72px; height: 124px; }
  .blog-people-b { left: 108px; bottom: 126px; width: 84px; height: 138px; }
  .blog-people-c { left: 210px; bottom: 108px; width: 76px; height: 126px; }
  .blog-people-d { right: 18px; bottom: 72px; width: 86px; height: 164px; }

  .about-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-list-item { grid-template-columns: 80px 1fr; }
  .about-list-number { width: 64px; height: 64px; }
  .about-list-media {
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 3;
    justify-self: center;
  }

  .faq-illustration { min-height: 360px; }
  .faq-person { width: 140px; height: 200px; border-radius: 20px; }
  .faq-person::before { width: 90px; height: 90px; top: -68px; }
  .faq-person-a { left: 22px; height: 200px; }
  .faq-person-a::after { bottom: -150px; width: 20px; height: 170px; }
  .faq-person-b { display: none; }
  .faq-bubble-main { left: 90px; top: 26px; width: 120px; height: 120px; }
  .faq-bubble-main::after { font-size: 2.4rem; }
  .faq-bubble-secondary { left: 130px; top: 16px; width: 110px; height: 110px; }
  .faq-briefcase { display: none; }
  .faq-question { font-size: 1.1rem; gap: 14px; padding: 22px 0; }
  .faq-icon { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .footer-brand { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-tagline { max-width: none; }
  .footer-social-links { justify-content: center; }
}

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

  button,
  .btn,
  .cta {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 14px 18px;
    font-size: clamp(14px, 4vw, 16px);
  }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .brand-text { font-size: 1.18rem; }

  .slide,
  .service-card,
  .blog-card,
  .service-step-card,
  .service-package-card,
  .service-showcase-copy article,
  .contact-page-grid { padding: 20px; }

  .btn,
  .service-package-btn { width: 100%; }

  .hero-copy h2,
  .service-intro-wrap h2,
  .service-intro-wrap h3,
  .contact-form-intro h2,
  .faq-content h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  .contact-info-highlight { font-size: 1.5rem; }
  .contact-mail-link { font-size: 1.55rem; }
  .contact-map-section iframe { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px 16px; }
  .footer-brand-name { font-size: 1.25rem; }
  .footer-tagline,
  .footer-links a,
  .footer-link,
  .footer-location p,
  .footer-bottom { font-size: 0.95rem; }
  .footer-heading { font-size: 1rem; }
  .footer-links,
  .footer-location { text-align: center; }
  .footer-social-links { justify-content: center; }
  .footer-social-link { width: 40px; height: 40px; }
  .footer-bottom { line-height: 1.6; }

  .blogs-hero-copy { margin-top: 90px; }
  .about-metrics { grid-template-columns: 1fr; }

  .about-badge {
    width: 180px;
    height: 180px;
    margin-inline: auto;
  }

  .about-list-section { gap: 14px; }
  .about-list-media {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .faq-illustration {
    max-width: 100%;
  }
}
