:root {
  --gold: #5B2D8E;
  --gold-light: #7B4DBE;
  --gold-pale: #EDE6F8;
  --navy: #1A1A2E;
  --navy-mid: #2D2D4E;
  --navy-light: #3D3D6E;
  --cream: #FAF8FF;
  --cream-dark: #F0EAF8;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --purple: #5B2D8E;
  --purple-light: #7B4DBE;
  --purple-pale: #EDE6F8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(91, 45, 142, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.nav-name span {
  display: block;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  color: #C9A8FF;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #C9A8FF; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--purple) !important;
  color: #C9A8FF !important;
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  font-size: 11px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple) !important;
  color: var(--white) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(91,45,142,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,61,110,0.4) 0%, transparent 50%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,45,142,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,45,142,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A8FF;
  font-weight: 400;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #C9A8FF;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: #C9A8FF;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  color: rgba(255,255,255,100.55);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 520px;
  font-weight: 300;
}

  .hero-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #C9A8FF;
    flex-shrink: 0;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--purple);
    color: var(--white);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-1px);
  }

  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: #C9A8FF;
    color: #C9A8FF;
  }

  .hero-right {
    position: absolute; 
    right: 5%;
    top: 25%;
    transform: translateY(-50%);
    animation: fadeUp 1s 0.3s ease both;
  }

  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(91,45,142,0.3);
    border-radius: 4px;
    padding: 36px 32px;
    width: 300px;
    text-align: center;
  }

  .hero-card-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: block;
  }

  .hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
  }

  .hero-card-quals {
    font-size: 13px;
    color: #C9A8FF;
    margin-bottom: 4px;
    font-weight: 400;
  }

  .hero-card-title {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(201,168,255,0.7);
    margin-bottom: 20px;
    font-weight: 300;
  }

  .hero-card-info {
    border-top: 1px solid rgba(91,45,142,0.25);
    padding-top: 20px;
  }

  .hero-card-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }

  .hero-card-info strong {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--purple);
    padding: 24px 5%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .stat-item { text-align: center; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
  }

  /* SECTION COMMONS */
  section { padding: 100px 5%; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 400;
    margin-bottom: 16px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--purple);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--purple);
  }

  .section-lead {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
  }

  /* ABOUT */
 about { background: var(--white); }

 .about-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   max-width: 1200px;
   margin: 0 auto;
  }

  .about-visual { position: relative; }

  .about-frame {
    background: var(--navy);
    border-radius: 4px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .about-frame::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(91,45,142,0.2), transparent 70%);
  }

  .about-frame-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 24px;
    display: block;
  }

  .about-frame-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .about-frame-sig {
    border-top: 1px solid rgba(91,45,142,0.4);
    padding-top: 24px;
  }

  .about-frame-sig strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #C9A8FF;
    margin-bottom: 4px;
  }

  .about-frame-sig span {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    display: block;
  }

  .about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--purple);
    border-radius: 2px;
    opacity: 0.25;
  }

  .about-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-top: 24px;
    font-weight: 300;
  }

  .about-body p { margin-bottom: 16px; }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .highlight-item {
    border-left: 2px solid var(--purple);
    padding: 8px 0 8px 16px;
  }

  .highlight-item strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .highlight-item span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
  }

  /* LEADERSHIP POSITIONS */
  .positions {
    margin-top: 40px;
    background: var(--purple-pale);
    border-radius: 4px;
    padding: 28px 32px;
    border-left: 3px solid var(--purple);
  }

  .positions h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .position-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(91,45,142,0.15);
    gap: 20px;
  }

  .position-item:last-child { border-bottom: none; }

  .position-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    flex: 1;
  }

  .position-role span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 2px;
  }

  .position-year {
    font-size: 13px;
    color: var(--purple);
    font-weight: 500;
    white-space: nowrap;
    background: rgba(91,45,142,0.1);
    padding: 3px 10px;
    border-radius: 20px;
  }

  .current-badge {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* SERVICES */
  .services { background: var(--cream); }

  .services-inner { max-width: 1200px; margin: 0 auto; }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(91,45,142,0.12);
  }

  .service-card {
    background: var(--white);
    padding: 40px 36px;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-card:hover {
    background: var(--navy);
    transform: translateY(-4px);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(26,26,46,0.25);
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--purple-pale);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--purple);
    transition: all 0.3s;
  }

  .service-card:hover .service-icon {
    border-color: rgba(91,45,142,0.3);
    background: rgba(91,45,142,0.1);
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.3;
  }

  .service-card:hover h3 { color: var(--white); }

  .service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    transition: color 0.3s;
  }

  .service-card:hover p { color: rgba(255,255,255,0.6); }

  .service-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 400;
    transition: color 0.3s;
  }

  .service-card:hover .service-tag { color: rgba(201,168,255,0.8); }

  /* WHY US */
  .why { background: var(--navy); }

  .why-inner { max-width: 1200px; margin: 0 auto; }

  .why .section-title { color: var(--white); }
  .why .section-lead { color: rgba(255,255,255,0.55); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
  }

  .why-item {
    border-top: 1px solid rgba(91,45,142,0.35);
    padding-top: 28px;
  }

  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(91,45,142,0.4);
    line-height: 1;
    margin-bottom: 16px;
  }

  .why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
  }

  .why-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    font-weight: 300;
  }

  /* COMPLIANCE */
  .compliance { background: var(--white); }

  .compliance-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .compliance-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .compliance-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    align-items: flex-start;
    cursor: default;
    transition: all 0.2s;
  }

  .compliance-item:hover { background: var(--cream); margin: 0 -20px; padding: 20px; }

  .comp-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-pale);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .comp-text strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .comp-text span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 300;
  }

  .compliance-right {
    background: var(--navy);
    border-radius: 4px;
    padding: 48px 44px;
    position: sticky;
    top: 90px;
  }

  .compliance-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
  }

  .compliance-right > p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
  }

  .form-group { margin-bottom: 18px; }

  .form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    font-weight: 400;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--purple); }

  .form-group select option { background: var(--navy); color: var(--white); }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
  }

  .form-submit:hover { background: var(--purple-light); }

  /* CONTACT */
  .contact { background: var(--cream); }

  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-details { margin-top: 40px; }

  .contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #C9A8FF;
  }

  .contact-text strong {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 400;
  }

  .contact-text a,
  .contact-text p {
    font-size: 15px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
  }

  .contact-text a:hover { color: var(--purple); }

  .icsi-badge {
    margin-top: 36px;
    border: 1px solid rgba(91,45,142,0.3);
    border-radius: 4px;
    padding: 24px 28px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .icsi-logo-wrap {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 8px;
  }

  .icsi-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .icsi-text strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .icsi-text span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.5;
  }

  .map-placeholder {
    background: var(--navy);
    border-radius: 4px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(91,45,142,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,45,142,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .map-pin { font-size: 36px; position: relative; }

  .map-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    position: relative;
    text-align: center;
  }

  .map-placeholder span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    position: relative;
    font-weight: 300;
    text-align: center;
  }

  .map-link {
    position: relative;
    margin-top: 8px;
    background: var(--purple);
    color: var(--white);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
  }

  /* FOOTER */
  footer {
    background: #0F0F1E;
    padding: 60px 5% 32px;
  }

  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .footer-brand-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  .footer-brand-logo-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
  }

  .footer-brand-logo-text p {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C9A8FF;
    font-weight: 300;
  }

  .footer-brand > span {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.7;
    display: block;
  }

  .footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }

  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: #C9A8FF; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
  }

  .footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-right { display: none; }
    .about-inner, .compliance-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .stats-strip { gap: 32px; }
    .about-highlights { grid-template-columns: 1fr; }
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }