:root {
  --royal-blue: #1a3a8f;
  --royal-blue-dark: #0e2460;
  --royal-blue-light: #2a56d4;
  --crimson: #e85d75;
  --crimson-dark: #d44a62;
  --crimson-light: #f07a90;
  --ivory: #faf8f5;
  --charcoal: #1a1a2e;
  --slate: #4a4a6a;
  --silver: #b0b0c8;
  --gold-accent: #c9a84c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 4%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,58,143,0.08);
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 0.8rem 4%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

/* ═══════ ANIMATED LOGO CONTAINER ═══════ */
.nav-logo-wrap {
  position: relative;
  display: flex; align-items: center;
  height: 56px; padding: 6px 18px 6px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0a1a4a 0%, #1a3a8f 40%, #0e2460 70%, #162f7a 100%);
  background-size: 300% 300%;
  animation: logoGradientShift 6s ease-in-out infinite;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(26,58,143,0.35);
  transition: all 0.4s ease;
}
.nav-logo-wrap:hover {
  box-shadow: 0 4px 25px rgba(26,58,143,0.55);
  transform: translateY(-1px);
}
@keyframes logoGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.nav-logo-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 15% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,0.25), transparent);
  animation: particleDrift 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes particleDrift {
  0%, 100% { transform: translateX(0) translateY(0); opacity: 0.6; }
  25% { transform: translateX(3px) translateY(-2px); opacity: 1; }
  50% { transform: translateX(-2px) translateY(3px); opacity: 0.5; }
  75% { transform: translateX(4px) translateY(1px); opacity: 0.9; }
}
.nav-logo-wrap::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0% { left: -50%; }
  100% { left: 150%; }
}
.logo-glow-ring {
  position: absolute; inset: -1px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(42,86,212,0.6), rgba(232,93,117,0.3), rgba(42,86,212,0.6));
  background-size: 200% 200%;
  animation: glowRingRotate 5s linear infinite;
  z-index: -1; filter: blur(1px);
}
@keyframes glowRingRotate {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.nav-logo {
  height: 44px; position: relative; z-index: 2;
  filter: brightness(1.1);
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  color: var(--charcoal); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--royal-blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--royal-blue) !important;
  color: white !important; padding: 0.7rem 1.8rem;
  border-radius: 4px; font-weight: 600 !important;
  transition: all 0.3s !important; letter-spacing: 0.05em;
}
.nav-cta:hover { background: var(--crimson) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(165deg, var(--charcoal) 0%, #0e1a3d 40%, var(--royal-blue-dark) 100%);
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,86,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,86,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,86,212,0.3), transparent);
  top: -10%; right: 10%;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,93,117,0.2), transparent);
  bottom: 5%; left: 5%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ═══════ HERO LOGO ═══════ */
.hero-logo-container {
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-bg {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a3a8f 0%, #0a1640 60%, #060e2a 100%);
  box-shadow:
    0 0 80px rgba(42,86,212,0.3),
    0 0 160px rgba(42,86,212,0.1),
    inset 0 0 80px rgba(42,86,212,0.15);
  animation: heroLogoPulse 6s ease-in-out infinite;
}
@keyframes heroLogoPulse {
  0%, 100% { box-shadow: 0 0 80px rgba(42,86,212,0.3), 0 0 160px rgba(42,86,212,0.1), inset 0 0 80px rgba(42,86,212,0.15); }
  50% { box-shadow: 0 0 100px rgba(42,86,212,0.45), 0 0 200px rgba(42,86,212,0.15), inset 0 0 100px rgba(42,86,212,0.2); }
}
.hero-logo-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(42,86,212,0.15);
  animation: ringOrbit 20s linear infinite;
}
.hero-logo-ring::before {
  content: '';
  position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson-light);
  box-shadow: 0 0 12px var(--crimson-light);
}
@keyframes ringOrbit { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hero-logo-ring-2 {
  position: absolute; inset: -45px;
  border-radius: 50%;
  border: 1px dashed rgba(42,86,212,0.1);
  animation: ringOrbit 30s linear infinite reverse;
}
.hero-logo-ring-2::before {
  content: '';
  position: absolute; bottom: -3px; left: 30%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 10px var(--gold-accent);
}
.hero-logo-network {
  position: absolute; inset: 30px;
  border-radius: 50%; overflow: hidden; opacity: 0.15;
}
.hero-logo-network::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(30deg, transparent 45%, rgba(255,255,255,0.4) 45.5%, rgba(255,255,255,0.4) 46%, transparent 46.5%),
    linear-gradient(150deg, transparent 45%, rgba(255,255,255,0.3) 45.5%, rgba(255,255,255,0.3) 46%, transparent 46.5%),
    linear-gradient(75deg, transparent 48%, rgba(255,255,255,0.2) 48.5%, rgba(255,255,255,0.2) 49%, transparent 49.5%),
    linear-gradient(-20deg, transparent 47%, rgba(255,255,255,0.25) 47.5%, rgba(255,255,255,0.25) 48%, transparent 48.5%);
  animation: networkShift 15s ease-in-out infinite;
}
@keyframes networkShift {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
}
.hero-logo-img {
  width: 280px; position: relative; z-index: 5;
  filter: brightness(1.15) drop-shadow(0 0 20px rgba(42,86,212,0.3));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 8rem 5% 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(232,93,117,0.15); border: 1px solid rgba(232,93,117,0.3);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  color: var(--crimson-light); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300; line-height: 1.08;
  color: white; margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}
