:root {
    --navy: #0a1628;
    --navy-mid: #102040;
    --blue: #1a4a9a;
    --blue-bright: #1e5bbf;
    --gold: #f5a623;
    --gold-light: #ffc145;
    --white: #ffffff;
    --light-gray: #f4f6fb;
    --gray: #6b7a99;
    --text: #2c3e6b;
    --border: #dde3f0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--navy);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .nav-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; font-size: 16px; color: white;
    letter-spacing: -1px;
  }
  .nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 18px; color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-text span { display: block; font-size: 10px; font-weight: 400; color: var(--gold); letter-spacing: 2px; }

  .nav-links {
    display: flex; align-items: center; gap: 6px;
    list-style: none;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px; font-weight: 500;
    padding: 8px 12px; border-radius: 4px;
    display: flex; align-items: center; gap: 4px;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
  }
  .nav-links > li > a:hover { color: var(--gold); background: rgba(255,255,255,0.07); }
  .nav-links > li > a.active { color: var(--gold); }

  .dropdown { position: relative; }
  .dropdown-menu {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: white; min-width: 220px;
    border-radius: 8px; box-shadow: 0 8px 32px rgba(10,22,40,0.18);
    padding: 8px 0; z-index: 200;
    border-top: 3px solid var(--gold);
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu li { list-style: none; }
  .dropdown-menu li a {
    display: block; padding: 9px 20px;
    font-size: 13px; color: var(--text);
    text-decoration: none; transition: all 0.15s;
    font-family: 'Open Sans', sans-serif;
  }
  .dropdown-menu li a:hover { background: var(--light-gray); color: var(--blue); padding-left: 26px; }

  .has-sub { position: relative; }
  .has-sub > .sub-menu {
    display: none; position: absolute; left: 100%; top: 0;
    background: white; min-width: 220px;
    border-radius: 8px; box-shadow: 0 8px 32px rgba(10,22,40,0.18);
    padding: 8px 0;
    border-top: 3px solid var(--blue);
  }
  .has-sub:hover > .sub-menu { display: block; }
  .has-sub > a::after { content: ' ›'; }

  .nav-cta {
    background: var(--gold) !important; color: var(--navy) !important;
    font-weight: 700 !important; border-radius: 6px !important;
    padding: 8px 18px !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  /* ── HERO ── */
  .hero {
    margin-top: 70px;
    background: var(--navy);
    min-height: 560px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,74,154,0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.1) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 60px 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
    color: var(--gold); font-size: 11px; font-weight: 700;
    padding: 6px 14px; border-radius: 20px; letter-spacing: 1.5px;
    margin-bottom: 20px; font-family: 'Montserrat', sans-serif;
  }
  .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px; font-weight: 900; color: white;
    line-height: 1.15; margin-bottom: 20px;
  }
  .hero h1 span { color: var(--gold); }
  .hero p {
    color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7;
    margin-bottom: 32px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 13px 28px; border-radius: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    text-decoration: none; transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(245,166,35,0.35);
    display: inline-block; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
  .btn-outline {
    background: transparent; color: white;
    padding: 13px 28px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.35);
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 24px 20px; text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
  }
  .stat-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-3px); }
  .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px; font-weight: 900; color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }

  /* ── FEATURES BAR ── */
  .features-bar {
    background: var(--blue);
    padding: 20px 40px;
  }
  .features-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .feature-item {
    display: flex; align-items: center; gap: 10px;
    color: white; font-size: 13px; font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }
  .feature-item .fi { font-size: 20px; }

  /* ── SECTION COMMONS ── */
  section { padding: 80px 40px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 15px; color: var(--gray); line-height: 1.7;
    max-width: 600px;
  }
  .section-header { margin-bottom: 48px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-sub { margin: 0 auto; }

  /* ── PAGE HEADER (inner pages banner) ── */
  .page-header {
    margin-top: 70px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 64px 40px;
  }
  .page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26,74,154,0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 90%, rgba(245,166,35,0.12) 0%, transparent 50%);
  }
  .page-header-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
  }
  .breadcrumbs {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 18px; flex-wrap: wrap;
  }
  .breadcrumbs a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .breadcrumbs a:hover { color: var(--gold); }
  .breadcrumbs .sep { color: rgba(255,255,255,0.25); }
  .breadcrumbs .current { color: var(--gold); }
  .page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px; font-weight: 900; color: white;
    line-height: 1.2; margin-bottom: 14px; max-width: 760px;
  }
  .page-header h1 span { color: var(--gold); }
  .page-header p {
    color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7;
    max-width: 640px;
  }

  /* ── SERVICES TAB ── */
  .services-section { background: var(--light-gray); }
  .services-tabs {
    display: flex; gap: 0; flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
  }
  .tab-btn {
    padding: 14px 22px; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--gray);
    border: none; background: none; cursor: pointer;
    border-bottom: 3px solid transparent; margin-bottom: -2px;
    transition: all 0.2s; white-space: nowrap;
  }
  .tab-btn.active { color: var(--blue); border-bottom-color: var(--gold); }
  .tab-btn:hover { color: var(--blue); }

  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

  .service-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 16px;
  }
  .service-text p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
  .service-points { list-style: none; margin-bottom: 28px; }
  .service-points li {
    padding: 7px 0; font-size: 14px; color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .service-points li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  .service-img-box {
    background: var(--navy);
    border-radius: 16px; overflow: hidden;
    min-height: 300px; position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .service-img-box img {
    width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  }
  .service-icon-big { font-size: 80px; opacity: 0.9; position: relative; z-index: 1; }
  .service-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,22,40,0.9));
    padding: 24px 20px; z-index: 2;
    color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  }

  /* ── WHY CHOOSE ── */
  .why-section { background: white; }
  .why-intro {
    max-width: 760px; margin-bottom: 60px;
  }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-bottom: 60px;
  }
  .why-card {
    background: var(--light-gray);
    border-radius: 14px; padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(10,22,40,0.1); }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon { font-size: 36px; margin-bottom: 16px; }
  .why-card h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 16px; color: var(--navy); margin-bottom: 10px;
  }
  .why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

  /* Approach steps */
  .approach-section { background: var(--navy); padding: 80px 40px; }
  .approach-title { color: white; }
  .approach-sub { color: rgba(255,255,255,0.6) !important; }
  .steps-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    margin-top: 48px; position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
  }
  .step-item { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
  .step-circle {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--navy); border: 3px solid var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px;
    color: var(--gold); transition: all 0.3s;
  }
  .step-item:hover .step-circle { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .step-label {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.3;
  }

  /* ── INDUSTRIES ── */
  .industries-section { background: var(--light-gray); }
  .ind-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .ind-card {
    background: white; border-radius: 12px;
    padding: 28px 20px; text-align: center;
    border: 1px solid var(--border); transition: all 0.3s;
    cursor: default; text-decoration: none; display: block;
  }
  .ind-card:hover {
    transform: translateY(-5px); border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(10,22,40,0.1);
  }
  .ind-icon { font-size: 40px; margin-bottom: 12px; }
  .ind-card h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 13px; color: var(--navy); margin-bottom: 6px;
  }
  .ind-card p { font-size: 12px; color: var(--gray); }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: white; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testi-card {
    background: var(--light-gray); border-radius: 14px;
    padding: 32px 28px; border: 1px solid var(--border);
    position: relative; transition: all 0.3s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(10,22,40,0.1); }
  .testi-card::before {
    content: '"'; font-size: 80px; font-family: Georgia, serif;
    color: var(--gold); opacity: 0.3; position: absolute;
    top: 10px; left: 20px; line-height: 1;
  }
  .testi-text {
    font-size: 14px; color: var(--text); line-height: 1.8;
    margin-bottom: 24px; padding-top: 10px; position: relative; z-index: 1;
  }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 800; color: white; font-size: 16px;
  }
  .testi-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); }
  .testi-role { font-size: 12px; color: var(--gray); }

  /* ── CERTS ── */
  .certs-section { background: var(--navy); padding: 50px 40px; }
  .certs-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px;
  }
  .certs-left h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: white; margin-bottom: 6px; }
  .certs-left p { color: rgba(255,255,255,0.6); font-size: 14px; }
  .cert-badges { display: flex; gap: 20px; flex-wrap: wrap; }
  .cert-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px; padding: 14px 22px; text-align: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 12px; color: white; letter-spacing: 1px;
    transition: all 0.3s;
  }
  .cert-badge:hover { background: rgba(245,166,35,0.15); border-color: var(--gold); color: var(--gold); }
  .cert-badge span { display: block; font-size: 20px; margin-bottom: 4px; }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    padding: 80px 40px; text-align: center;
  }
  .cta-section h2 {
    font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 900;
    color: white; margin-bottom: 16px;
  }
  .cta-section p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 36px; }

  /* ── FOOTER ── */
  footer { background: #050e1f; padding: 60px 40px 0; }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px;
  }
  .footer-brand h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px;
    color: white; margin-bottom: 14px;
  }
  .footer-brand p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none;
    transition: all 0.2s;
  }
  .social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

  .footer-col h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
    color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none;
    transition: all 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

  .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
  .footer-contact-item .fci { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .footer-contact-item span { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { color: rgba(255,255,255,0.35); font-size: 12px; text-decoration: none; }
  .footer-links a:hover { color: var(--gold); }

  /* ── CONTACT MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(5,14,31,0.75); backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white; border-radius: 16px; padding: 40px;
    width: 90%; max-width: 480px; position: relative;
    box-shadow: 0 24px 80px rgba(5,14,31,0.4);
    max-height: 90vh; overflow-y: auto;
  }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--light-gray); border: none; border-radius: 50%;
    width: 32px; height: 32px; cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center; color: var(--gray);
  }
  .modal-close:hover { background: var(--border); }
  .modal h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 22px; color: var(--navy); margin-bottom: 6px;
  }
  .modal p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: 'Open Sans', sans-serif; color: var(--text);
    transition: border-color 0.2s; outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--blue);
  }
  .form-group textarea { min-height: 90px; resize: vertical; }
  .form-error {
    font-size: 12px; color: #c0392b; margin-top: 4px; display: none;
  }
  .form-group.has-error input,
  .form-group.has-error textarea,
  .form-group.has-error select { border-color: #c0392b; }
  .form-group.has-error .form-error { display: block; }
  .form-note { font-size: 12px; color: var(--gray); margin-top: 14px; line-height: 1.6; }
  .btn-submit {
    width: 100%; background: var(--blue); color: white;
    border: none; padding: 14px; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: all 0.2s;
  }
  .btn-submit:hover { background: var(--navy); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .form-success {
    display: none; text-align: center; padding: 20px 0;
  }
  .form-success.show { display: block; }
  .form-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(245,166,35,0.15); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 16px;
  }

  /* ── ABOUT PAGE EXTRAS ── */
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 60px; }
  .mv-card {
    background: var(--light-gray); border-radius: 14px; padding: 36px 32px;
    border: 1px solid var(--border); position: relative; overflow: hidden;
  }
  .mv-card::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--blue), var(--gold));
  }
  .mv-card .mv-icon { font-size: 32px; margin-bottom: 14px; }
  .mv-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
  .mv-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }

  .story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; margin-bottom: 20px; }
  .story-text p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
  .story-img-box {
    background: var(--navy); border-radius: 16px; min-height: 360px;
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  }
  .story-img-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .team-card {
    background: white; border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; transition: all 0.3s; text-align: center;
  }
  .team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(10,22,40,0.1); border-color: var(--gold); }
  .team-photo {
    width: 100%; aspect-ratio: 1/1; background: var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: var(--gray); overflow: hidden;
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-info { padding: 18px 16px; }
  .team-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
  .team-role { font-size: 12px; color: var(--gold); font-weight: 600; }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: repeat(4,1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .ind-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .steps-grid::before { display: none; }
    .tab-panel.active { grid-template-columns: 1fr; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 60px 20px; }
    .mv-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .page-header { padding: 48px 20px; }
  }
  @media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    .section-title { font-size: 26px; }
    .why-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .certs-inner { flex-direction: column; }
    .cta-section h2 { font-size: 26px; }
    .page-header h1 { font-size: 28px; }
    .team-grid { grid-template-columns: 1fr; }
  }

  /* Scroll animation */
  .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }