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

  :root {
    --ink: #0e3d52;
    --paper: #eef6fb;
    --warm-white: #f5fafd;
    --accent: #177399;
    --accent-deep: #0e5470;
    --mid: #4090ad;
    --muted: #5a8fa6;
    --rule: rgba(23,115,153,0.15);
    --gap: clamp(60px, 8vw, 120px);
    --blue-1: #177399;
    --blue-2: #4090ad;
    --blue-3: #7ab0c8;
    --blue-4: #9dc5dc;
    --blue-5: #c8e0f0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* TYPOGRAPHY */
  h1, h2, h3 { font-family: 'Roboto', sans-serif; line-height: 1.15; }
  h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 900; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
  h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

  /* LAYOUT */
  .container { max-width: 1100px; margin: auto; padding: 0 clamp(20px, 5vw, 60px); }
  .section { padding: var(--gap) 0; }
  .rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(238,246,251,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 16px 0;
  }
  nav .inner { display: flex; justify-content: space-between; align-items: center; }
  .nav-brand { font-family: 'Roboto', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; color: var(--ink); text-decoration: none; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--muted); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { background: var(--ink); color: var(--paper) !important; padding: 8px 18px; border-radius: 4px; }
  .nav-cta:hover { background: var(--mid); color: var(--warm-white) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 60px) clamp(40px, 8vw, 100px) clamp(20px, 6vw, 80px);
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--blue-2); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--blue-2); }
  .hero h1 em { font-style: italic; color: var(--blue-2); }
  .hero-sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); max-width: 420px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-block; padding: 14px 28px; background: var(--ink); color: var(--paper);
    text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
    border-radius: 4px; transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--mid); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-block; padding: 14px 28px; border: 1px solid var(--ink); color: var(--ink);
    text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
    border-radius: 4px; transition: all 0.2s;
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }

  .hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: 500px;
  }
  .hero-right svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

  /* STATS STRIP */
  .stats {
    background: var(--blue-1); color: #eef6fb;
    padding: clamp(32px, 5vw, 48px) 0;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  }
  .stat-item {
    text-align: center; padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Roboto', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--blue-5); display: block; }
  .stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

  /* SERVICES */
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 20px; flex-wrap: wrap; }
  .services-header p { max-width: 380px; color: var(--muted); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card {
    background: var(--warm-white); padding: 36px 28px;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, transform 0.2s;
    cursor: default;
  }
  .service-card:hover { border-top-color: var(--blue-2); transform: translateY(-3px); }
  .service-icon { margin-bottom: 20px; }
  .service-card h3 { margin-bottom: 10px; }
  .service-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
  .service-list { list-style: none; padding: 0; }
  .service-list li { font-size: 0.88rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 8px; }
  .service-list li:last-child { border-bottom: none; }
  .service-list li::before { content: '→'; color: var(--blue-1); font-size: 0.8rem; }

  /* PROCESS */
  .process-section { background: var(--blue-1); color: #eef6fb; }
  .process-section h2 { color: #eef6fb; }
  .process-intro { color: rgba(238,246,251,0.7); max-width: 500px; margin-bottom: 64px; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, var(--blue-5) 0%, rgba(200,224,240,0.2) 100%);
    pointer-events: none;
  }
  .step { padding: 0 20px 0 0; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--blue-5); display: flex; align-items: center; justify-content: center;
    font-family: 'Roboto', sans-serif; font-size: 1.2rem; font-weight: 700;
    color: var(--blue-5); margin-bottom: 24px; background: var(--blue-1);
    position: relative; z-index: 1;
  }
  .step h3 { color: #eef6fb; margin-bottom: 10px; }
  .step p { color: rgba(238,246,251,0.6); font-size: 0.9rem; }

  /* CLIENTS */
  .clients-section { background: var(--blue-5); }
  .clients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
  .client-card {
    background: var(--warm-white); padding: 36px 32px;
    position: relative; overflow: hidden;
  }
  .client-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--blue-2);
  }
  .client-card h3 { margin-bottom: 10px; }
  .client-card p { color: var(--muted); font-size: 0.92rem; }

  /* PRICING */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
  .price-card {
    background: var(--warm-white); padding: 40px 28px;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: border-color 0.25s;
  }
  .price-card.featured {
    background: var(--blue-1); color: #eef6fb;
    border-bottom-color: var(--blue-4);
  }
  .price-card.featured .price-range { color: var(--blue-5); }
  .price-card.featured p, .price-card.featured li { color: rgba(238,246,251,0.7) !important; }
  .price-tier { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-2); font-weight: 500; margin-bottom: 12px; }
  .price-card.featured .price-tier { color: var(--blue-4); }
  .price-range { font-family: 'Roboto', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; margin-bottom: 12px; }
  .price-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }
  .price-includes { list-style: none; padding: 0; border-top: 1px solid var(--rule); padding-top: 20px; }
  .price-includes li { font-size: 0.85rem; color: var(--muted); padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; }
  .price-includes li::before { content: '✓'; color: var(--blue-2); flex-shrink: 0; font-weight: 700; }
  .price-card.featured .price-includes { border-top-color: rgba(255,255,255,0.2); }

  /* TRANSFORMATION SVG SECTION */
  .transform-section { background: var(--paper); }
  .transform-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .transform-text .eyebrow { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-1); font-weight: 500; margin-bottom: 16px; }
  .transform-text h2 { margin-bottom: 20px; }
  .transform-text p { color: var(--muted); margin-bottom: 20px; }
  .transform-text ul { list-style: none; padding: 0; }
  .transform-text ul li { padding: 8px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 10px; align-items: center; font-size: 0.92rem; }
  .transform-text ul li::before { content: '→'; color: var(--blue-1); }
  .transform-text ul li:last-child { border-bottom: none; }

  /* CONTACT */
  .contact-section { background: var(--blue-1); color: #eef6fb; }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
  .contact-left h2 { color: #eef6fb; margin-bottom: 20px; }
  .contact-left p { color: rgba(238,246,251,0.7); margin-bottom: 36px; max-width: 400px; }
  .contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; font-size: 0.9rem; color: rgba(238,246,251,0.7); }
  .contact-detail strong { color: #eef6fb; }
  .contact-right { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 40px; border-radius: 4px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(238,246,251,0.6); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: #eef6fb; padding: 12px 16px; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; border-radius: 4px; outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-4); }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-group select option { background: var(--blue-1); }
  .btn-submit {
    width: 100%; padding: 14px; background: var(--blue-4); color: var(--blue-1);
    border: none; font-family: 'Inter', sans-serif; font-size: 0.92rem;
    font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
    border-radius: 4px; cursor: pointer; transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--blue-5); color: var(--blue-1); }

  /* FOOTER */
  footer {
    background: #0a2a38; color: rgba(255,255,255,0.4);
    padding: 32px 0; font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  footer .foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  footer span { color: rgba(255,255,255,0.25); }
  footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  /* ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* MOBILE NAV */
  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 20px clamp(20px, 5vw, 60px); border-bottom: 1px solid var(--rule); gap: 16px; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }
    nav .inner { position: relative; }
  }

  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 300px; order: -1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .clients-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .transform-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:last-child { border-bottom: none; }
  }
  @media (max-width: 580px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; }
    .services-header { flex-direction: column; }
  }