:root {
  --purple-deep:    #0D0B1A;
  --purple-dark:    #120F24;
  --purple-mid:     #1E1640;
  --purple-glow:    #6B3FA0;
  --purple-bright:  #9B59D4;
  --purple-light:   #C89EF5;
  --nebula-pink:    #E040C8;
  --nebula-blue:    #4B8EF5;
  --star-white:     #F4F0FF;
  --text-dim:       rgba(210,195,255,0.78);
  --gold:           #C8A96E;
  --gold-light:     #E2C98A;
}

/* ===================== LIGHT THEME ===================== */
[data-theme="light"] {
  --purple-deep:    #F5F3FA;
  --purple-dark:    #EDE9F5;
  --purple-mid:     #E0D9EE;
  --purple-glow:    #7B4DB5;
  --purple-bright:  #9B59D4;
  --purple-light:   #6B3FA0;
  --nebula-pink:    #C030A8;
  --nebula-blue:    #3A7DE0;
  --star-white:     #1A1528;
  --text-dim:       rgba(30,22,64,0.78);
  --gold:           #A08040;
  --gold-light:     #C09850;
}

[data-theme="light"] #starfield { opacity: 0.08; }
[data-theme="light"] .nebula-hero { opacity: 0.3; }
[data-theme="light"] nav#nav.scrolled {
  background: rgba(245,243,250,0.92);
  border-bottom-color: rgba(155,89,212,0.15);
}
[data-theme="light"] .service-card { background: var(--purple-dark); }
[data-theme="light"] .service-card:hover { background: var(--purple-mid); }
[data-theme="light"] .team-card { background: var(--purple-dark); }
[data-theme="light"] .team-card:hover { background: var(--purple-mid); }
[data-theme="light"] .team-img { filter: none; }
[data-theme="light"] .client-name { color: rgba(30,22,64,0.3); }
[data-theme="light"] .faq-icon { border-color: rgba(107,63,160,0.3); }
[data-theme="light"] .btn-primary { color: #fff; }
[data-theme="light"] .hero-scroll { color: rgba(30,22,64,0.3); }

/* ===================== NAV CONTROLS ===================== */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.theme-toggle, .lang-toggle {
  background: none;
  border: 1px solid rgba(155,89,212,0.3);
  color: var(--purple-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 16px;
  padding: 0;
}

.theme-toggle:hover, .lang-toggle:hover {
  background: rgba(155,89,212,0.15);
  border-color: var(--purple-bright);
}

.lang-toggle {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  width: auto;
  padding: 0 12px;
  border-radius: 18px;
  text-decoration: none;
}

.lang-group {
  display: flex;
  gap: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--purple-deep);
  color: var(--star-white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ===================== STARFIELD CANVAS ===================== */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===================== NEBULA BACKGROUNDS ===================== */
.nebula-hero {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 40%, rgba(107,63,160,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(75,142,245,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(224,64,200,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 30% 10%, rgba(155,89,212,0.1) 0%, transparent 50%);
  animation: nebulaPulse 12s ease-in-out infinite alternate;
}

@keyframes nebulaPulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.04); }
}

/* ===================== NAV ===================== */
nav#nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

nav#nav.scrolled {
  background: rgba(13,11,26,0.88);
  backdrop-filter: blur(24px);
  padding: 16px 64px;
  border-bottom: 1px solid rgba(155,89,212,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--purple-light);
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(155,89,212,0.6);
}

.nav-links { display: flex; gap: 40px; list-style: none; }

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--purple-light); }

.nav-cta {
  border: 1px solid rgba(155,89,212,0.6) !important;
  color: var(--purple-light) !important;
  padding: 10px 26px !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: rgba(155,89,212,0.2) !important;
  border-color: var(--purple-light) !important;
  box-shadow: 0 0 20px rgba(155,89,212,0.3) !important;
  color: var(--star-white) !important;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 64px;
  z-index: 1;
}

/* Orbiting ring */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155,89,212,0.15);
  animation: orbit 40s linear infinite;
  pointer-events: none;
}

.orbit-ring::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--purple-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(155,89,212,0.8);
}

.ring-1 {
  width: 600px; height: 600px;
  top: calc(50% - 300px);
  right: -100px;
}

.ring-1::after { top: -3px; left: calc(50% - 3px); }

.ring-2 {
  width: 900px; height: 900px;
  top: calc(50% - 450px);
  right: -250px;
  animation-duration: 65s;
  animation-direction: reverse;
  border-color: rgba(75,142,245,0.08);
}

.ring-2::after {
  background: var(--nebula-blue);
  box-shadow: 0 0 10px 3px rgba(75,142,245,0.8);
  top: calc(50% - 3px);
  right: -3px;
  left: auto;
}

.ring-3 {
  width: 400px; height: 400px;
  top: calc(50% - 200px);
  right: 50px;
  animation-duration: 25s;
  border-color: rgba(224,64,200,0.1);
}

.ring-3::after {
  background: var(--nebula-pink);
  box-shadow: 0 0 8px 2px rgba(224,64,200,0.8);
  bottom: -3px;
  left: calc(50% - 3px);
  top: auto;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 1s ease 0.3s both;
}

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

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(54px, 7.5vw, 100px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--star-white);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light), var(--nebula-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 52px;
}

