*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal-dark:   #0B3D4E;
    --teal-mid:    #14566A;
    --teal-light:  #1E7A94;
    --sand:        #C8A96E;
    --gold:        #E8B84B;
    --gold-light:  #F5D68A;
    --white:       #FAFAFA;
    --off-white:   #F0EDE8;
    --text-dark:   #1A2E35;
    --text-mid:    #3D5A63;
    --text-light:  #6B8A93;
    --border:      rgba(11,61,78,0.12);
    --shadow-sm:   0 2px 12px rgba(11,61,78,0.08);
    --shadow-md:   0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg:   0 20px 60px rgba(11,61,78,0.18);
    --radius:      12px;
    --radius-lg:   20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11,61,78,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,169,110,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow-md); }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-icon img {
    width: 100%; height: 100%; object-fit: contain;
  }
  .nav-logo-text {
    display: flex; flex-direction: column; line-height: 1.2;
  }
  .nav-logo-text strong {
    font-family: 'Playfair Display', serif;
    font-size: 16px; color: var(--white); font-weight: 700;
  }
  .nav-logo-text span {
    font-size: 10px; color: var(--sand); letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 500;
  }

  .nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(250,250,250,0.8);
    text-decoration: none;
    font-size: 13px; font-weight: 500;
    padding: 6px 14px; border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a {
    background: var(--gold); color: var(--teal-dark);
    font-weight: 600;
  }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px; transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--teal-dark);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
  }

  /* Topographic SVG pattern — the signature element */
  .hero-topo {
    position: absolute; inset: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='400' cy='300' rx='380' ry='280'/%3E%3Cellipse cx='400' cy='300' rx='330' ry='240'/%3E%3Cellipse cx='400' cy='300' rx='280' ry='200'/%3E%3Cellipse cx='400' cy='300' rx='230' ry='160'/%3E%3Cellipse cx='400' cy='300' rx='180' ry='120'/%3E%3Cellipse cx='400' cy='300' rx='130' ry='80'/%3E%3Cellipse cx='400' cy='300' rx='80' ry='45'/%3E%3Cellipse cx='150' cy='150' rx='120' ry='90'/%3E%3Cellipse cx='150' cy='150' rx='80' ry='60'/%3E%3Cellipse cx='150' cy='150' rx='45' ry='35'/%3E%3Cellipse cx='650' cy='480' rx='140' ry='100'/%3E%3Cellipse cx='650' cy='480' rx='95' ry='65'/%3E%3Cellipse cx='650' cy='480' rx='50' ry='35'/%3E%3Cellipse cx='680' cy='120' rx='100' ry='70'/%3E%3Cellipse cx='680' cy='120' rx='60' ry='42'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
  }

  /* Gradient overlay */
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,61,78,0.95) 0%, rgba(20,86,106,0.85) 50%, rgba(30,122,148,0.7) 100%);
  }

  /* Glowing orb */
  .hero::after {
    content: ''; position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%);
    right: -100px; top: -100px; pointer-events: none;
  }

  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,184,75,0.15);
    border: 1px solid rgba(232,184,75,0.3);
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 600; color: var(--gold);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2; font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--sand), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-desc {
    color: rgba(250,250,250,0.72);
    font-size: 16px; line-height: 1.75;
    max-width: 500px; margin-bottom: 36px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--sand), var(--gold));
    color: var(--teal-dark); font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: 8px;
    text-decoration: none; transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(232,184,75,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,184,75,0.45); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(250,250,250,0.3);
    color: var(--white); font-weight: 500; font-size: 14px;
    padding: 14px 28px; border-radius: 8px;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-secondary:hover { background: rgba(250,250,250,0.08); border-color: rgba(250,250,250,0.5); }

  /* Stats panel */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: var(--radius);
    padding: 24px 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
  }
  .stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,169,110,0.4);
    transform: translateY(-3px);
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: var(--gold); line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 12px; font-weight: 600;
    color: var(--white);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .stat-desc { font-size: 11px; color: rgba(250,250,250,0.5); line-height: 1.5; }

  /* ── SECTION BASE ── */
  section { padding: 96px 5%; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-eyebrow::after {
    content: ''; flex: 1; max-width: 40px;
    height: 1px; background: var(--teal-light); opacity: 0.4;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; color: var(--text-dark);
    line-height: 1.25; margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 16px; color: var(--text-mid);
    max-width: 560px; line-height: 1.7; font-weight: 300;
  }

  .section-header { margin-bottom: 56px; }

  /* ── SERVICES ── */
  .services { background: var(--off-white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal-mid), var(--sand));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(11,61,78,0.2);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-size: 2rem; margin-bottom: 16px;
    display: block;
  }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--teal-dark); margin-bottom: 10px;
  }
  .service-desc {
    font-size: 13.5px; color: var(--text-mid);
    line-height: 1.65; font-weight: 300;
  }

  /* ── WHY CHOOSE US ── */
  .why { background: var(--teal-dark); }

  .why .section-title { color: var(--white); }
  .why .section-subtitle { color: rgba(250,250,250,0.65); }
  .why .section-eyebrow { color: var(--gold); }
  .why .section-eyebrow::after { background: var(--gold); }

  .why-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,110,0.15);
    border-radius: var(--radius-lg); padding: 32px 26px;
    transition: all 0.3s;
  }
  .why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-4px);
  }
  .why-icon {
    font-size: 2rem; margin-bottom: 16px;
    display: block;
  }
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--gold);
    margin-bottom: 10px; font-weight: 600;
  }
  .why-desc {
    font-size: 13.5px; color: rgba(250,250,250,0.6);
    line-height: 1.7; font-weight: 300;
  }

  /* ── PROJECTS ── */
  .projects-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
  }

  .project-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.3s; background: var(--white);
  }
  .project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

  .project-img {
    width: 100%; height: 200px; object-fit: cover;
    display: block; background: var(--off-white);
  }
  .project-body { padding: 28px 24px; }

  .project-tag {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-light); background: rgba(30,122,148,0.1);
    padding: 4px 10px; border-radius: 4px; display: inline-block;
    margin-bottom: 12px;
  }
  .project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--teal-dark); margin-bottom: 10px; line-height: 1.35;
  }
  .project-desc {
    font-size: 13.5px; color: var(--text-mid);
    line-height: 1.65; font-weight: 300;
  }
  .project-meta {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px; color: var(--text-light);
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  }
  .project-meta strong { color: var(--teal-mid); }

  .project-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px;
    font-size: 13px; font-weight: 600; color: var(--teal-light);
    text-decoration: none; transition: color 0.2s;
  }
  .project-link:hover { color: var(--teal-dark); }
  .project-link::after { content: '→'; }

  /* ── TEAM ── */
  .team { background: var(--off-white); }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

  .team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px 24px;
    text-align: center; transition: all 0.3s;
  }
  .team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

  .team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%; object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid rgba(11,61,78,0.1);
    display: block;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  }
  .team-avatar-placeholder {
    width: 80px; height: 80px;
    border-radius: 50%; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--white);
  }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--teal-dark); margin-bottom: 4px;
  }
  .team-role {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--sand); margin-bottom: 10px;
  }
  .team-bio {
    font-size: 12.5px; color: var(--text-mid);
    line-height: 1.6; font-weight: 300;
  }
  .team-linkedin {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 12px; font-size: 12px; font-weight: 600;
    color: #0077B5; text-decoration: none; transition: opacity 0.2s;
  }
  .team-linkedin:hover { opacity: 0.7; }

  /* ── CONTACT ── */
  .contact { background: var(--white); }

  .contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--teal-dark); margin-bottom: 20px;
  }

  .contact-services {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 36px;
  }
  .contact-services li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-mid);
  }
  .contact-services li::before {
    content: ''; width: 6px; height: 6px;
    background: var(--sand); border-radius: 50%; flex-shrink: 0;
  }

  .contact-detail-grid {
    display: flex; flex-direction: column; gap: 20px;
  }
  .contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .contact-detail-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(11,61,78,0.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .contact-detail-body { line-height: 1; }
  .contact-detail-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
  }
  .contact-detail-value {
    font-size: 14px; color: var(--text-dark); font-weight: 500;
  }
  .contact-detail-value a {
    color: var(--teal-light); text-decoration: none;
  }
  .contact-detail-value a:hover { text-decoration: underline; }
  .contact-detail-sub {
    font-size: 12px; color: var(--text-light); margin-top: 3px;
  }

  .contact-cta-box {
    background: var(--teal-dark);
    border-radius: var(--radius-lg); padding: 40px;
    color: var(--white);
  }
  .contact-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
  }
  .contact-cta-box p {
    font-size: 14px; color: rgba(250,250,250,0.65);
    line-height: 1.7; margin-bottom: 28px; font-weight: 300;
  }
  .contact-cta-box .btn-primary { width: 100%; justify-content: center; }

  .contact-reg {
    margin-top: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: var(--radius); padding: 16px 20px;
    font-size: 12px; color: rgba(250,250,250,0.55); line-height: 1.6;
  }
  .contact-reg strong { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: #071F27;
    padding: 48px 5% 32px;
    border-top: 1px solid rgba(200,169,110,0.2);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .footer-brand-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .footer-brand-icon img {
    width: 100%; height: 100%; object-fit: contain;
  }
  .footer-brand-text strong {
    font-family: 'Playfair Display', serif;
    display: block; color: var(--white); font-size: 14px;
  }
  .footer-brand-text span {
    font-size: 10px; color: var(--sand);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .footer-copy {
    font-size: 12px; color: rgba(250,250,250,0.4);
  }
  .footer-links {
    display: flex; gap: 16px;
  }
  .footer-links a {
    font-size: 12px; color: rgba(250,250,250,0.5);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--sand); }

  /* ── DIVIDER ── */
  .divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--sand), var(--gold));
    border-radius: 2px; margin: 16px 0 40px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 70px; left: 0; right: 0;
      background: rgba(11,61,78,0.98);
      padding: 16px; gap: 4px;
    }
  }

  @media (max-width: 600px) {
    section { padding: 72px 5%; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.8rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-service { padding: 140px 5% 90px; background: var(--teal-dark); position: relative; overflow: hidden; }
  .hero-topo-service { position: absolute; inset: 0; opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='450' cy='250' rx='420' ry='230'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='175'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='125'/%3E%3Cellipse cx='450' cy='250' rx='180' ry='80'/%3E%3Cellipse cx='450' cy='250' rx='100' ry='42'/%3E%3Cellipse cx='130' cy='120' rx='95' ry='72'/%3E%3Cellipse cx='780' cy='400' rx='105' ry='72'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover; }
  .hero-service::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.97) 0%,rgba(20,86,106,0.88) 60%,rgba(30,122,148,0.75) 100%); }
  .hero-service::after { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(232,184,75,0.1) 0%,transparent 70%); right: -80px; top: -100px; pointer-events: none; }
  .hero-inner-service { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
  .hero-breadcrumb-service { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-service a { color: var(--sand); text-decoration: none; }
  .hero-eyebrow-service { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-service::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-service { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
  .hero-title-service em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-service { font-size: 16px; color: rgba(250,250,250,0.7); max-width: 660px; line-height: 1.8; font-weight: 300; margin-bottom: 40px; }

  /* Quick-jump nav pills */
  .service-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .service-nav a { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(200,169,110,0.25); color: rgba(250,250,250,0.8); font-size: 12px; font-weight: 500; padding: 8px 16px; border-radius: 7px; text-decoration: none; transition: all 0.22s; }
  .service-nav a:hover { background: rgba(200,169,110,0.2); border-color: rgba(200,169,110,0.5); color: var(--white); }

  /* ── SERVICE BLOCKS ── */
  .service-block { padding: 96px 5%; }
  .service-block:nth-child(even) { background: var(--off-white); }
  .service-block:nth-child(odd) { background: var(--white); }
  .sb-inner { max-width: 1200px; margin: 0 auto; }

  /* Header row */
  .sb-header { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; margin-bottom: 56px; }
  .sb-number { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 800; color: rgba(11,61,78,0.07); line-height: 1; flex-shrink: 0; }
  .sb-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
  .sb-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 700; color: var(--teal-dark); line-height: 1.2; margin-bottom: 12px; }
  .sb-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-weight: 300; max-width: 720px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 0; }

  /* Image + content grid */
  .sb-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
  .sb-layout.reverse { direction: rtl; }
  .sb-layout.reverse > * { direction: ltr; }
  .sb-images { display: flex; flex-direction: column; gap: 16px; }
  .sb-img { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); display: block; }
  .sb-img img { width: 100%; display: block; transition: transform 0.5s ease; }
  .sb-img:hover img { transform: scale(1.03); }
  .sb-img-caption { font-size: 11px; color: var(--text-light); font-style: italic; margin-top: 8px; text-align: center; }

  /* Tool badges */
  .tool-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .tool-badge { display: inline-flex; flex-direction: column; align-items: center; background: var(--teal-dark); border-radius: var(--radius); padding: 10px 16px; min-width: 90px; text-align: center; transition: all 0.2s; }
  .tool-badge:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
  .tool-badge-name { font-size: 12px; font-weight: 700; color: var(--gold); line-height: 1.2; }
  .tool-badge-desc { font-size: 10px; color: rgba(250,250,250,0.6); margin-top: 3px; line-height: 1.3; }

  /* Framework highlight box */
  .framework-box { background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid)); border-radius: var(--radius-lg); padding: 28px 30px; margin-bottom: 28px; border: 1px solid rgba(200,169,110,0.2); }
  .framework-box h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
  .framework-box p { font-size: 13.5px; color: rgba(250,250,250,0.7); line-height: 1.7; font-weight: 300; }

  /* Capability columns */
  .cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .cap-block { }
  .cap-title { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--sand); }
  .cap-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .cap-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
  .cap-list li::before { content: ''; width: 5px; height: 5px; background: var(--sand); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

  /* Modeling list */
  .model-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
  .model-tag { background: rgba(11,61,78,0.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 14px; text-align: center; transition: all 0.22s; }
  .model-tag:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
  .model-tag:hover .model-tag-name { color: var(--gold); }
  .model-tag:hover .model-tag-use { color: rgba(250,250,250,0.6); }
  .model-tag-name { font-size: 12px; font-weight: 700; color: var(--teal-dark); }
  .model-tag-use { font-size: 11px; color: var(--text-light); margin-top: 3px; }

  /* ── CTA BAND ── */
  .cta-band-services { background: var(--teal-dark); padding: 80px 5%; text-align: center; }
  .cta-title-services { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .cta-desc-services { font-size: 15px; color: rgba(250,250,250,0.65); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; font-weight: 300; }
  .cta-actions-services { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,184,75,0.3); }
  .btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(250,250,250,0.3); color: var(--white); font-weight: 500; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; }
  .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(250,250,250,0.55); }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner-service { max-width: 1200px; margin: 0 auto; }
  .footer-top-service { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand-service { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon-service { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon-service img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text-service strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text-service span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col-service { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col-service h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col-service a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col-service a:hover { color: var(--sand); }
  .footer-bottom-service { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy-service { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .sb-layout, .sb-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
    .cap-grid { grid-template-columns: 1fr; }
    .model-grid { grid-template-columns: repeat(2,1fr); }
    .sb-header { grid-template-columns: 1fr; }
    .sb-number { font-size: 3rem; }
  }
  @media (max-width: 600px) {
    .model-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { flex-direction: column; }
    .tool-row { gap: 6px; }
    .tool-badge { min-width: 76px; }
  }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-projects {
    padding: 140px 5% 90px;
    background: var(--teal-dark);
    position: relative; overflow: hidden;
  }
  .hero-topo-projects { position: absolute; inset: 0; opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='450' cy='250' rx='420' ry='230'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='175'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='125'/%3E%3Cellipse cx='450' cy='250' rx='180' ry='80'/%3E%3Cellipse cx='450' cy='250' rx='100' ry='42'/%3E%3Cellipse cx='120' cy='110' rx='95' ry='72'/%3E%3Cellipse cx='120' cy='110' rx='55' ry='42'/%3E%3Cellipse cx='790' cy='400' rx='105' ry='72'/%3E%3Cellipse cx='790' cy='400' rx='60' ry='42'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover; }
  .hero-projects::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.97) 0%,rgba(20,86,106,0.88) 60%,rgba(30,122,148,0.75) 100%); }
  .hero-projects::after { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(232,184,75,0.1) 0%,transparent 70%); right: -80px; top: -100px; pointer-events: none; }

  .hero-inner-projects { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
  .hero-breadcrumb-projects { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-projects a { color: var(--sand); text-decoration: none; }
  .hero-breadcrumb-projects a:hover { text-decoration: underline; }
  .hero-eyebrow-projects { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-projects::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-projects { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-projects em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-projects { font-size: 16px; color: rgba(250,250,250,0.7); max-width: 680px; line-height: 1.8; font-weight: 300; margin-bottom: 48px; }

  /* Hero stat strip */
  .hero-strip-projects { display: flex; gap: 0; flex-wrap: wrap; }
  .hero-stat-projects { padding: 0 40px 0 0; margin-right: 40px; border-right: 1px solid rgba(200,169,110,0.25); }
  .hero-stat-projects:last-child { border-right: none; margin-right: 0; }
  .hero-stat-num-projects { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-label-projects { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.55); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 6px; }

  /* ── SECTION BASE ── */
  .section { padding: 88px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 48px; }

  /* ── FEATURED PROJECT (Project 1 — TLO & HBS) ── */
  .featured { background: var(--white); }
  .featured-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md);
  }
  .featured-img { position: relative; overflow: hidden; min-height: 420px; }
  .featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
  .featured-card:hover .featured-img img { transform: scale(1.03); }
  .featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(11,61,78,0.15) 100%); }
  .featured-badge { position: absolute; top: 20px; left: 20px; background: rgba(11,61,78,0.92); border: 1px solid rgba(200,169,110,0.4); color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 5px; backdrop-filter: blur(6px); }
  .featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
  .featured-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(30,122,148,0.08); color: var(--teal-light); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 5px; margin-bottom: 18px; }
  .featured-title { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 700; color: var(--teal-dark); line-height: 1.3; margin-bottom: 16px; }
  .featured-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
  .featured-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
  .meta-item { background: var(--off-white); border-radius: 9px; padding: 14px 16px; }
  .meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
  .meta-value { font-size: 13px; font-weight: 600; color: var(--teal-dark); line-height: 1.4; }
  .featured-link { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: var(--white); font-size: 13px; font-weight: 600; padding: 12px 22px; border-radius: 8px; text-decoration: none; transition: all 0.22s; width: fit-content; }
  .featured-link:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
  .featured-link-gold { background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); }
  .featured-link-gold:hover { filter: brightness(1.06); }

  /* ── PROJECT GRID ── */
  .projects-section { background: var(--off-white); }
  .projects-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(360px,1fr)); gap: 28px; }

  .project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
  .project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
  .project-card-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .project-card:hover .project-card-img { transform: scale(1.04); }
  .project-img-wrap { overflow: hidden; position: relative; }
  .project-status { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; }
  .status-current { background: rgba(34,197,94,0.2); color: #16a34a; border: 1px solid rgba(34,197,94,0.4); }
  .status-complete { background: rgba(11,61,78,0.85); color: var(--sand); border: 1px solid rgba(200,169,110,0.4); }
  .status-translation { background: rgba(232,184,75,0.2); color: #a16207; border: 1px solid rgba(232,184,75,0.5); }

  .project-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
  .project-tag { display: inline-block; background: rgba(30,122,148,0.08); color: var(--teal-light); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; margin-bottom: 14px; }
  .project-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); line-height: 1.35; margin-bottom: 12px; }
  .project-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; flex: 1; }
  .project-footer { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
  .project-meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .project-meta-pill { font-size: 11px; font-weight: 500; color: var(--text-light); background: var(--off-white); padding: 4px 10px; border-radius: 5px; }
  .project-meta-pill strong { color: var(--teal-mid); font-weight: 600; }
  .project-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--teal-light); text-decoration: none; transition: all 0.2s; width: fit-content; }
  .project-link:hover { color: var(--teal-dark); gap: 9px; }
  .project-link-btn { background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); padding: 9px 18px; border-radius: 7px; font-size: 12px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.22s; }
  .project-link-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }

  /* ── METHODS SECTION ── */
  .methods { background: var(--teal-dark); }
  .methods .section-eyebrow { color: var(--gold); }
  .methods .section-title { color: var(--white); }
  .methods-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }
  .method-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
  .method-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,169,110,0.35); transform: translateY(-3px); }
  .method-icon { font-size: 1.6rem; margin-bottom: 12px; }
  .method-name { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
  .method-desc { font-size: 12px; color: rgba(250,250,250,0.55); line-height: 1.55; font-weight: 300; }

  /* ── PUBLICATION SECTION ── */
  .publications { background: var(--white); }
  .pub-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; padding: 32px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 20px; transition: all 0.3s; }
  .pub-card:hover { box-shadow: var(--shadow-md); background: var(--white); transform: translateY(-3px); }
  .pub-card:last-child { margin-bottom: 0; }
  .pub-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: rgba(11,61,78,0.1); line-height: 1; flex-shrink: 0; width: 56px; text-align: right; }
  .pub-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); background: rgba(30,122,148,0.08); padding: 4px 10px; border-radius: 5px; display: inline-block; margin-bottom: 10px; }
  .pub-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); line-height: 1.35; margin-bottom: 8px; }
  .pub-authors { font-size: 12.5px; color: var(--text-light); margin-bottom: 10px; font-style: italic; }
  .pub-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }
  .pub-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .pub-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; text-decoration: none; padding: 7px 16px; border-radius: 7px; transition: all 0.2s; }
  .pub-link-primary { background: var(--teal-dark); color: var(--white); }
  .pub-link-primary:hover { background: var(--teal-mid); }
  .pub-link-secondary { border: 1.5px solid var(--border); color: var(--teal-dark); }
  .pub-link-secondary:hover { background: var(--off-white); }

  /* ── CTA BAND ── */
  .cta-band-projects { background: var(--off-white); padding: 80px 5%; }
  .cta-inner-projects { max-width: 800px; margin: 0 auto; text-align: center; }
  .cta-title-projects { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; }
  .cta-desc-projects { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cta-actions-projects { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,184,75,0.3); }
  .btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,184,75,0.45); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: var(--white); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; }
  .btn-secondary:hover { background: var(--teal-mid); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 280px; }
    .pub-card { grid-template-columns: 1fr; }
    .pub-num { display: none; }
    .hero-stat { padding: 0 24px 0 0; margin-right: 24px; }
    .featured-meta-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; }
    .methods-grid { grid-template-columns: repeat(2,1fr); }
    .hero-strip { row-gap: 20px; }
    .hero-stat { border-right: none; }
    .footer-top { flex-direction: column; }
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-team {
    padding: 140px 5% 96px;
    background: var(--teal-dark);
    position: relative; overflow: hidden;
  }
  .hero-topo-team { position: absolute; inset: 0; opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='450' cy='250' rx='420' ry='230'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='175'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='125'/%3E%3Cellipse cx='450' cy='250' rx='180' ry='80'/%3E%3Cellipse cx='450' cy='250' rx='100' ry='42'/%3E%3Cellipse cx='120' cy='110' rx='95' ry='72'/%3E%3Cellipse cx='790' cy='400' rx='105' ry='72'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover; }
  .hero-team::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.97) 0%,rgba(20,86,106,0.88) 60%,rgba(30,122,148,0.75) 100%); }
  .hero-team::after { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(232,184,75,0.1) 0%,transparent 70%); right: -80px; top: -100px; pointer-events: none; }
  .hero-inner-team { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .hero-breadcrumb-team { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-team a { color: var(--sand); text-decoration: none; }
  .hero-eyebrow-team { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-team::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-team { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-team em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-team { font-size: 15.5px; color: rgba(250,250,250,0.7); line-height: 1.8; font-weight: 300; }

  /* Hero stat grid */
  .hero-stats-team { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat-card-team { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
  .hero-stat-card-team:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,110,0.4); transform: translateY(-3px); }
  .hero-stat-num-team { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-label-team { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.55); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 7px; }
  .hero-stat-sub-team { font-size: 11px; color: rgba(250,250,250,0.35); margin-top: 3px; line-height: 1.4; }

  /* ── WHY BAND ── */
  .why-band { background: var(--off-white); padding: 56px 5%; border-bottom: 1px solid var(--border); }
  .why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .why-item { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.3s; }
  .why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .why-icon-team { font-size: 2rem; margin-bottom: 12px; }
  .why-title-team { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
  .why-desc-team { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

  /* ── FEATURED MEMBER ── */
  .featured-section { padding: 88px 5%; background: var(--white); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 48px; }

  .featured-card { display: grid; grid-template-columns: 400px 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
  .featured-img-wrap { position: relative; overflow: hidden; }
  .featured-img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: top center; display: block; transition: transform 0.6s ease; }
  .featured-card:hover .featured-img { transform: scale(1.03); }
  .featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
  .featured-role-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; width: fit-content; }
  .featured-name { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; color: var(--teal-dark); line-height: 1.2; margin-bottom: 6px; }
  .featured-title { font-size: 14px; font-weight: 600; color: var(--teal-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
  .featured-bio { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
  .featured-expertise { margin-bottom: 28px; }
  .expertise-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
  .expertise-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .expertise-tag { background: rgba(11,61,78,0.07); border: 1px solid rgba(11,61,78,0.12); color: var(--teal-dark); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 6px; }
  .featured-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .link-linkedin { display: inline-flex; align-items: center; gap: 7px; background: #0077B5; color: #fff; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; transition: all 0.22s; }
  .link-linkedin:hover { background: #005f91; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,181,0.35); }
  .link-email { display: inline-flex; align-items: center; gap: 7px; background: var(--off-white); border: 1.5px solid var(--border); color: var(--teal-dark); font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; transition: all 0.22s; }
  .link-email:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

  /* ── TEAM GRID ── */
  .team-section { padding: 88px 5%; background: var(--off-white); }
  .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

  .member-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
  .member-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
  .member-img-wrap { overflow: hidden; position: relative; height: 300px; background: var(--off-white); }
  .member-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.5s ease; }
  .member-card:hover .member-img { transform: scale(1.05); }
  .member-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,61,78,0.5) 0%, transparent 50%); }
  .member-overlay-name { position: absolute; bottom: 16px; left: 16px; right: 16px; }
  .member-overlay-name strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); display: block; line-height: 1.3; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
  .member-overlay-role { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

  .member-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .member-edu { font-size: 12px; font-weight: 600; color: var(--teal-light); margin-bottom: 10px; }
  .member-bio { font-size: 13px; color: var(--text-mid); line-height: 1.65; font-weight: 300; flex: 1; }
  .member-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
  .member-skill { background: rgba(11,61,78,0.06); border: 1px solid rgba(11,61,78,0.1); color: var(--teal-dark); font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 4px; }
  .member-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--off-white); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .member-linkedin { display: inline-flex; align-items: center; gap: 5px; background: #0077B5; color: #fff; font-size: 11.5px; font-weight: 600; padding: 6px 14px; border-radius: 6px; text-decoration: none; transition: all 0.2s; }
  .member-linkedin:hover { background: #005f91; }
  .member-email { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--border); color: var(--text-mid); font-size: 11.5px; font-weight: 500; padding: 6px 14px; border-radius: 6px; text-decoration: none; transition: all 0.2s; }
  .member-email:hover { background: var(--white); color: var(--teal-dark); }

  /* ── PARTNERS SECTION ── */
  .partners-section { padding: 88px 5%; background: var(--teal-dark); }
  .partners-section .section-eyebrow { color: var(--gold); }
  .partners-section .section-title { color: var(--white); }
  .partners-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .partner-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all 0.3s; }
  .partner-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,110,0.35); transform: translateY(-3px); }
  .partner-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
  .partner-type { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

  /* ── MEDIA SECTION ── */
  .media-section { padding: 88px 5%; background: var(--white); }
  .media-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; max-width: 640px; margin-bottom: 40px; font-weight: 300; }
  .media-outlets { display: flex; flex-wrap: wrap; gap: 12px; }
  .media-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--teal-dark); transition: all 0.2s; }
  .media-tag:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
  .media-tag-more { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
  .media-tag-more:hover { background: var(--teal-mid); }
  .media-count { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--teal-dark); line-height: 1; margin-top: 40px; }
  .media-count-label { font-size: 14px; color: var(--text-mid); font-weight: 300; margin-top: 6px; }

  /* ── CTA ── */
  .cta-section-team { padding: 80px 5%; background: var(--off-white); text-align: center; }
  .cta-inner-team { max-width: 640px; margin: 0 auto; }
  .cta-title-team { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; }
  .cta-desc-team { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
  .cta-actions-team { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,184,75,0.3); }
  .btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: var(--white); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; }
  .btn-secondary:hover { background: var(--teal-mid); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    .why-inner { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 320px; }
  }
  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    .why-inner { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
  }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-contact { padding: 140px 5% 96px; background: var(--teal-dark); position: relative; overflow: hidden; }
  .hero-topo-contact { position: absolute; inset: 0; opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='450' cy='250' rx='420' ry='230'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='175'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='125'/%3E%3Cellipse cx='450' cy='250' rx='180' ry='80'/%3E%3Cellipse cx='450' cy='250' rx='100' ry='42'/%3E%3Cellipse cx='130' cy='110' rx='95' ry='72'/%3E%3Cellipse cx='790' cy='400' rx='105' ry='72'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover; }
  .hero-contact::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.97) 0%,rgba(20,86,106,0.88) 60%,rgba(30,122,148,0.75) 100%); }
  .hero-contact::after { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(232,184,75,0.1) 0%,transparent 70%); right: -80px; top: -100px; pointer-events: none; }
  .hero-inner-contact { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .hero-breadcrumb-contact { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-contact a { color: var(--sand); text-decoration: none; }
  .hero-eyebrow-contact { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-contact::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-contact { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-contact em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-contact { font-size: 15.5px; color: rgba(250,250,250,0.7); line-height: 1.8; font-weight: 300; }

  /* Quick contact pills */
  .quick-contacts { display: flex; flex-direction: column; gap: 14px; }
  .quick-contact { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 18px 20px; text-decoration: none; transition: all 0.25s; }
  .quick-contact:hover { background: rgba(255,255,255,0.11); border-color: rgba(200,169,110,0.4); transform: translateX(4px); }
  .qc-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
  .qc-icon-email { background: rgba(30,122,148,0.3); }
  .qc-icon-phone { background: rgba(37,211,102,0.2); }
  .qc-icon-wa { background: rgba(37,211,102,0.2); }
  .qc-icon-tg { background: rgba(34,158,217,0.2); }
  .qc-icon-li { background: rgba(0,119,181,0.2); }
  .qc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,250,250,0.45); margin-bottom: 3px; }
  .qc-value { font-size: 13.5px; font-weight: 600; color: var(--white); }
  .qc-sub { font-size: 11px; color: rgba(250,250,250,0.45); margin-top: 1px; }

  /* ── MAIN CONTACT SECTION ── */
  .contact-section { padding: 88px 5%; background: var(--off-white); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

  /* LEFT — info blocks */
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 36px; }
  .contact-intro { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 40px; }

  .detail-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
  .detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 18px; align-items: flex-start; transition: all 0.3s; }
  .detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .detail-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(11,61,78,0.07); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
  .detail-body { flex: 1; }
  .detail-label { font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
  .detail-value { font-size: 14px; font-weight: 600; color: var(--teal-dark); line-height: 1.5; }
  .detail-value a { color: var(--teal-light); text-decoration: none; transition: color 0.2s; }
  .detail-value a:hover { color: var(--teal-dark); text-decoration: underline; }
  .detail-sub { font-size: 12px; color: var(--text-light); margin-top: 4px; line-height: 1.5; }

  /* Registration box */
  .reg-box { background: var(--teal-dark); border-radius: var(--radius-lg); padding: 28px 26px; border: 1px solid rgba(200,169,110,0.2); }
  .reg-box-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
  .reg-list { display: flex; flex-direction: column; gap: 9px; }
  .reg-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(250,250,250,0.7); line-height: 1.5; }
  .reg-item::before { content: ''; width: 5px; height: 5px; background: var(--sand); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
  .reg-item strong { color: var(--gold); font-weight: 600; }

  /* ── RIGHT — form ── */
  .contact-form-card-contact { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-md); }
  .form-title-contact { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
  .form-subtitle-contact { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 32px; font-weight: 300; }
  .form-row-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .form-group-contact label { font-size: 12px; font-weight: 600; color: var(--text-dark); letter-spacing: 0.04em; }
  .form-group-contact input,
  .form-group-contact select,
  .form-group-contact textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
  .form-group-contact input:focus,
  .form-group-contact select:focus,
  .form-group-contact textarea:focus { border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(30,122,148,0.1); }
  .form-group-contact input::placeholder,
  .form-group-contact textarea::placeholder { color: var(--text-light); }
  .form-group-contact select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B8A93' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
  .form-group-contact textarea { resize: vertical; min-height: 120px; }
  .form-submit-contact { width: 100%; padding: 14px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-size: 14px; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.25s; margin-top: 4px; }
  .form-submit-contact:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.4); }
  .form-note-contact { font-size: 11.5px; color: var(--text-light); line-height: 1.6; margin-top: 14px; text-align: center; }

  /* ── CHANNELS SECTION ── */
  .channels-section { padding: 88px 5%; background: var(--white); }
  .channels-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .channel-card { border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; text-decoration: none; transition: all 0.3s; border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
  .channel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
  .channel-card-email { background: var(--off-white); }
  .channel-card-wa { background: #f0fdf4; border-color: rgba(37,211,102,0.2); }
  .channel-card-tg { background: #f0f9ff; border-color: rgba(34,158,217,0.2); }
  .channel-card-li { background: #eff6ff; border-color: rgba(0,119,181,0.2); }
  .channel-icon { font-size: 2.4rem; margin-bottom: 14px; }
  .channel-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
  .channel-card-email .channel-name { color: var(--teal-dark); }
  .channel-card-wa .channel-name { color: #15803d; }
  .channel-card-tg .channel-name { color: #0369a1; }
  .channel-card-li .channel-name { color: #1d4ed8; }
  .channel-handle { font-size: 12.5px; font-weight: 500; margin-bottom: 6px; }
  .channel-card-email .channel-handle { color: var(--teal-light); }
  .channel-card-wa .channel-handle { color: #16a34a; }
  .channel-card-tg .channel-handle { color: #0284c7; }
  .channel-card-li .channel-handle { color: #2563eb; }
  .channel-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; font-weight: 300; }
  .channel-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; padding: 9px 20px; border-radius: 7px; font-size: 12.5px; font-weight: 700; transition: all 0.22s; }
  .channel-card-email .channel-btn { background: var(--teal-dark); color: var(--white); }
  .channel-card-email .channel-btn:hover { background: var(--teal-mid); }
  .channel-card-wa .channel-btn { background: #25D366; color: var(--white); }
  .channel-card-wa .channel-btn:hover { background: #1dba58; }
  .channel-card-tg .channel-btn { background: #229ED9; color: var(--white); }
  .channel-card-tg .channel-btn:hover { background: #1a8fc0; }
  .channel-card-li .channel-btn { background: #0077B5; color: var(--white); }
  .channel-card-li .channel-btn:hover { background: #005f91; }

  /* ── SERVICES SUMMARY ── */
  .services-summary { padding: 88px 5%; background: var(--teal-dark); }
  .services-summary .section-eyebrow { color: var(--gold); }
  .services-summary .section-title { color: var(--white); }
  .services-summary .divider { margin-bottom: 48px; }
  .svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .svc-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius); padding: 22px 18px; transition: all 0.3s; }
  .svc-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,110,0.35); transform: translateY(-3px); }
  .svc-icon { font-size: 1.5rem; margin-bottom: 10px; }
  .svc-name { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 5px; }
  .svc-desc { font-size: 12px; color: rgba(250,250,250,0.55); line-height: 1.55; font-weight: 300; }

  /* ── MAP SECTION ── */
  .map-section { padding: 0; background: var(--off-white); }
  .map-inner { max-width: 100%; }
  .map-header { padding: 56px 5% 40px; max-width: 1200px; margin: 0 auto; }
  .map-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
  .map-header p { font-size: 14px; color: var(--text-mid); font-weight: 300; }
  .map-embed { width: 100%; height: 420px; border: none; display: block; filter: grayscale(20%) contrast(1.05); }
  .map-address-bar { background: var(--white); border-top: 1px solid var(--border); padding: 20px 5%; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .map-address-icon { font-size: 1.4rem; }
  .map-address-text { font-size: 14px; font-weight: 600; color: var(--teal-dark); }
  .map-address-sub { font-size: 12px; color: var(--text-light); margin-top: 2px; }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1024px) {
    .channels-grid { grid-template-columns: repeat(2,1fr); }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .channels-grid { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { flex-direction: column; }
    .contact-form-card { padding: 28px 22px; }
  }
 

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-bulletins { min-height: 80vh; display: flex; align-items: center; padding: 140px 5% 80px; background: var(--teal-dark); position: relative; overflow: hidden; }
  .hero-topo-bulletins { position: absolute; inset: 0; opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cg fill='none' stroke='%23C8A96E' stroke-width='1'%3E%3Cellipse cx='450' cy='250' rx='420' ry='230'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='175'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='125'/%3E%3Cellipse cx='450' cy='250' rx='180' ry='80'/%3E%3Cellipse cx='450' cy='250' rx='100' ry='42'/%3E%3Cellipse cx='130' cy='110' rx='95' ry='72'/%3E%3Cellipse cx='790' cy='400' rx='105' ry='72'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover; }
  .hero-bulletins::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.97) 0%,rgba(20,86,106,0.88) 60%,rgba(30,122,148,0.75) 100%); }
  .hero-bulletins::after { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle,rgba(232,184,75,0.09) 0%,transparent 70%); right: -100px; top: -120px; pointer-events: none; }
  .hero-inner-bulletins { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .hero-breadcrumb-bulletins { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-bulletins a { color: var(--sand); text-decoration: none; }
  .hero-eyebrow-bulletins { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-bulletins::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-bulletins { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-bulletins em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-bulletins { font-size: 15.5px; color: rgba(250,250,250,0.7); line-height: 1.8; font-weight: 300; }

  /* Hero stat grid */
  .hero-stats-bulletins { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
  .hero-stat-bulletins { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
  .hero-stat-bulletins:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,110,0.4); transform: translateY(-3px); }
  .hero-stat-num-bulletins { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-label-bulletins { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.55); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 8px; }

  /* ── SUBSCRIBE BAND ── */
  .subscribe-band { background: var(--off-white); padding: 36px 5%; border-bottom: 1px solid var(--border); }
  .subscribe-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .subscribe-left h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; }
  .subscribe-left p { font-size: 14px; color: var(--text-mid); font-weight: 300; }
  .subscribe-channels { display: flex; gap: 10px; flex-wrap: wrap; }
  .ch-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 9px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.22s; }
  .ch-telegram { background: #229ED9; color: #fff; }
  .ch-telegram:hover { background: #1a8fc0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,158,217,0.35); }
  .ch-whatsapp { background: #25D366; color: #fff; }
  .ch-whatsapp:hover { background: #1dba58; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
  .ch-linkedin { background: #0077B5; color: #fff; }
  .ch-linkedin:hover { background: #005f91; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,181,0.35); }
  .ch-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .btn-subscribe { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 13px; padding: 11px 22px; border-radius: 8px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 14px rgba(232,184,75,0.3); }
  .btn-subscribe:hover { filter: brightness(1.06); transform: translateY(-2px); }

  /* ── ISSUE #7 FEATURED ── */
  .featured-section { padding: 72px 5%; background: var(--white); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 48px; }

  .issue7-card { background: var(--teal-dark); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(200,169,110,0.2); box-shadow: var(--shadow-lg); position: relative; }
  .issue7-card::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle,rgba(232,184,75,0.08) 0%,transparent 70%); right: -80px; top: -80px; pointer-events: none; }
  .issue7-latest { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35); color: #4ade80; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
  .issue7-latest::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 6px #4ade80; animation: pulse 2s infinite; }
  .issue7-body { padding: 48px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
  .issue7-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 8px; }
  .issue7-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
  .issue7-desc { font-size: 14px; color: rgba(250,250,250,0.65); line-height: 1.8; font-weight: 300; max-width: 600px; margin-bottom: 28px; }
  .issue7-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
  .i7stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 16px 14px; text-align: center; }
  .i7stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .i7stat-label { font-size: 11px; color: rgba(250,250,250,0.55); line-height: 1.4; margin-top: 6px; }
  .issue7-dl { display: flex; flex-direction: column; gap: 10px; min-width: 220px; justify-content: center; }
  .dl-btn { display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.22s; white-space: nowrap; }
  .dl-gold { background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); box-shadow: 0 4px 16px rgba(232,184,75,0.3); }
  .dl-gold:hover { filter: brightness(1.07); transform: translateY(-2px); }
  .dl-meta { font-size: 11px; color: rgba(250,250,250,0.4); text-align: center; line-height: 1.6; }

  /* ── EMERGENCY ── */
  .emergency-card { background: #fff5f5; border: 2px solid var(--emergency); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(198,40,40,0.1); }
  .emergency-header { background: var(--emergency); padding: 12px 24px; display: flex; align-items: center; gap: 12px; }
  .emg-badge-b { background: rgba(255,255,255,0.2); color: var(--text-mid); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.35); }
  .emg-date-b { color: var(--text-mid); font-size: 13px; font-weight: 500; }
  .emergency-body { padding: 28px 24px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
  .emg-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--emergency); margin-bottom: 6px; }
  .emg-sub { font-size: 13.5px; color: var(--text-mid); font-weight: 300; line-height: 1.6; }
  .emg-dls { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
  .dl-teal { background: var(--teal-dark); color: #fff; }
  .dl-teal:hover { background: var(--teal-mid); transform: translateY(-2px); }
  .dl-outline { background: var(--off-white); color: var(--teal-dark); border: 1.5px solid var(--border); }
  .dl-outline:hover { background: #e8e4de; transform: translateY(-2px); }

  /* ── ALL ISSUES GRID ── */
  .issues-section { padding: 72px 5%; background: var(--off-white); }
  .issues-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }

  .issue-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
  .issue-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .issue-card-top { padding: 24px 22px 18px; flex: 1; }
  .issue-top-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
  .issue-badge { display: inline-block; background: rgba(11,61,78,0.08); color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; }
  .issue-date { font-size: 12px; font-weight: 500; color: var(--text-light); }
  .issue-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--teal-dark); line-height: 1.35; margin-bottom: 6px; }
  .issue-sub { font-size: 12.5px; color: var(--text-mid); font-weight: 300; line-height: 1.5; }
  .issue-card-footer { padding: 14px 22px; border-top: 1px solid var(--border); background: var(--off-white); }
  .issue-dl { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-size: 12.5px; font-weight: 700; padding: 9px 18px; border-radius: 7px; text-decoration: none; transition: all 0.2s; }
  .issue-dl:hover { filter: brightness(1.07); transform: translateY(-1px); }

  /* ── SUBSCRIBE FORM ── */
  .sub-section { padding: 72px 5%; background: var(--white); }
  .sub-inner { max-width: 680px; margin: 0 auto; text-align: center; }
  .sub-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .sub-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 700; color: var(--teal-dark); margin-bottom: 12px; }
  .sub-desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 40px; }
  .sub-card { background: var(--teal-dark); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(200,169,110,0.2); text-align: left; }
  .sub-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 12px; font-weight: 600; color: rgba(250,250,250,0.7); letter-spacing: 0.04em; }
  .form-group input { padding: 11px 14px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--white); background: rgba(255,255,255,0.08); transition: border-color 0.2s; outline: none; }
  .form-group input:focus { border-color: var(--sand); }
  .form-group input::placeholder { color: rgba(250,250,250,0.35); }
  .form-submit { width: 100%; padding: 13px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-size: 14px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.25s; margin-top: 8px; }
  .form-submit:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,184,75,0.4); }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .issue7-body { grid-template-columns: 1fr; }
    .issue7-dl { flex-direction: row; flex-wrap: wrap; }
    .emergency-body { grid-template-columns: 1fr; }
    .emg-dls { flex-direction: row; flex-wrap: wrap; }
    .subscribe-inner { flex-direction: column; align-items: flex-start; }
    .issue7-stats { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 600px) {
    .issues-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .footer-top { flex-direction: column; }
    .issue7-stats { grid-template-columns: repeat(2,1fr); }
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
    --green: #16a34a; --green-bg: rgba(22,163,74,0.1); --green-border: rgba(22,163,74,0.3);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-training {
    min-height: 92vh; display: flex; align-items: center;
    padding: 140px 5% 80px;
    position: relative; overflow: hidden;
    background: var(--teal-dark);
  }
  .hero-bg-img-training {
    position: absolute; inset: 0;
    background-image: url('../images/trainning.jfif');
    background-size: cover; background-position: center;
    opacity: 0.18;
  }
  .hero-training::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,61,78,0.96) 0%,rgba(11,61,78,0.82) 60%,rgba(20,86,106,0.75) 100%); }
  .hero-training::after { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle,rgba(232,184,75,0.1) 0%,transparent 70%); right: -100px; top: -120px; pointer-events: none; }
  .hero-inner-training { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .hero-breadcrumb-training { font-size: 12px; color: rgba(250,250,250,0.5); margin-bottom: 16px; }
  .hero-breadcrumb-training a { color: var(--sand); text-decoration: none; }
  .hero-breadcrumb-training a:hover { text-decoration: underline; }
  .hero-eyebrow-training { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
  .hero-eyebrow-training::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-title-training { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-training em { font-style: normal; background: linear-gradient(90deg,var(--sand),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-training { font-size: 16px; color: rgba(250,250,250,0.72); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
  .hero-actions-training { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,184,75,0.3); }
  .btn-primary:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,184,75,0.45); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(250,250,250,0.3); color: var(--white); font-weight: 500; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; }
  .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(250,250,250,0.55); }

  /* Hero stats */
  .hero-stats-training { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat-training { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
  .hero-stat-training:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,169,110,0.4); transform: translateY(-3px); }
  .hero-stat-num-training { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-label-training { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.55); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 7px; }
  .hero-stat-sub-training { font-size: 11px; color: rgba(250,250,250,0.35); margin-top: 3px; line-height: 1.4; }

  /* ── SECTION BASE ── */
  .section { padding: 88px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 14px; }
  .section-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-weight: 300; max-width: 640px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--sand),var(--gold)); border-radius: 2px; margin: 14px 0 48px; }

  /* ── TUTORIAL SECTION ── */
  .tutorial-section { background: var(--off-white); }
  .tutorial-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .tutorial-video-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
  .tutorial-video-wrap img { width: 100%; display: block; }
  .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(11,61,78,0.4); transition: background 0.25s; cursor: pointer; text-decoration: none; }
  .play-overlay:hover { background: rgba(11,61,78,0.25); }
  .play-btn { width: 72px; height: 72px; background: rgba(232,184,75,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(0,0,0,0.35); transition: transform 0.25s; }
  .play-overlay:hover .play-btn { transform: scale(1.1); }
  .play-btn svg { width: 28px; height: 28px; fill: var(--teal-dark); margin-left: 4px; }
  .tutorial-badge { position: absolute; top: 16px; left: 16px; background: rgba(11,61,78,0.9); border: 1px solid rgba(200,169,110,0.4); color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 5px; backdrop-filter: blur(6px); }
  .tutorial-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; }
  .tutorial-text p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
  .tutorial-note { background: rgba(11,61,78,0.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 28px; }
  .tutorial-note strong { color: var(--teal-dark); font-weight: 600; }
  .btn-youtube { display: inline-flex; align-items: center; gap: 9px; background: #FF0000; color: #fff; font-weight: 600; font-size: 14px; padding: 13px 24px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 16px rgba(255,0,0,0.3); }
  .btn-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.4); }
  .btn-youtube svg { width: 20px; height: 20px; fill: currentColor; }

  /* ── PRICING ── */
  .pricing-section { background: var(--white); }
  .pricing-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-weight: 300; max-width: 580px; margin-bottom: 56px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }

  .plan-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; background: var(--white); }
  .plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
  .plan-card.featured { border-color: var(--teal-light); border-width: 2px; box-shadow: var(--shadow-md); position: relative; }
  .featured-ribbon { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--teal-dark); color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 20px; border-radius: 0 0 10px 10px; white-space: nowrap; }

  .plan-header { padding: 36px 28px 28px; background: var(--off-white); border-bottom: 1px solid var(--border); }
  .plan-card.featured .plan-header { background: var(--teal-dark); border-bottom-color: rgba(200,169,110,0.2); }
  .plan-tier { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
  .plan-card.featured .plan-tier { color: var(--gold); }
  .plan-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 6px; }
  .plan-card.featured .plan-name { color: var(--white); }
  .plan-duration { font-size: 13px; color: var(--text-light); font-weight: 400; margin-bottom: 20px; }
  .plan-card.featured .plan-duration { color: rgba(250,250,250,0.6); }
  .plan-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--teal-dark); line-height: 1; }
  .plan-card.featured .plan-price { color: var(--gold); }
  .plan-price-sub { font-size: 12px; color: var(--text-light); font-weight: 400; margin-top: 4px; }
  .plan-card.featured .plan-price-sub { color: rgba(250,250,250,0.5); }

  .plan-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
  .plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-mid); line-height: 1.45; }
  .plan-feature.included::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .plan-feature.excluded { color: var(--text-light); text-decoration: line-through; opacity: 0.5; }
  .plan-feature.excluded::before { content: '×'; color: var(--text-light); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

  .plan-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 20px; border-radius: 9px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.25s; text-align: center; }
  .plan-cta-outline { border: 2px solid var(--teal-dark); color: var(--teal-dark); }
  .plan-cta-outline:hover { background: var(--teal-dark); color: var(--white); }
  .plan-cta-gold { background: linear-gradient(135deg,var(--sand),var(--gold)); color: var(--teal-dark); box-shadow: 0 4px 16px rgba(232,184,75,0.3); }
  .plan-cta-gold:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.45); }
  .plan-cta-dark { background: var(--teal-dark); color: var(--white); }
  .plan-cta-dark:hover { background: var(--teal-mid); transform: translateY(-2px); }

  /* Compare table note */
  .compare-note { margin-top: 40px; background: rgba(11,61,78,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
  .compare-note strong { color: var(--teal-dark); font-weight: 600; }

  /* ── WHO IS IT FOR ── */
  .who-section { background: var(--teal-dark); }
  .who-section .section-eyebrow { color: var(--gold); }
  .who-section .section-title { color: var(--white); }
  .who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .who-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius-lg); padding: 32px 26px; transition: all 0.3s; }
  .who-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,169,110,0.35); transform: translateY(-4px); }
  .who-icon { font-size: 2rem; margin-bottom: 14px; }
  .who-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
  .who-desc { font-size: 13.5px; color: rgba(250,250,250,0.65); line-height: 1.7; font-weight: 300; }

  /* ── WHAT YOU LEARN ── */
  .learn-section { background: var(--off-white); }
  .learn-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
  .learn-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; transition: all 0.3s; }
  .learn-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .learn-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: rgba(11,61,78,0.08); line-height: 1; margin-bottom: -8px; }
  .learn-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
  .learn-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

  /* ── REGISTER SECTION ── */
  .register-section { background: var(--white); }
  .register-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .register-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; }
  .register-text p { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
  .register-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .register-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
  .register-bullets li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
  .register-card { background: var(--teal-dark); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(200,169,110,0.2); }
  .register-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .register-card p { font-size: 13.5px; color: rgba(250,250,250,0.6); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
  .register-options { display: flex; flex-direction: column; gap: 12px; }
  .register-opt { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(200,169,110,0.2); border-radius: 10px; padding: 16px 18px; text-decoration: none; transition: all 0.22s; }
  .register-opt:hover { background: rgba(255,255,255,0.12); border-color: rgba(200,169,110,0.4); transform: translateY(-2px); }
  .register-opt-icon { font-size: 1.6rem; flex-shrink: 0; }
  .register-opt-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
  .register-opt-text span { font-size: 12px; color: rgba(250,250,250,0.5); }

  /* ── FOOTER ── */
  footer { background: #071F27; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.35); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .who-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .tutorial-layout { grid-template-columns: 1fr; gap: 40px; }
    .register-layout { grid-template-columns: 1fr; }
    .learn-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .who-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal-dark: #0B3D4E; --teal-mid: #14566A; --teal-light: #1E7A94;
    --sand: #C8A96E; --gold: #E8B84B; --gold-light: #F5D68A;
    --white: #FAFAFA; --off-white: #F0EDE8;
    --text-dark: #1A2E35; --text-mid: #3D5A63; --text-light: #6B8A93;
    --border: rgba(11,61,78,0.12);
    --shadow-sm: 0 2px 12px rgba(11,61,78,0.08);
    --shadow-md: 0 8px 32px rgba(11,61,78,0.14);
    --shadow-lg: 0 20px 60px rgba(11,61,78,0.18);
    --radius: 12px; --radius-lg: 20px;
    --code-bg: #0d1117;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,61,78,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,169,110,0.2); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; }
  .nav-logo-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(250,250,250,0.8); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,169,110,0.15); }
  .nav-links .nav-cta a { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
  .nav-links .nav-cta a:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* ── HERO ── */
  .hero-platform {
    min-height: 100vh; padding: 130px 5% 80px;
    background: var(--code-bg);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  /* animated grid */
  .hero-grid-platform {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(30,122,148,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,122,148,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-glow-platform { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(30,122,148,0.18) 0%, transparent 65%); left: -100px; top: -100px; pointer-events: none; }
  .hero-glow2-platform { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,184,75,0.1) 0%, transparent 65%); right: -60px; bottom: -60px; pointer-events: none; }
  .hero-inner-platform { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

  .hero-eyebrow-platform { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,122,148,0.2); border: 1px solid rgba(30,122,148,0.4); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; color: #5BC8E8; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; font-family: 'JetBrains Mono', monospace; }
  .hero-eyebrow-platform::before { content: ''; width: 6px; height: 6px; background: #5BC8E8; border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }

  .hero-title-platform { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero-title-platform em { font-style: normal; background: linear-gradient(90deg, var(--sand), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .hero-desc-platform { font-size: 15px; color: rgba(250,250,250,0.6); line-height: 1.8; font-weight: 300; margin-bottom: 36px; max-width: 520px; }

  .hero-actions-platform { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
  .btn-launch { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #1E7A94, #14566A); color: #fff; font-weight: 600; font-size: 14px; padding: 14px 26px; border-radius: 9px; text-decoration: none; transition: all 0.25s; border: 1px solid rgba(91,200,232,0.3); box-shadow: 0 4px 24px rgba(30,122,148,0.4); }
  .btn-launch:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,122,148,0.55); }
  .btn-services { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: rgba(250,250,250,0.8); font-weight: 500; font-size: 14px; padding: 14px 26px; border-radius: 9px; text-decoration: none; transition: all 0.25s; border: 1px solid rgba(250,250,250,0.2); }
  .btn-services:hover { background: rgba(255,255,255,0.07); border-color: rgba(250,250,250,0.4); color: #fff; }

  /* Open access pill */
  .open-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 500; color: #4ade80; font-family: 'JetBrains Mono', monospace; }
  .open-pill::before { content: ''; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 6px #4ade80; }

  /* Hero stat panel */
  .hero-stats-platform { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat-card-platform { background: rgba(255,255,255,0.04); border: 1px solid rgba(91,200,232,0.15); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
  .hero-stat-card-platform:hover { background: rgba(255,255,255,0.07); border-color: rgba(91,200,232,0.3); transform: translateY(-3px); }
  .hero-stat-num-platform { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .hero-stat-label-platform { font-size: 11px; font-weight: 600; color: rgba(250,250,250,0.5); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 8px; }
  .hero-stat-sub-platform { font-size: 11px; color: rgba(250,250,250,0.3); margin-top: 3px; line-height: 1.4; font-family: 'JetBrains Mono', monospace; }

  /* Platform screenshot */
  .platform-screenshot { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(91,200,232,0.2); box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
  .platform-screenshot img { width: 100%; display: block; }
  .screenshot-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(13,17,23,0.5) 100%); }
  .screenshot-badge { position: absolute; top: 16px; left: 16px; background: rgba(13,17,23,0.85); border: 1px solid rgba(91,200,232,0.3); border-radius: 8px; padding: 8px 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #5BC8E8; backdrop-filter: blur(8px); }
  .download-manual { position: absolute; bottom: 16px; right: 16px; display: inline-flex; align-items: center; gap: 7px; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.4); color: var(--gold); font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 7px; text-decoration: none; transition: all 0.2s; backdrop-filter: blur(8px); }
  .download-manual:hover { background: rgba(232,184,75,0.25); }

  /* ── DATA SOURCES ── */
  .sources-band { background: #111820; padding: 28px 5%; border-top: 1px solid rgba(91,200,232,0.1); border-bottom: 1px solid rgba(91,200,232,0.1); }
  .sources-inner { max-width: 1200px; margin: 0 auto; }
  .sources-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,250,250,0.3); margin-bottom: 18px; font-family: 'JetBrains Mono', monospace; }
  .sources-grid { display: flex; flex-wrap: wrap; gap: 10px; }
  .source-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 14px; font-size: 12px; font-weight: 500; color: rgba(250,250,250,0.65); font-family: 'JetBrains Mono', monospace; transition: all 0.2s; }
  .source-tag:hover { background: rgba(91,200,232,0.1); border-color: rgba(91,200,232,0.3); color: #5BC8E8; }

  /* ── ABOUT ── */
  .about-section { padding: 96px 5%; background: var(--white); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
  .divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--sand), var(--gold)); border-radius: 2px; margin: 14px 0 40px; }

  .about-lead { font-size: 18px; font-weight: 600; color: var(--teal-dark); line-height: 1.6; max-width: 780px; margin-bottom: 48px; }

  .about-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .about-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; transition: all 0.3s; }
  .about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); background: var(--white); }
  .about-card-icon { font-size: 2rem; margin-bottom: 16px; }
  .about-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; }
  .about-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
  .about-card-meta { margin-top: 14px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--teal-light); }

  /* ── INDEX REFERENCE ── */
  .indices-section { padding: 96px 5%; background: var(--code-bg); }
  .indices-section .section-eyebrow { color: #5BC8E8; }
  .indices-section .section-title { color: var(--white); }
  .indices-note { font-size: 13.5px; color: rgba(250,250,250,0.55); line-height: 1.75; max-width: 700px; margin-bottom: 14px; font-weight: 300; }
  .indices-note strong { color: rgba(250,250,250,0.85); font-weight: 600; }
  .indices-coverage { font-size: 12px; font-family: 'JetBrains Mono', monospace; color: rgba(91,200,232,0.8); background: rgba(91,200,232,0.08); border: 1px solid rgba(91,200,232,0.2); border-radius: 8px; padding: 12px 16px; margin-bottom: 48px; line-height: 1.8; }

  .type-row { display: flex; gap: 12px; margin-bottom: 32px; }
  .type-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; }
  .type-dynamic { background: rgba(30,122,148,0.2); border: 1px solid rgba(30,122,148,0.4); color: #5BC8E8; }
  .type-static { background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.35); color: var(--sand); }

  .category-grid { display: flex; flex-direction: column; gap: 36px; }
  .category-block { }
  .category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .category-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); }
  .category-count { font-size: 10px; font-weight: 700; color: rgba(250,250,250,0.4); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
  .category-note { font-size: 12.5px; color: rgba(250,250,250,0.5); line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
  .index-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .index-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 500; color: rgba(250,250,250,0.75); font-family: 'JetBrains Mono', monospace; transition: all 0.2s; cursor: default; }
  .index-tag:hover { background: rgba(30,122,148,0.2); border-color: rgba(30,122,148,0.4); color: #5BC8E8; }
  .index-tag.static { border-color: rgba(200,169,110,0.3); color: var(--sand); }
  .index-tag.static:hover { background: rgba(200,169,110,0.12); }
  .tag-type { font-size: 9px; opacity: 0.6; }

  /* ── SMART DATE PRESETS ── */
  .presets-section { padding: 96px 5%; background: var(--off-white); }
  .preset-feature-card { background: var(--teal-dark); border-radius: var(--radius-lg); padding: 48px; border: 1px solid rgba(200,169,110,0.2); overflow: hidden; position: relative; }
  .preset-feature-card::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(91,200,232,0.08) 0%, transparent 70%); right: -100px; top: -100px; pointer-events: none; }
  .preset-new-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.35); color: #4ade80; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; }
  .preset-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .preset-desc { font-size: 14px; color: rgba(250,250,250,0.65); line-height: 1.75; max-width: 580px; margin-bottom: 32px; font-weight: 300; }

  .preset-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
  .preset-feature { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 22px 18px; }
  .preset-feature-icon { font-size: 1.5rem; margin-bottom: 10px; }
  .preset-feature-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .preset-feature-desc { font-size: 12px; color: rgba(250,250,250,0.55); line-height: 1.6; font-weight: 300; }

  /* Date preset demo */
  .preset-demo { background: rgba(0,0,0,0.3); border: 1px solid rgba(91,200,232,0.2); border-radius: var(--radius); padding: 24px; }
  .preset-demo-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,250,0.4); margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; }
  .preset-demo-title { font-size: 13px; color: rgba(250,250,250,0.6); margin-bottom: 12px; }
  .preset-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
  .preset-btn { padding: 8px 18px; background: rgba(30,122,148,0.3); border: 1px solid rgba(30,122,148,0.5); border-radius: 7px; color: #5BC8E8; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'JetBrains Mono', monospace; }
  .preset-btn:hover, .preset-btn.active { background: rgba(30,122,148,0.6); border-color: #5BC8E8; }
  .preset-dates { display: flex; gap: 20px; flex-wrap: wrap; }
  .preset-date-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 16px; }
  .preset-date-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,250,250,0.4); font-family: 'JetBrains Mono', monospace; margin-bottom: 4px; }
  .preset-date-value { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--white); font-weight: 500; }
  .preset-note { font-size: 12px; color: rgba(250,250,250,0.4); margin-top: 14px; line-height: 1.6; font-weight: 300; }
  .preset-coverage { margin-top: 20px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: rgba(250,250,250,0.4); line-height: 1.8; }

  /* ── HOW TO USE ── */
  .howto-section { padding: 96px 5%; background: var(--white); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .step-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
  .step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); background: var(--white); }
  .step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-mid), var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .step-card:hover::before { transform: scaleX(1); }
  .step-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: rgba(11,61,78,0.08); line-height: 1; margin-bottom: -10px; }
  .step-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; }
  .step-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
  .howto-note { margin-top: 32px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; font-size: 13px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
  .howto-note strong { color: var(--teal-dark); font-weight: 600; }

  /* ── PROFESSIONAL SERVICES ── */
  .services-section { padding: 96px 5%; background: var(--off-white); }
  .services-lead { font-size: 16px; color: var(--text-mid); line-height: 1.75; max-width: 680px; margin-bottom: 48px; font-weight: 300; }
  .services-lead em { font-style: italic; color: var(--teal-dark); font-weight: 500; }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; display: flex; flex-direction: column; }
  .svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .svc-icon { font-size: 1.6rem; margin-bottom: 14px; }
  .svc-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
  .svc-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; font-weight: 300; flex: 1; }
  .svc-audience { margin-top: 16px; font-size: 11px; font-weight: 600; color: var(--text-light); }
  .svc-price { margin-top: 12px; font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--teal-light); background: rgba(30,122,148,0.08); padding: 5px 10px; border-radius: 5px; display: inline-block; }

  /* ── TEAM / BUILT BY ── */
  .builtby-section { padding: 96px 5%; background: var(--teal-dark); }
  .builtby-section .section-eyebrow { color: var(--gold); }
  .builtby-section .section-title { color: var(--white); }
  .builtby-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .builtby-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius-lg); padding: 32px 26px; transition: all 0.3s; }
  .builtby-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,169,110,0.35); transform: translateY(-4px); }
  .builtby-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
  .builtby-role { font-size: 12px; font-weight: 600; color: rgba(250,250,250,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
  .builtby-desc { font-size: 13.5px; color: rgba(250,250,250,0.65); line-height: 1.7; font-weight: 300; }
  .builtby-link { display: inline-block; margin-top: 14px; font-size: 12px; font-family: 'JetBrains Mono', monospace; color: #5BC8E8; text-decoration: none; transition: opacity 0.2s; }
  .builtby-link:hover { opacity: 0.7; }

  /* ── MANUAL ── */
  .manual-section { padding: 96px 5%; background: var(--white); }
  .manual-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; max-width: 620px; margin-bottom: 48px; font-weight: 300; }
  .chapters-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
  .chapter-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; }
  .chapter-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); background: var(--white); }
  .chapter-num { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); font-family: 'JetBrains Mono', monospace; margin-bottom: 10px; }
  .chapter-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
  .chapter-desc { font-size: 12.5px; color: var(--text-mid); line-height: 1.65; font-weight: 300; }
  .manual-dl { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--sand), var(--gold)); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,184,75,0.3); }
  .manual-dl:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,184,75,0.45); }

  /* ── FINAL CTA ── */
  .cta-section { padding: 96px 5%; background: var(--code-bg); text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,122,148,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(30,122,148,0.05) 1px,transparent 1px); background-size: 60px 60px; }
  .cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(30,122,148,0.15) 0%,transparent 65%); left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none; }
  .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
  .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
  .cta-desc { font-size: 15px; color: rgba(250,250,250,0.6); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
  .cta-checks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
  .cta-check { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(250,250,250,0.5); font-family: 'JetBrains Mono', monospace; }
  .cta-check::before { content: '✓'; color: #4ade80; font-weight: 700; }

  /* ── FOOTER ── */
  footer { background: #040b0f; padding: 48px 5% 32px; border-top: 1px solid rgba(200,169,110,0.15); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .footer-brand-icon { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; }
  .footer-brand-text strong { font-family: 'Playfair Display', serif; display: block; color: var(--white); font-size: 15px; }
  .footer-brand-text span { font-size: 10px; color: var(--sand); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-links-col { display: flex; flex-direction: column; gap: 10px; }
  .footer-links-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,250,0.35); margin-bottom: 4px; }
  .footer-links-col a { font-size: 13px; color: rgba(250,250,250,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--sand); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(250,250,250,0.3); }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1024px) {
    .about-cards { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .chapters-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .builtby-grid { grid-template-columns: repeat(2,1fr); }
    .preset-features { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; } .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(11,61,78,0.98); padding: 16px; gap: 4px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 600px) {
    .about-cards, .services-grid, .chapters-grid, .steps-grid, .builtby-grid, .preset-features { grid-template-columns: 1fr; }
    .cta-checks { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; }
  }