.hero h1 strong {
  font-weight: 700;
  background: linear-gradient(135deg, #6ea8ff, #c9a84c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 1.25rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.4rem;
  background: var(--crimson);
  color: white; font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: 4px; cursor: pointer;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.35s ease; text-decoration: none;
}
.btn-primary:hover { background: var(--crimson-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,93,117,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: white; font-weight: 500; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 4px;
  cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.35s ease; text-decoration: none;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.06); }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeSlideUp 1s ease 0.5s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════ SECTIONS COMMON ═══════════════════ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--crimson);
  font-weight: 600; margin-bottom: 1rem;
  position: relative; padding-left: 2rem;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1.2rem; height: 2px; background: var(--crimson);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--charcoal);
  line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services { padding: 7rem 5%; background: var(--ivory); }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white; padding: 2.5rem; border-radius: 8px;
  border: 1px solid rgba(26,58,143,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--crimson));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: white; font-size: 1.4rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.95rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
}

/* ═══════════════════ CASE STUDIES ═══════════════════ */
.cases { padding: 7rem 5%; background: linear-gradient(180deg, white 0%, var(--ivory) 100%); }
.cases-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}
.case-card {
  background: var(--charcoal); border-radius: 10px; padding: 2.5rem;
  color: white; position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.case-card:hover { transform: translateY(-5px); }
.case-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232,93,117,0.2), transparent);
  border-radius: 50%; filter: blur(30px);
}
.case-industry {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-accent);
  font-weight: 600; margin-bottom: 1rem;
}
.case-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500;
  margin-bottom: 1rem; line-height: 1.3;
}
.case-card p {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.case-metric { display: flex; gap: 2rem; }
.case-metric div { text-align: left; }
.case-metric .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--crimson-light);
}
.case-metric .desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ═══════════════════ TEAM ═══════════════════ */
.team { padding: 7rem 5%; background: white; }
.team-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 200px; height: 200px; border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover; object-position: top;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, var(--royal-blue), var(--crimson));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}
.team-card:hover .team-photo { filter: grayscale(0%); transform: scale(1.03); }
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.team-card .role {
  font-size: 0.85rem; color: var(--crimson);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.8rem;
}
.team-card p {
  font-size: 0.9rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
  max-width: 300px; margin: 0 auto;
}

/* ═══════════════════ BLOG ═══════════════════ */
.blog { padding: 7rem 5%; background: var(--ivory); }
.blog-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: white; border-radius: 8px;
  overflow: hidden; border: 1px solid rgba(26,58,143,0.06);
  transition: all 0.4s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); font-size: 4rem;
  position: relative; overflow: hidden;
}
.blog-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(232,93,117,0.15));
}
.blog-body { padding: 2rem; }
.blog-date {
  font-size: 0.75rem; color: var(--silver);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.9rem; color: var(--slate);
  line-height: 1.7; font-weight: 300;
}
.blog-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.85rem;
  color: var(--royal-blue); font-weight: 600;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.06em; transition: gap 0.3s ease;
}
.blog-link:hover { gap: 0.8rem; }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  padding: 7rem 5%;
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--royal-blue-dark) 100%);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,117,0.15), transparent);
  top: -100px; right: -100px; filter: blur(60px);
}
.contact-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; color: white; margin-bottom: 1rem;
}
.contact p {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem;
}
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 600px; margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; color: white;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--crimson); }
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  grid-column: 1 / -1;
  padding: 1rem 2.4rem;
  background: var(--crimson);
  color: white; font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: 4px; cursor: pointer;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.35s ease; font-family: 'Outfit', sans-serif;
}
.contact-form button:hover { background: var(--crimson-light); transform: translateY(-2px); }

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  padding: 3rem 5% 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: white;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: white; }
.footer-copy {
  width: 100%; text-align: center; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-tagline { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .contact-form { grid-template-columns: 1fr; }
}
