
  /* ============================================================
     GO REVARO - PRODUCTION STYLESHEET
     Brand: Navy #0f3258  Lavender #a59ad6
     Headings: Georgia serif   Body: Inter sans
  ============================================================ */

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

  :root {
    --navy:      #0f3258;
    --navy-deep: #091e38;
    --navy-mid:  #1a4472;
    --lav:       #a59ad6;
    --lav-light: #cfc9ea;
    --lav-soft:  #f2f0fb;
    --lav-mark:  #c9c1e8;
    --white:     #ffffff;
    --off-white: #f7f8fc;
    --border:    #dde3ed;
    --text-body: #3d5068;
    --text-muted:#7a8fa8;
    --serif:     Georgia, "Times New Roman", serif;
    --sans:      'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --r:         8px;
    --r-lg:      16px;
    --sh-sm:     0 2px 8px rgba(15,50,88,.06);
    --sh-md:     0 8px 28px rgba(15,50,88,.10);
    --sh-lav:    0 6px 24px rgba(165,154,214,.32);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img  { max-width: 100%; display: block;  }
  a    { text-decoration: none; color: inherit; }
  button { cursor: pointer; font-family: var(--sans); }

  /* Highlight - custom marker effect */
  .hl {
    position: relative;
    display: inline-block;
    font-style: italic;
    z-index: 1;
    background: none;
  }

  .hl::after {
    content: "";
    position: absolute;
    left: -0.12em;
    right: -0.12em;
    bottom: 0.12em;
    height: 0.42em;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath d='M5 50 C40 30,80 65,120 45 S210 25,260 48 S340 65,395 42 L395 75 L5 75 Z' fill='%23A59AD6'/%3E%3C/svg%3E");
  }

  /* ============================================================
     HEADER
  ============================================================ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
  }
  .site-header.scrolled { box-shadow: 0 2px 20px rgba(15,50,88,.08); }

  .header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .logo-link { flex-shrink: 0; display: flex; align-items: center; }
  .logo-link img { height: 48px; width: auto; }

  /* Rainmaker-style nav: clean, evenly spaced, no dominant button */
  .site-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
  }
  .site-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: .01em;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    height: 1.5px; width: 0;
    background: var(--lav);
    border-radius: 2px;
    transition: width .25s ease;
  }
  .site-nav a:hover { color: var(--navy); }
  .site-nav a:hover::after { width: 100%; }

  .header-cta {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .2s, transform .2s;
    display: inline-block;
    white-space: nowrap;
  }
  .header-cta:hover { background: var(--navy-deep); transform: translateY(-1px); }

  .menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    flex-shrink: 0;
  }
  .menu-btn span {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
  }

  .mobile-drawer {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    box-shadow: var(--sh-md);
    z-index: 850;
  }
  .mobile-drawer.open { display: block; }
  .mobile-drawer a {
    display: block;
    padding: 13px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-body);
    border-bottom: 1px solid var(--off-white);
  }
  .mobile-drawer a:last-child { border-bottom: none; }
  .mobile-drawer a:hover { color: var(--navy); }

  /* ============================================================
     HERO
  ============================================================ */
  .hero {
    background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #1e5080 100%);
    padding: 100px 48px 110px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 80% 40%, rgba(165,154,214,.10) 0%, transparent 65%),
      radial-gradient(ellipse 30% 40% at 5% 90%,  rgba(165,154,214,.06) 0%, transparent 55%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-body { color: var(--white); }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(165,154,214,.4);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--lav-light);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--lav);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .hero-body h1 {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.4px;
    margin-bottom: 24px;
  }
  /* Hero highlight is white text on semi-transparent lavender bg */
  .hero-body h1 .hl {
    background: rgba(165,154,214,.28);
    color: var(--white);
    font-style: italic;
    padding: 1px 6px 3px;
    border-radius: 4px;
  }

  .hero-body p {
    font-size: 16.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    margin-bottom: 40px;
    max-width: 500px;
  }

  .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--lav);
    color: var(--navy);
    border: none;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: var(--sh-lav);
  }
  .btn-primary:hover {
    background: var(--lav-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(165,154,214,.45);
  }

  /* Hero graphic */
  .hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-graphic-inner {
    position: relative;
    width: 400px; height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .h-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(165,154,214,.2);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  .h-ring-1 { width: 320px; height: 320px; }
  .h-ring-2 {
    width: 400px; height: 240px;
    border-style: solid;
    border-color: rgba(165,154,214,.1);
    transform: translate(-50%,-50%) rotate(30deg);
  }
  .h-globe {
    position: relative; z-index: 3;
    width: 104px; height: 104px;
    background: rgba(165,154,214,.14);
    border: 1.5px solid rgba(165,154,214,.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .h-globe svg { width: 52px; height: 52px; stroke: var(--lav-light); fill: none; stroke-width: 1.5; }

  .h-node {
    position: absolute; z-index: 4;
    width: 56px; height: 56px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(165,154,214,.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
  }
  .h-node svg { width: 24px; height: 24px; stroke: var(--lav-light); fill: none; stroke-width: 1.8; }
  .h-node-1 { top: 6%;    left: 10%; }
  .h-node-2 { top: 10%;   right: 8%; }
  .h-node-3 { bottom: 16%; left: 8%; }
  .h-node-4 { bottom: 12%; right: 12%; }

  .h-chip {
    position: absolute; z-index: 5;
    display: flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(165,154,214,.25);
    border-radius: 100px;
    backdrop-filter: blur(8px);
  }
  .h-chip-dot { width: 6px; height: 6px; background: var(--lav); border-radius: 50%; flex-shrink: 0; }
  .h-chip span { font-size: 12px; font-weight: 600; color: var(--white); white-space: nowrap; }
  .h-chip-1 { top: 22%;    left: -2%; }
  .h-chip-2 { bottom: 26%; right: -2%; }

  /* ============================================================
     SHARED SECTION STYLES
  ============================================================ */
  .section { padding: 96px 48px; }
  .section-inner { max-width: 1360px; margin: 0 auto; }
  .section-head { text-align: center; margin-bottom: 64px; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: var(--lav-soft);
    color: var(--navy);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: 40px; font-weight: 400;
    color: var(--navy);
    line-height: 1.2; letter-spacing: -.3px;
    margin-bottom: 14px;
  }
  .section-sub {
    font-size: 16.5px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ============================================================
     WHY US
  ============================================================ */
  .why-us { background: var(--white); }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 24px;
    transition: transform .28s, box-shadow .28s, border-color .28s, background .28s;
    position: relative;
    overflow: hidden;
  }
  .card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--lav));
    opacity: 0;
    transition: opacity .28s;
  }
  .card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--lav-light); background: var(--white); }
  .card:hover::after { opacity: 1; }

  .card-icon {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(15,50,88,.18);
  }
  .card-icon::after {
    content: '';
    position: absolute;
    top: -3px; right: -3px;
    width: 9px; height: 9px;
    background: var(--lav);
    border-radius: 50%;
    border: 2px solid var(--white);
  }
  .card-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .card-title { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
  .card-body  { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

  /* ============================================================
     HOW IT WORKS
  ============================================================ */
  .how { background: var(--off-white); padding: 0; }
  .how-head { padding: 96px 48px 0; text-align: center; }

  .how-layout {
    max-width: 1360px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 48px 100px;
    align-items: start;
  }

  .how-sticky { position: sticky; top: 100px; }

  .how-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    border: 1px solid rgba(165,154,214,.35);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--lav); margin-bottom: 22px;
  }
  .how-title { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 18px; }
  .how-desc  { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 30px; }

  .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--navy); color: var(--white);
    border-radius: var(--r);
    font-size: 14px; font-weight: 600;
    transition: background .2s, transform .2s;
    margin-bottom: 44px;
  }
  .btn-secondary:hover { background: var(--navy-deep); transform: translateY(-1px); }

  /* Globe */
  .globe-wrap {
    position: relative; width: 340px; height: 340px;
    display: flex; align-items: center; justify-content: center;
  }
  .g-ring {
    position: absolute; border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    border: 1px dashed rgba(165,154,214,.18);
  }
  .g-ring-1 { width: 280px; height: 280px; }
  .g-ring-2 { width: 340px; height: 200px; border-style: solid; border-color: rgba(165,154,214,.1); transform: translate(-50%,-50%) rotate(25deg); }

  .g-core {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 120px; height: 120px;
    background: rgba(165,154,214,.12);
    border: 1.5px solid rgba(165,154,214,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
  }
  .g-core svg { width: 56px; height: 56px; stroke: rgba(165,154,214,.8); fill: none; stroke-width: 1.5; }

  .g-person {
    position: absolute;
    width: 48px; height: 48px;
    background: var(--navy);
    border: 2.5px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(15,50,88,.22);
  }
  .g-person svg { width: 21px; height: 21px; stroke: var(--lav-light); fill: none; stroke-width: 2; }
  .g-p1 { top: 8%;    left: 14%; }
  .g-p2 { top: 14%;   right: 10%; }
  .g-p3 { bottom: 18%; left: 10%; }
  .g-p4 { bottom: 14%; right: 14%; }

  /* Steps */
  .steps { display: flex; flex-direction: column; }
  .step {
    padding: 52px 0 52px 40px;
    border-left: 2px solid var(--border);
    position: relative;
  }
  .step::before {
    content: '';
    position: absolute;
    left: -7px; top: 52px;
    width: 12px; height: 12px;
    background: var(--border);
    border-radius: 50%;
    border: 2.5px solid var(--off-white);
    transition: background .2s, box-shadow .2s;
  }
  .step:first-child { padding-top: 0; }
  .step:first-child::before { top: 0; }
  .step:last-child { padding-bottom: 0; }
  .step:hover { border-color: var(--lav); }
  .step:hover::before { background: var(--lav); box-shadow: 0 0 0 4px rgba(165,154,214,.15); }

  .step-num   { font-size: 11px; font-weight: 700; color: var(--lav); letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 10px; }
  .step-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
  .step-body  { font-size: 15px; color: var(--text-muted); line-height: 1.72; }

  /* ============================================================
     DELIVERY MODELS
  ============================================================ */
  .delivery { background: var(--white); }

  .tab-nav {
    display: flex; justify-content: center;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 56px;
    overflow-x: auto;
  }
  .tab-nav::-webkit-scrollbar { display: none; }

  .tab-btn {
    padding: 16px 36px;
    background: none; border: none;
    border-bottom: 2.5px solid transparent;
    font-size: 15px; font-weight: 500;
    color: var(--text-muted);
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    position: relative; bottom: -1.5px;
  }
  .tab-btn:hover { color: var(--navy); }
  .tab-btn.active { color: var(--navy); border-bottom-color: var(--lav); font-weight: 700; }

  .tab-panel { display: none; animation: fadeUp .4s ease; }
  .tab-panel.active { display: block; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  .tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .tab-text { padding-right: 16px; }

  .tab-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: var(--lav-soft); color: var(--navy);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .tab-title { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
  .tab-desc  { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 26px; }

  .feat-list { margin-bottom: 36px; }
  .feat { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 15px; font-size: 15px; color: var(--text-body); line-height: 1.6; }
  .feat:last-child { margin-bottom: 0; }
  .feat-check {
    width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    background: var(--lav-soft);
    border: 1.5px solid var(--lav-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .feat-check::before {
    content: '';
    display: block;
    width: 8px; height: 5px;
    border-left: 1.5px solid var(--lav);
    border-bottom: 1.5px solid var(--lav);
    transform: rotate(-45deg) translateY(-1px);
  }

  .btn-pair { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-fill {
    padding: 12px 28px; background: var(--navy); color: var(--white);
    border-radius: var(--r); font-size: 14px; font-weight: 600;
    transition: background .2s, transform .2s; display: inline-block;
  }
  .btn-fill:hover { background: var(--navy-deep); transform: translateY(-1px); }
  .btn-outline {
    padding: 12px 28px; background: transparent; color: var(--navy);
    border: 1.5px solid var(--lav-light);
    border-radius: var(--r); font-size: 14px; font-weight: 600;
    transition: background .2s, border-color .2s, transform .2s; display: inline-block;
  }
  .btn-outline:hover { background: var(--lav-soft); border-color: var(--lav); transform: translateY(-1px); }

  .tab-visual { min-height: 380px; display: flex; align-items: center; justify-content: center; }
  .vis-box {
    width: 100%; height: 400px;
    background: linear-gradient(145deg, var(--lav-soft) 0%, #e8e3f6 100%);
    border-radius: var(--r-lg);
    border: 1px solid var(--lav-light);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .vis-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(165,154,214,.1) 0%, transparent 70%);
  }

  /* Direct placement visual */
  .dp-wrap  { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  .dp-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px; }
  .dp-avatar { width: 72px; height: 72px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid var(--white); box-shadow: 0 8px 24px rgba(15,50,88,.22); }
  .dp-avatar svg { width: 34px; height: 34px; stroke: var(--lav-light); fill: none; stroke-width: 1.8; }
  .dp-label  { font-size: 13px; font-weight: 600; color: var(--navy); }
  .dp-card   { position: absolute; background: var(--white); border-radius: 12px; padding: 11px 15px; box-shadow: 0 8px 24px rgba(15,50,88,.10); display: flex; align-items: center; gap: 9px; }
  .dp-card-ico { width: 32px; height: 32px; background: var(--navy); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .dp-card-ico svg { width: 15px; height: 15px; stroke: var(--lav-light); fill: none; stroke-width: 2; }
  .dp-card-t { font-size: 12.5px; font-weight: 700; color: var(--navy); white-space: nowrap; }
  .dp-card-s { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
  .dp-c1 { top: 14%; left: 6%; }
  .dp-c2 { top: 42%; right: 5%; }
  .dp-c3 { bottom: 16%; left: 10%; }

  /* Managed teams visual */
  .mt-wrap     { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .mt-mgr-row  { position: relative; display: flex; justify-content: center; margin-bottom: 36px; z-index: 2; }
  .mt-ava      { display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .mt-circle   { border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
  .mt-circle.mgr { width: 66px; height: 66px; background: var(--navy); border: 3px solid var(--white); box-shadow: 0 5px 18px rgba(15,50,88,.22); }
  .mt-circle.mgr svg { width: 30px; height: 30px; stroke: var(--lav-light); fill: none; stroke-width: 1.8; }
  .mt-badge    { position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; background: var(--lav); border-radius: 50%; border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; color: var(--navy); }
  .mt-name     { font-size: 12px; font-weight: 700; color: var(--navy); }
  .mt-role     { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
  .mt-line     { position: absolute; top: 66px; left: 50%; transform: translateX(-50%); width: 1.5px; height: 36px; background: linear-gradient(to bottom, rgba(165,154,214,.5), transparent); }
  .mt-team-row { display: flex; gap: 16px; z-index: 2; }
  .mt-circle.mem { width: 48px; height: 48px; background: var(--navy); border: 2px solid var(--white); box-shadow: 0 3px 10px rgba(15,50,88,.18); }
  .mt-circle.mem svg { width: 20px; height: 20px; stroke: var(--lav-light); fill: none; stroke-width: 2; }
  .mt-mem-lbl  { font-size: 10px; color: var(--text-muted); font-weight: 600; }

  /* ============================================================
     ABOUT
  ============================================================ */
  .about {
    background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 60%, #1e5080 100%);
    color: var(--white);
    padding: 100px 48px;
    position: relative; overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 45% 60% at 85% 20%, rgba(165,154,214,.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-inner  { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
  .about .eyebrow { background: transparent; color: var(--lav-light); border: 1px solid rgba(165,154,214,.3); }
  .about .section-title { color: var(--white); }
  .about-p      { font-size: 16.5px; line-height: 1.85; color: rgba(255,255,255,.8); margin-bottom: 24px; }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer { background: var(--navy-deep); padding: 64px 48px 32px; }
  .footer-inner { max-width: 1360px; margin: 0 auto; }
  .footer-grid  { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
  .footer-brand img { height: 30px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .85; }
  .footer-desc  { font-size: 14px; color: #3e5470; line-height: 1.68; }
  .footer-col h5 { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-links  { list-style: none; }
  .footer-links li { margin-bottom: 11px; }
  .footer-links a  { font-size: 14px; color: #3e5470; font-weight: 500; transition: color .2s; }
  .footer-links a:hover { color: var(--lav); }
  .footer-bar { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); text-align: center; font-size: 13px; color: #2a3d52; }

  /* ============================================================
     RESPONSIVE - 1200px tablet
  ============================================================ */
  @media (max-width: 1200px) {
    .header-inner  { padding: 0 28px; }
    .hero          { padding: 80px 28px 90px; }
    .section       { padding: 80px 28px; }
    .how-head      { padding: 80px 28px 0; }
    .how-layout    { padding: 60px 28px 80px; gap: 56px; }
    .delivery      { padding: 80px 28px; }
    .about         { padding: 80px 28px; }
    .footer        { padding: 52px 28px 28px; }
    .cards-grid    { grid-template-columns: repeat(2, 1fr); }
    .tab-grid      { gap: 48px; }
    .tab-title     { font-size: 28px; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  /* ============================================================
     RESPONSIVE - 768px mobile
  ============================================================ */
  @media (max-width: 768px) {
    /* Header */
    .header-inner  { padding: 0 20px; height: 68px; gap: 16px; }
    .logo-link img { height: 40px; }
    .site-nav      { display: none; }
    .header-cta    { display: none; }
    .menu-btn      { display: flex; }
    .mobile-drawer { top: 68px; }

    /* Hero */
    .hero          { padding: 56px 20px 64px; }
    .hero-inner    { grid-template-columns: 1fr; gap: 0; }
    .hero-graphic  { display: none; }
    .hero-body h1  { font-size: 34px; }
    .hero-body p   { font-size: 15px; max-width: 100%; }

    /* Sections */
    .section       { padding: 64px 20px; }
    .section-head  { margin-bottom: 48px; }
    .section-title { font-size: 28px; }
    .section-sub   { font-size: 15px; }

    /* Cards */
    .cards-grid    { grid-template-columns: 1fr; gap: 16px; }

    /* How it works */
    .how-head      { padding: 64px 20px 0; }
    .how-layout    { grid-template-columns: 1fr; gap: 48px; padding: 48px 20px 64px; }
    .how-sticky    { position: relative; top: 0; }
    .how-title     { font-size: 26px; }
    .globe-wrap    { display: none; }
    .step          { padding-left: 28px; padding-top: 44px; }
    .step:first-child { padding-top: 0; }
    .step-title    { font-size: 20px; }

    /* Delivery */
    .delivery      { padding: 64px 20px; }
    .tab-btn       { padding: 13px 18px; font-size: 13.5px; }
    .tab-grid      { grid-template-columns: 1fr; gap: 36px; }
    .tab-visual    { order: -1; }
    .vis-box       { height: 280px; }
    .tab-text      { padding-right: 0; }
    .tab-title     { font-size: 24px; }
    .btn-pair      { flex-direction: column; }
    .btn-fill, .btn-outline { text-align: center; width: 100%; }

    /* About */
    .about         { padding: 64px 20px; }

    /* Footer */
    .footer        { padding: 44px 20px 24px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  }

  /* ============================================================
     RESPONSIVE - 480px small mobile
  ============================================================ */
  @media (max-width: 480px) {
    .hero-body h1  { font-size: 28px; }
    .section-title { font-size: 24px; }
    .tab-title     { font-size: 21px; }
    .step-title    { font-size: 18px; }
    .tab-nav       { justify-content: flex-start; }
  }
  

.logo-link img{
  height:44px;
  width:auto;
  max-width:240px;
  object-fit:contain;
  display:block;
}
@media (max-width:768px){
  .logo-link img{
    height:36px;
    max-width:180px;
  }
}


/* ===== FINAL BRANDING FIXES ===== */

/* Larger logo */
.logo-link img{
  height:78px !important;
  width:auto;
  max-width:none;
  object-fit:contain;
}

/* Header alignment */
.header-inner{
  max-width:1480px;
  padding:0 32px;
  height:92px;
}

/* Footer logo same size as navbar */
.footer-brand img{
  height:78px !important;
  width:auto;
  filter:none;
  opacity:1;
  margin-bottom:20px;
}

/* Remove hero box highlight */
.hero-body h1 .hl{
  background:none !important;
  padding:0;
  border-radius:0;
  color:var(--white);
}

/* Strong brush marker */
.hl::after{
  content:"";
  position:absolute;
  left:-0.18em;
  right:-0.18em;
  bottom:0.02em;
  height:0.65em;
  z-index:-1;
  background-repeat:no-repeat;
  background-size:100% 100%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 120' preserveAspectRatio='none'%3E%3Cpath d='M8 72 C40 25,85 95,130 68 C180 38,230 90,285 58 C340 28,395 88,492 52 L492 118 L8 118 Z' fill='%23A59AD6'/%3E%3C/svg%3E");
}

/* Mobile direct placement fix */
@media (max-width:768px){

  .logo-link img{
    height:52px !important;
  }

  .footer-brand img{
    height:52px !important;
  }

  .header-inner{
    height:76px;
    padding:0 20px;
  }

  .vis-box{
    height:auto;
    min-height:420px;
    padding:30px 20px;
  }

  .dp-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
  }

  .dp-card{
    position:relative;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    width:100%;
    max-width:260px;
  }

  .dp-center{order:2;}
  .dp-c1{order:1;}
  .dp-c2{order:3;}
  .dp-c3{order:4;}
}