.hero-actions { display: flex; gap: 24px; align-items: center; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-glow), var(--nebula-pink) 150%);
  color: var(--star-white);
  padding: 16px 44px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(107,63,160,0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(107,63,160,0.7);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.btn-secondary::after {
  content: '\2192';
  font-size: 16px;
  transition: transform 0.3s;
}

.btn-secondary:hover { color: var(--purple-light); }
.btn-secondary:hover::after { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,180,255,0.3);
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 48px; height: 1px;
  background: rgba(155,89,212,0.3);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--purple-bright);
  animation: scrollLine 2.5s ease 2s infinite;
}

@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ===================== INTRO ===================== */
.intro {
  padding: 100px 64px;
  background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  border-top: 1px solid rgba(155,89,212,0.15);
  border-bottom: 1px solid rgba(155,89,212,0.1);
  position: relative;
  z-index: 1;
}

.intro::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,89,212,0.6), transparent);
}

.intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--purple-light), var(--star-white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ===================== SECTION LABELS ===================== */
.section-label {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.85;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright));
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--star-white);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light), var(--nebula-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== SERVICES ===================== */
.services-wrap {
  padding: 120px 64px;
  background: var(--purple-deep);
  position: relative;
  z-index: 1;
}

.services-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107,63,160,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.services-header { max-width: 1180px; margin: 0 auto 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(155,89,212,0.12);
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  background: var(--purple-dark);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-glow), var(--nebula-pink));
  transition: width 0.5s ease;
}

.service-card:hover { background: var(--purple-mid); }
.service-card:hover::after { width: 100%; }

.service-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.12) 0%, transparent 70%);
  top: -60px; right: -60px;
  transition: opacity 0.4s;
  opacity: 0;
}

.service-card:hover .service-glow { opacity: 1; }

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  font-weight: 400;
  color: rgba(155,89,212,0.06);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(155,89,212,0.13); }

.service-icon-wrap {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  position: relative;
}

.service-icon-wrap svg { opacity: 0.7; }

.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--star-white);
  margin-bottom: 14px;
}

.service-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dim);
}

/* ===================== CLIENTS ===================== */
.clients-section {
  padding: 72px 0;
  background: var(--purple-dark);
  border-top: 1px solid rgba(155,89,212,0.1);
  border-bottom: 1px solid rgba(155,89,212,0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.clients-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(196,180,255,0.55);
  margin-bottom: 44px;
}

.clients-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.clients-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(196,180,255,0.4);
  white-space: nowrap;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.client-dot {
  width: 4px; height: 4px;
  background: rgba(155,89,212,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== TEAM ===================== */
.team-section {
  padding: 120px 64px;
  background: var(--purple-deep);
  position: relative;
  z-index: 1;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,89,212,0.4), transparent);
}

.team-inner { max-width: 1180px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(155,89,212,0.1);
  margin-top: 56px;
}

.team-card {
  background: var(--purple-dark);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.team-card:hover { background: var(--purple-mid); }

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover::before { opacity: 1; }

.team-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  margin-bottom: 20px;
  border: 1px solid rgba(155,89,212,0.4);
  filter: grayscale(20%);
}

.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--star-white);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ===================== BLOG PREVIEW ===================== */
.blog-section {
  padding: 120px 64px;
  background: var(--purple-dark);
  border-top: 1px solid rgba(155,89,212,0.1);
  position: relative;
  z-index: 1;
}

.blog-inner { max-width: 1180px; margin: 0 auto; }

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.blog-preview-card {
  background: var(--purple-deep);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(155,89,212,0.08);
}

.blog-preview-card:hover {
  background: var(--purple-mid);
  transform: translateY(-3px);
}

.blog-preview-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 16px;
}

.blog-preview-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--star-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-preview-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
  flex: 1;
}

.blog-preview-meta {
  font-size: 11px;
  color: rgba(155,89,212,0.5);
  margin-top: 20px;
}

.blog-all-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--purple-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-all-link:hover { color: var(--purple-bright); }

.blog-all-link::after {
  content: ' \2192';
  font-size: 14px;
  transition: transform 0.3s;
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 120px 64px;
  background: var(--purple-dark);
  border-top: 1px solid rgba(155,89,212,0.1);
  position: relative;
  z-index: 1;
}

.faq-inner { max-width: 900px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(155,89,212,0.15);
  padding: 32px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--star-white);
  transition: color 0.3s;
}

.faq-item:hover .faq-q { color: var(--purple-light); }

.faq-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(155,89,212,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: all 0.35s;
}

.faq-item.open .faq-icon {
  background: var(--purple-glow);
  border-color: var(--purple-glow);
  color: var(--star-white);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(107,63,160,0.6);
}

.faq-a {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dim);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 20px;
}

/* ===================== CONTACT ===================== */
.contact-section {
  padding: 130px 64px;
  background: var(--purple-deep);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(107,63,160,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 30%, rgba(75,142,245,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(224,64,200,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-big {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 32px;
  color: var(--star-white);
}

.contact-big em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, var(--purple-light), var(--nebula-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.contact-item a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--purple-light); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--purple-dark);
  border-top: 1px solid rgba(155,89,212,0.12);
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--purple-light);
  text-shadow: 0 0 20px rgba(155,89,212,0.5);
}

.footer-copy {
  font-size: 11px;
  color: rgba(196,180,255,0.4);
  letter-spacing: 0.1em;
}

.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,180,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--purple-light); }

/* ===================== REVEALS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  nav#nav, .hero, .intro, .services-wrap, .team-section, .blog-section, .faq-section, .contact-section, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  nav#nav { padding: 20px 24px; }
  nav#nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hero-title { font-size: 52px; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-scroll { left: 24px; }
  .ring-1, .ring-2, .ring-3 { opacity: 0.5; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .nav-controls { margin-left: 12px; gap: 8px; }
}
