/* ──  Reset & Base ──────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #0B1B3D;
      background: #ffffff;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── Design Tokens (Digital Canopy) ───────────── */
    :root {
      --dark: #0B1B3D;
      --dark2: #2B303A;
      --mid: #4A5568;
      --accent: #00E5FF;
      --light: #F8F9FA;
      --border: #E2E8F0;
      --text: #0B1B3D;
      --muted: #4A5568;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 8px 32px rgba(11, 27, 61, .12);
    }

    /* ── Utility ──────────────────────────────────── */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .97rem;
      cursor: pointer;
      transition: all .22s ease;
      border: 2px solid transparent;
    }

    /* Primary button: Teal on dark backgrounds */
    .btn-primary {
      background: var(--accent);
      color: var(--dark);
      box-shadow: 0 4px 18px rgba(0, 229, 255, .25);
    }

    .btn-primary:hover {
      background: #33EBFF;
      box-shadow: 0 6px 24px rgba(0, 229, 255, .4);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--accent);
      border-color: rgba(0, 229, 255, .45);
    }

    .btn-outline:hover {
      background: rgba(0, 229, 255, .1);
      border-color: var(--accent);
    }

    .section-label {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 10px;
    }

    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.65rem);
      font-weight: 700;
      line-height: 1.22;
      color: var(--dark);
    }

    .section-sub {
      font-size: 1.07rem;
      color: var(--muted);
      max-width: 580px;
      margin-top: 14px;
      line-height: 1.75;
    }

    /* ── Navigation ───────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(11, 27, 61, .97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 229, 255, .1);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 28px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-mark-img {
      width: 44px;
      height: auto;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo-text {
      color: #fff;
      font-weight: 700;
      font-size: 1.12rem;
      line-height: 1.2;
    }

    .logo-sub {
      color: rgba(255, 255, 255, .6);
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .06em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .7);
      font-size: .9rem;
      font-weight: 500;
      transition: color .18s;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .nav-cta {
      display: flex;
      align-items: center;
    }

    /* ── Hero ─────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #0B1B3D 0%, #172D5C 55%, #1F3C7A 100%);
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 229, 255, .06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(0, 229, 255, .04) 0%, transparent 60%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 50px;
      padding: 6px 16px;
      color: rgba(255, 255, 255, .75);
      font-size: .8rem;
      font-weight: 600;
      margin-bottom: 22px;
    }

    .hero-eyebrow span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.7rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.14;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-desc {
      color: rgba(255, 255, 255, .65);
      font-size: 1.1rem;
      line-height: 1.78;
      margin-bottom: 36px;
      max-width: 500px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-trust {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgba(255, 255, 255, .4);
      font-size: .82rem;
    }

    .hero-trust-badges {
      display: flex;
      gap: 8px;
    }

    .trust-badge {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .6);
      font-weight: 500;
    }

    /* hero visual card */
    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 20px;
      padding: 32px;
      backdrop-filter: blur(8px);
    }

    .hero-card-title {
      color: var(--accent);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .roi-transform {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .roi-transform:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .roi-before {
      font-size: .82rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.5;
      font-style: italic;
    }

    .roi-arrow {
      font-size: 1.1rem;
      color: var(--accent);
      font-weight: 300;
      text-align: center;
      flex-shrink: 0;
    }

    .roi-after {
      font-size: .82rem;
      color: rgba(255, 255, 255, .82);
      line-height: 1.5;
      font-weight: 500;
    }

    .hero-card-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .09);
      margin: 22px 0;
    }

    .hero-card-quote {
      color: rgba(255, 255, 255, .65);
      font-size: .88rem;
      line-height: 1.65;
      font-style: italic;
    }

    .hero-card-author {
      margin-top: 12px;
      color: rgba(255, 255, 255, .38);
      font-size: .78rem;
      font-weight: 500;
    }

    /* ── Why OCL ──────────────────────────────────── */
    .why {
      padding: 100px 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      margin-top: 64px;
    }

    .why-cards {
      display: grid;
      gap: 18px;
    }

    .why-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 28px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: box-shadow .2s, transform .2s;
    }

    .why-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }

    .why-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      background: linear-gradient(135deg, #FF9F1C, #D87B00);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .why-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dark);
    }

    .why-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .why-text .section-sub {
      max-width: none;
    }

    .why-promise {
      margin-top: 30px;
      background: var(--dark);
      border-radius: var(--radius);
      padding: 24px 26px;
      color: rgba(255, 255, 255, .8);
      font-size: .92rem;
      line-height: 1.7;
      font-style: italic;
      position: relative;
    }

    .why-promise::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 3.5rem;
      color: var(--accent);
      font-family: Georgia, serif;
      line-height: 1;
      opacity: .5;
    }

    .why-promise-text {
      padding-left: 28px;
    }

    /* ── Process ──────────────────────────────────── */
    .process {
      background: var(--dark);
      padding: 100px 0;
    }

    .process .section-heading {
      color: #fff;
    }

    .process .section-label {
      color: #999999;
    }

    .process .section-sub {
      color: rgba(255, 255, 255, .55);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 60px;
    }

    .step {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 16px;
      padding: 34px 28px;
      position: relative;
      transition: background .22s, transform .22s;
    }

    .step:hover {
      background: rgba(255, 255, 255, .07);
      transform: translateY(-4px);
    }

    .step-num {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }

    .step-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(0, 229, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .step h3 {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step p {
      color: rgba(255, 255, 255, .52);
      font-size: .88rem;
      line-height: 1.68;
    }

    .step-connector {
      display: none;
    }

    /* ── Services ─────────────────────────────────── */
    .services {
      padding: 100px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 34px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color .22s, box-shadow .22s, transform .22s;
    }

    .service-card:hover {
      border-color: #555555;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
      transform: translateY(-4px);
    }

    .service-card.featured {
      background: linear-gradient(145deg, #0B1B3D, #172D5C);
      border-color: transparent;
    }

    .featured-tag {
      display: inline-block;
      background: var(--accent);
      color: var(--dark);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 3px 12px;
      margin-bottom: 14px;
    }

    .service-card.featured h3,
    .service-card.featured p,
    .service-card.featured li {
      color: rgba(255, 255, 255, .8);
    }

    .service-card.featured h3 {
      color: #fff;
    }

    .service-icon {
      width: 50px;
      height: 50px;
      border-radius: 11px;
      background: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 20px;
    }

    .service-card.featured .service-icon {
      background: rgba(255, 255, 255, .1);
    }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.68;
      margin-bottom: 16px;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      font-size: .84rem;
      color: var(--muted);
      padding: 5px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .service-list li::before {
      content: '✓';
      color: #444444;
      font-weight: 700;
      flex-shrink: 0;
    }

    .service-card.featured .service-list li {
      color: rgba(255, 255, 255, .6);
    }

    .service-card.featured .service-list li::before {
      color: var(--accent);
    }

    /* ── CTA / Consultation ───────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, #0B1B3D 0%, #172D5C 100%);
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 229, 255, .06) 0%, transparent 70%);
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .cta-text .section-label {
      color: #999999;
    }

    .cta-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .cta-text h2 em {
      font-style: normal;
      color: var(--accent);
    }

    .cta-text p {
      color: rgba(255, 255, 255, .62);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .cta-perks {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .cta-perks li {
      display: flex;
      gap: 12px;
      align-items: center;
      color: rgba(255, 255, 255, .75);
      font-size: .9rem;
    }

    .perk-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(0, 229, 255, .08);
      border: 1.5px solid rgba(0, 229, 255, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: .65rem;
      font-weight: 700;
    }

    /* Contact Form */
    .contact-form-wrap {
      background: #fff;
      border-radius: 20px;
      padding: 42px 38px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    }

    .form-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: .85rem;
      color: var(--muted);
      margin-bottom: 26px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    label {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 11px 14px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      font-family: inherit;
      font-size: .9rem;
      color: var(--text);
      background: #fafafa;
      transition: border-color .18s, box-shadow .18s;
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--dark);
      box-shadow: 0 0 0 3px rgba(11, 27, 61, .08);
    }

    textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      border: none;
      background: var(--dark);
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
      margin-top: 6px;
    }

    .form-submit:hover {
      background: #172D5C;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(11, 27, 61, .4);
    }

    .form-note {
      font-size: .74rem;
      color: var(--muted);
      text-align: center;
      margin-top: 12px;
    }

    /* ── Footer ───────────────────────────────────── */
    footer {
      background: #050d1e;
      padding: 50px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-copy {
      color: rgba(255, 255, 255, .3);
      font-size: .8rem;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, .38);
      font-size: .82rem;
      font-style: italic;
    }

    /* ── Animations ───────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate {
      animation: fadeUp .6s ease both;
    }

    .delay-1 {
      animation-delay: .1s;
    }

    .delay-2 {
      animation-delay: .22s;
    }

    .delay-3 {
      animation-delay: .34s;
    }

    /* ── Responsive ───────────────────────────────── */
    @media (max-width: 900px) {

      .hero-grid,
      .why-grid,
      .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-visual {
        display: none;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links {
        display: none;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 580px) {
      .values-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-wrap {
        padding: 28px 22px;
      }

      .hero {
        padding: 130px 0 70px;
      }
    }

/* ── Modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  width: 95%;
  max-width: 1060px;
  height: 90vh;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content--compact {
  height: auto;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}
