/* =============================================================
   OCEANIASOFT — style.css
   Aesthetic: Deep Navy + Warm Amber / Editorial-meets-SaaS
   Fonts: DM Sans (body) + Playfair Display (headlines)
   ============================================================= */


/* =============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================= */
:root {
  /* Color palette */
  --color-bg:          #0a0e1a;      /* deep navy background */
  --color-surface:     #111827;      /* card & section surface */
  --color-surface-2:   #1a2236;      /* slightly lighter surface */
  --color-border:      rgba(255,255,255,0.08);
  --color-accent:      #f5a623;      /* warm amber accent */
  --color-accent-dim:  rgba(245,166,35,0.15);
  --color-accent-glow: rgba(245,166,35,0.35);
  --color-text:        #e8ecf4;      /* primary text */
  --color-text-muted:  #8b95a9;      /* secondary / muted text */
  --color-white:       #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py:   120px;
  --container-w:  1200px;
  --radius:       12px;
  --radius-lg:    20px;

  /* Transitions */
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans: 0.3s var(--ease);
}


/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}


/* =============================================================
   3. UTILITIES
   ============================================================= */

/* Container */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section base */
.section {
  padding: var(--section-py) 0;
}

/* Section header (centered intro) */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-dim);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* em styling for italic accent in headings */
em {
  font-style: italic;
  color: var(--color-accent);
}


/* =============================================================
   4. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
}

/* Primary: amber fill */
.btn-primary {
  background: var(--color-accent);
  color: #0a0e1a;
  box-shadow: 0 0 0 0 var(--color-accent-glow);
}

.btn-primary:hover {
  background: #ffc043;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-accent-glow);
}

/* Ghost: transparent outline */
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Nav CTA: smaller, pill style */
.btn-nav {
  background: var(--color-accent);
  color: #0a0e1a;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: #ffc043;
  transform: translateY(-1px);
}

/* Full-width form button */
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}


/* =============================================================
   5. NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}

/* Blur + background when scrolled */
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.logo-text::after {
  content: '.';
  color: var(--color-accent);
}

/* ★ If using logo image */
.logo-img {
  height: 36px;
  width: auto;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--trans);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--trans);
}

.nav-links a:not(.btn):hover {
  color: var(--color-white);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =============================================================
   6. HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
}

/* Subtle dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Amber glow blob */
.hero-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.7; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: heroFadeUp 0.9s var(--ease) both;
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
}

/* Sub-headline */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* CTA buttons group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
}

.stat p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}


/* =============================================================
   7. SERVICES SECTION
   ============================================================= */
.services {
  background: var(--color-surface);
  position: relative;
}

/* Decorative top border */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

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

/* Service card base */
.service-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  opacity: 0;
  transform: translateY(32px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

/* Hover lift effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px var(--color-accent-dim);
  border-color: rgba(245,166,35,0.3);
}

/* Featured card (middle) */
.service-card--featured {
  background: linear-gradient(145deg, #1a2236, #111827);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 0 40px rgba(245,166,35,0.08);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #0a0e1a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Icon circle */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: #0a0e1a;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Feature list */
.service-list {
  margin-bottom: 28px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--color-accent);
  font-size: 0.7rem;
}

/* Learn more link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--trans);
}

.service-link:hover {
  gap: 10px;
}


/* =============================================================
   8. TESTIMONIALS SECTION
   ============================================================= */
.testimonials {
  background: var(--color-bg);
}

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

/* Testimonial card */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform var(--trans), box-shadow var(--trans);
  opacity: 0;
  transform: translateY(32px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Accent featured testimonial (middle) */
.testimonial-card--accent {
  background: linear-gradient(145deg, #1c2540, #111827);
  border-color: rgba(245,166,35,0.3);
}

/* Star rating */
.stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Quote text */
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -6px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--color-accent-dim);
  line-height: 1;
  pointer-events: none;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar placeholder (initials) */
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-dim);
  border: 2px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-white);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}


/* =============================================================
   9. TEAM SECTION
   ============================================================= */
.team {
  background: var(--color-surface);
}

/* 5-column grid (wraps on smaller screens) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* Team card */
.team-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
  opacity: 0;
  transform: translateY(32px);
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              box-shadow 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(245,166,35,0.3);
}

/* Photo area */
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Placeholder when no photo provided */
.team-photo--placeholder {
  background: linear-gradient(145deg, #1a2236, #0e1525);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-text-muted);
}

/* Info section below photo */
.team-info {
  padding: 20px 16px;
}

.team-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.team-info p {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}

/* Social icons */
.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: var(--trans);
}

.team-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0e1a;
  transform: translateY(-2px);
}


/* =============================================================
   10. CONTACT SECTION
   ============================================================= */
.contact {
  background: var(--color-bg);
  position: relative;
}

/* Two-column layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left info column */
.contact-info .section-label {
  text-align: left;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* Contact details list */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.contact-details li i {
  width: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Form wrapper card */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

/* Form groups */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-dim);
}


/* =============================================================
   11. FOOTER
   ============================================================= */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

/* Footer brand */
.footer-brand .logo-text {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.7;
}

/* Footer navigation */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--trans);
}

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

/* Social icons row */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: var(--trans);
}

.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0e1a;
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}


/* =============================================================
   12. SCROLL-REVEAL STAGGER (cards delay cascade)
   ============================================================= */
.service-card:nth-child(1),
.testimonial-card:nth-child(1),
.team-card:nth-child(1) { transition-delay: 0.05s; }

.service-card:nth-child(2),
.testimonial-card:nth-child(2),
.team-card:nth-child(2) { transition-delay: 0.15s; }

.service-card:nth-child(3),
.testimonial-card:nth-child(3),
.team-card:nth-child(3) { transition-delay: 0.25s; }

.team-card:nth-child(4) { transition-delay: 0.32s; }
.team-card:nth-child(5) { transition-delay: 0.40s; }


/* =============================================================
   13. RESPONSIVE — Tablet (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-socials {
    grid-column: span 2;
  }
}


/* =============================================================
   14. RESPONSIVE — Mobile (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {

  :root {
    --section-py: 80px;
  }

  /* — NAVBAR MOBILE — */
  .hamburger {
    display: flex;
  }

  /* Slide-down mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 100px 24px 40px;
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease);
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    padding: 16px 0;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links .btn-nav {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }

  /* — HERO MOBILE — */
  .hero {
    padding: 130px 0 80px;
    min-height: auto;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  /* — GRIDS MOBILE — */
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* — CONTACT MOBILE — */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  /* — FOOTER MOBILE — */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-socials {
    grid-column: 1;
  }
}


/* =============================================================
   15. RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}