
 /* ── CSS Variables ─────────────────────────────── */
  :root {
    --navy:       #0b1f3a;
    --navy-mid:   #122b50;
    --navy-soft:  #1a3a6b;
    --sky:        #1a56e8;
    --sky-light:  #3d72f5;
    --sky-pale:   #dce8fd;
    --sky-mist:   #eef2fd;
    --slate:      #2d4db5;
    --cream:      #f7f4ef;
    --white:      #ffffff;
    --ink:        #0b1f3a;
    --muted:      #6b8099;
    --border:     #dce8f4;
    --gold:       #5bb8f5;  /* replaced yellow with sky blue */

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 4px 32px rgba(11,31,58,0.08);
    --shadow-hover: 0 12px 48px rgba(11,31,58,0.15);
  }

  /* ── Reset ──────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── Scrollbar ─────────────────────────────────── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--sky-mist); }
  ::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

  /* ── Utility ────────────────────────────────────── */
  .tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--sky-pale);
    padding: 0.38em 1.1em;
    border-radius: 100px;
    border: 1px solid var(--sky-light);
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85em 2em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
  }
  .btn-primary:hover {
    background: var(--navy-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,31,58,0.25);
  }
  .btn-sky {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sky);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85em 2em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
  }
  .btn-sky:hover {
    background: var(--sky-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58,155,213,0.35);
  }
  .section-pad { padding: 100px 0; }
  .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── NAV ────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(11,31,58,0.08); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .nav-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-icon svg { width: 18px; height: 18px; fill: white; }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
  }
  .nav-logo-text span { color: var(--sky); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--sky);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s var(--ease-out);
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--sky);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.65em 1.6em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--sky-light); transform: translateY(-1px); }
  .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

  /* ── HERO ───────────────────────────────────────── */
  .hero-wrapper {
    margin-top: 100px;
    margin-left: 15px;
    margin-right:15px;
    border-radius: 32px 32px 0 0; 
    box-shadow: 20px;
    overflow: hidden; 
  }

  #hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sky-mist) 0%, var(--cream) 60%, var(--sky-pale) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 72px;
  }
  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
  }
  .hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
    top: -200px; right: -100px;
  }
  .hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--slate) 0%, transparent 70%);
    bottom: -100px; left: -80px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
  }
  .hero-tag { margin-bottom: 1.5rem; }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--sky);
  }
  .hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-avatars {
    display: flex;
  }
  .hero-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
  }
  .hero-avatar:not(:first-child) { margin-left: -10px; }
  .hero-proof-text { font-size: 0.88rem; color: var(--muted); }
  .hero-proof-text strong { color: var(--navy); font-weight: 600; }
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-img-wrap {
    position: relative;
    width: 420px; height: 520px;
  }
  .hero-circle {
    position: absolute;
    bottom: 30px; right: -20px;
    width: 320px; height: 320px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--navy-soft) 100%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero-photo {
    position: absolute;
    bottom: 0; left: 20px;
    width: 480px; height: 490px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    z-index: 1;
    background: linear-gradient(160deg, var(--sky-pale) 0%, var(--sky) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-photo-placeholder {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1;
  }
  .hero-badge {
    position: absolute;
    top: -25px; right: -10px;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 8px 32px rgba(11,31,58,0.12);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatBadge 4s ease-in-out infinite;
  }
  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-badge-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--sky-pale), var(--sky));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .hero-badge-text { font-size: 0.78rem; color: var(--muted); }
  .hero-badge-text strong { display: block; font-size: 1.1rem; color: var(--navy); font-weight: 700; }
  .hero-dot-grid {
    position: absolute;
    bottom: -20px; left: -30px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, var(--sky) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.4;
    z-index: 0;
  }
  /* scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0.5;
    animation: bounce 2s ease-in-out infinite;
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
  .hero-scroll span { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--navy); }
  .hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--sky), transparent); }

  /* ── ROAD MAP ───────────────────────────────────── */
  #roadmap { background: var(--white); }
  .roadmap-header { text-align: center; margin-bottom: 70px; }
  .roadmap-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-top: 1rem;
    line-height: 1.2;
  }
  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }
  .roadmap-grid::before {
    content: '';
    position: absolute;
    top: 46px;
    left: calc(16.67% + 40px);
    right: calc(16.67% + 40px);
    height: 2px;
    background: linear-gradient(to right, var(--sky-pale), var(--sky), var(--sky-pale));
  }
  .roadmap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  }
  .roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-light);
  }
  .roadmap-num {
    position: absolute;
    top: -18px; left: 2rem;
    width: 36px; height: 36px;
    background: var(--sky);
    color: white;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(58,155,213,0.4);
  }
  .roadmap-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sky-mist), var(--sky-pale));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.8rem;
    font-size: 2rem;
    transition: background 0.3s;
  }
  .roadmap-card:hover .roadmap-icon {
    background: linear-gradient(135deg, var(--sky-pale), var(--sky-light));
  }
  .roadmap-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
  }
  .roadmap-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

  /* ── ABOUT ──────────────────────────────────────── */

  .about-wrapper{
        border-radius: 24px 24px 0 0; 
        box-shadow: 30px;
        overflow: hidden;
        margin: 15px;
      }
  

  #about { background: var(--sky-mist); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    object-fit: cover;
    object-position: center top;
    display: block;
}
  .about-deco-waves {
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    opacity: 0.6;
  }
  .about-deco-dots {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, var(--sky) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.4;
  }
  .about-content .tag { margin-bottom: 1.5rem; }
  .about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .about-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .about-stat {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  .about-stat:hover { box-shadow: var(--shadow-card); }
  .about-stat .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .about-stat .stat-label { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

  /* ── SERVICES ───────────────────────────────────── */
  #services { background: var(--white); }
  .services-header { margin-bottom: 60px; }
  .services-header .tag { margin-bottom: 1rem; }
  .services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    max-width: 460px;
    margin-bottom: 1rem;
  }
  .services-header p { font-size: 0.95rem; color: var(--muted); max-width: 420px; line-height: 1.7; }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }
  .services-cta { margin-top: 2rem; }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .service-card {
    background: var(--sky-mist);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sky), var(--navy-soft));
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
    transform-origin: left;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky-pale), var(--sky-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* ── EXPERIENCE ─────────────────────────────────── */
  .experience-wrapper{
    border-radius: 24px 24px 0 0; 
    box-shadow: 30px;
    overflow: hidden;
    margin: 15px;
  }

  #experience {
    background: linear-gradient(160deg, var(--sky-mist) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
  }
  #experience::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(58,155,213,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .exp-header { text-align: center; margin-bottom: 70px; }
  .exp-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-top: 1rem;
  }
  .exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .exp-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.6rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  }
  .exp-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--sky), var(--navy-soft));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .exp-card:hover::after { opacity: 1; }
  .exp-logo {
    width: 48px; height: 48px;
    background: var(--sky-pale);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .exp-card h3 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  .exp-badge {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3em 0.9em;
    border-radius: 100px;
    margin-bottom: 0.8rem;
  }
  .exp-years {
    font-size: 0.85rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
  }
  .exp-years strong { color: var(--sky); }

  /* ── QUALIFICATIONS ─────────────────────────────── */
  #qualifications {
    background: var(--white);
  }
  .qual-header { text-align: center; margin-bottom: 70px; }
  .qual-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-top: 1rem;
  }
  .qual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .qual-card {
    background: var(--sky-mist);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .qual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .qual-watermark {
    position: absolute;
    bottom: -10px; right: -10px;
    width: 80px; height: 80px;
    background: radial-gradient(circle, var(--sky-pale) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .qual-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .qual-badge {
    display: inline-block;
    background: var(--sky);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.3em 0.9em;
    border-radius: 100px;
    margin-bottom: 0.8rem;
  }
  .qual-date {
    font-size: 0.83rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 0.7rem;
    margin-top: 0.3rem;
  }
  .qual-date strong { color: var(--sky); }

  /* ── CONTACT ────────────────────────────────────── */
  .contact-wrapper{
    border-radius: 24px 24px 0 0; 
    box-shadow: 30px;
    overflow: hidden;
    margin: 15px;
  }

  #contact { background: var(--sky-mist); }
  .contact-top { margin-bottom: 60px; }
  .contact-top .tag { margin-bottom: 1rem; }
  .contact-top h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.8rem;
    max-width: 500px;
  }
  .contact-top p { font-size: 0.95rem; color: var(--muted); max-width: 400px; line-height: 1.7; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .contact-info > p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
  .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }
  .contact-item-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sky-pale), var(--sky-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-item-body { font-size: 0.9rem; }
  .contact-item-body strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.2rem; }
  .contact-item-body span { color: var(--muted); line-height: 1.5; }

  /* form */
  .contact-form-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .contact-form-wrap::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(91,184,245,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.8rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; position: relative; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.9em 1.2em;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--sky);
    background: rgba(255,255,255,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    width: 100%;
    background: var(--sky);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 1em;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    position: relative;
    z-index: 1;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--sky-light); transform: translateY(-2px); }
  .form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
  #form-status {
    margin-top: 1rem;
    font-size: 0.88rem;
    text-align: center;
    min-height: 20px;
    color: var(--sky-light);
  }

  /* ── FOOTER ─────────────────────────────────────── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: 40px 0;
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
  }
  .footer-logo span { color: var(--sky); }
  .footer-copy { font-size: 0.82rem; }
  .footer-links { display: flex; gap: 1.5rem; list-style: none; }
  .footer-links a { font-size: 0.82rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sky-light); }

  /* ── HERO MOBILE IMAGE ──────────────────────────── */
  .hero-visual-mobile { display: none; }
  .hero-photo-mobile {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    margin-top: 2rem;
    display: block;
  }

  /* ── SERVICES SIDE IMAGE ────────────────────────── */
  .services-side-img {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .services-img {
    width: 100%;
    aspect-ratio: 4/5.5;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s var(--ease-out);
  }
  .services-side-img:hover .services-img { transform: scale(1.03); }

  /* ── MOBILE ─────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid, .services-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-visual-mobile { display: block; }
    .roadmap-grid { grid-template-columns: 1fr; }
    .roadmap-grid::before { display: none; }
    .exp-grid, .qual-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .section-pad { padding: 70px 0; }
    .exp-grid, .qual-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
  }

  /* Mobile nav open */
  .nav-mobile {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(11,31,58,0.1);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
  }