/* Hunters Business Digital Solutions — Brand Theme */
:root {
  --teal-950: #061a20;
  --teal-900: #0a2e38;
  --teal-800: #0d3d4a;
  --teal-700: #125566;
  --teal-600: #1a7085;
  --teal-500: #22a3b8;
  --teal-400: #4ec4d4;
  --teal-300: #7dd8e3;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.12);
  --white-10: rgba(255, 255, 255, 0.06);
  --glass: rgba(10, 46, 56, 0.65);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-en: "Inter", system-ui, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

*,
*::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-en);
  background: var(--teal-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
  font-family: var(--font-ar);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Background pattern */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(34, 163, 184, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(26, 112, 133, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, var(--teal-950) 0%, var(--teal-900) 40%, var(--teal-800) 100%);
}

.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 L50 10 M45 5 L55 15' stroke='rgba(255,255,255,0.03)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.8;
}

/* Typography */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34, 163, 184, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 163, 184, 0.45);
}

.btn--ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white-20);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: var(--white-10);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  background: var(--white-10);
  border-radius: 100px;
  padding: 3px;
  border: 1px solid var(--glass-border);
}

.lang-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--white-50);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.lang-btn.active {
  background: var(--teal-600);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white-10);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--white-70);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--white-70);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  background: rgba(34, 163, 184, 0.25);
  top: 10%;
  right: 10%;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(26, 112, 133, 0.3);
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

.hero__logo-wrap {
  position: relative;
  z-index: 2;
}

.hero__logo {
  width: min(320px, 70vw);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4)); }
  50% { filter: drop-shadow(0 20px 80px rgba(34, 163, 184, 0.3)); }
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 3;
}

.hero__stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.hero__stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-300);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--white-50);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-50);
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.about__card {
  padding: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.about__card:hover {
  border-color: rgba(34, 163, 184, 0.3);
  transform: translateY(-4px);
}

.about__card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.75rem;
}

.about__card p {
  color: var(--white-70);
  font-size: 1rem;
}

.about__metric {
  grid-row: span 1;
}

.about__metric-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(34, 163, 184, 0.15), rgba(26, 112, 133, 0.1));
  border: 1px solid rgba(34, 163, 184, 0.25);
  border-radius: var(--radius-lg);
}

.about__metric-num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__metric-label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.about__metric-desc {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-top: 0.25rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(34, 163, 184, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--teal-300);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(34, 163, 184, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 163, 184, 0.15);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: var(--teal-400);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--white-70);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

html[dir="rtl"] .service-card::before {
  transform-origin: right;
}

.service-card:hover {
  border-color: rgba(34, 163, 184, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white-20);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-70);
}

.service-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--teal-400);
  transition: var(--transition);
}

html[dir="rtl"] .service-card__arrow {
  right: auto;
  left: 1.5rem;
  transform: scaleX(-1);
}

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
}

html[dir="rtl"] .service-card:hover .service-card__arrow {
  transform: scaleX(-1) translateX(4px);
}

/* Service Details */
.service-details-section {
  padding-top: 2rem;
}

.service-details-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.service-detail--reverse {
  direction: ltr;
}

html[dir="rtl"] .service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse .service-detail__content {
  order: 2;
}

.service-detail--reverse .service-detail__visual {
  order: 1;
}

.service-detail h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail__desc {
  color: var(--white-70);
  margin-bottom: 1.5rem;
}

.service-detail__block h4,
.service-detail__outcomes h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.75rem;
}

.service-detail__block ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-detail__block li {
  position: relative;
  padding-inline-start: 1.5rem;
  color: var(--white-70);
  font-size: 0.95rem;
}

.service-detail__block li::before {
  content: "→";
  position: absolute;
  inset-inline-start: 0;
  color: var(--teal-400);
}

html[dir="rtl"] .service-detail__block li::before {
  content: "←";
}

.outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.outcome-tag {
  padding: 0.4rem 1rem;
  background: rgba(34, 163, 184, 0.15);
  border: 1px solid rgba(34, 163, 184, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-300);
}

.service-detail__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.service-detail__num {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--white-10);
  line-height: 1;
  user-select: none;
}

.service-detail__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail:hover .service-detail__img {
  transform: translateY(-6px) scale(1.015);
}

.service-detail__num--badge {
  position: absolute;
  top: -1.2rem;
  inset-inline-end: -0.4rem;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(255, 255, 255, 0.22);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.arrow-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 35 L35 5' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  border-radius: var(--radius-lg);
}

/* Vision */
.vision__inner {
  padding: 4rem;
  background: linear-gradient(135deg, rgba(34, 163, 184, 0.1), rgba(10, 46, 56, 0.5));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.vision__content {
  text-align: center;
  margin-bottom: 3rem;
}

.vision__content .section-desc {
  margin-inline: auto;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.vision-pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.vision-pillar:hover {
  border-color: rgba(34, 163, 184, 0.35);
  background: rgba(34, 163, 184, 0.08);
}

.vision-pillar__dot {
  width: 10px;
  height: 10px;
  background: var(--teal-400);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--teal-400);
}

/* Advantage Table */
.advantage-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.advantage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.advantage-table th,
.advantage-table td {
  padding: 1.25rem 1.5rem;
  text-align: start;
  border-bottom: 1px solid var(--glass-border);
}

.advantage-table th {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-70);
}

.advantage-table th.highlight-col {
  color: var(--teal-300);
}

.advantage-table tr:last-child td {
  border-bottom: none;
}

.advantage-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.advantage-table td.highlight {
  color: var(--teal-300);
  font-weight: 600;
  background: rgba(34, 163, 184, 0.06);
}

.advantage-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--white-70);
  font-weight: 500;
}

/* Contact */
.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(34, 163, 184, 0.12), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.contact__card {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

a.contact__card:hover {
  border-color: rgba(34, 163, 184, 0.4);
  transform: translateY(-4px);
}

.contact__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 163, 184, 0.15);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  color: var(--teal-400);
}

.contact__card-icon svg {
  width: 20px;
  height: 20px;
}

.contact__card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 0.25rem;
}

.contact__card-value {
  font-size: 0.9rem;
  font-weight: 500;
  word-break: break-word;
}

.contact__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__logo {
  width: min(280px, 100%);
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--white-50);
}

.footer__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--white-50);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RTL adjustments */
html[dir="rtl"] .hero__subtitle,
html[dir="rtl"] .section-desc {
  text-align: start;
}

html[dir="rtl"] .section-header {
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    min-height: 320px;
  }

  .about__grid,
  .why-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__metric {
    grid-column: span 2;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .service-detail--reverse .service-detail__content,
  .service-detail--reverse .service-detail__visual {
    order: unset;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .contact__visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 0.5rem;
    background: var(--teal-950);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-top: 1px solid var(--glass-border);
  }

  html[dir="rtl"] .nav {
    transform: translateX(-100%);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .header__actions .btn--primary {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .about__grid,
  .why-grid,
  .services-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .about__metric {
    grid-column: span 1;
  }

  .hero__stats {
    position: relative;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .contact__cards {
    grid-template-columns: 1fr;
  }

  .advantage-table thead {
    display: none;
  }

  .advantage-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .advantage-table td {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .advantage-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white-50);
    margin-bottom: 0.25rem;
  }

  .advantage-table td:last-child {
    border-bottom: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .lang-switch {
    order: -1;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
