  :root {
    --navy: #0d1f2e;
    --blue: #0d3d50;
    --bright-blue: #1a5c6e;
    --light-blue: #3a9aaa;
    --orange: #2e8b57;
    --orange-dark: #226944;
    --white: #ffffff;
    --off-white: #f0f6f5;
    --gray: #567880;
    --light-gray: #e2eeec;
    --text-dark: #0d1f2e;
    --text-mid: #2a4450;
    --shadow: 0 4px 24px rgba(13,61,80,0.13);
    --shadow-lg: 0 8px 40px rgba(13,31,46,0.18);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

  /* ── TOP BAR ── */
  #topbar {
    background: var(--navy);
    color: #7ab8c4;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  #topbar a { color: #7ab8c4; text-decoration: none; }
  #topbar .tb-left, #topbar .tb-right { display: flex; align-items: center; gap: 8px; }
  #topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ── NAVBAR ── */
  #navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(13,31,60,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    gap: 16px;
  }
  .nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
  .nav-logo img { height: 56px; width: auto; max-width: min(42vw, 290px); object-fit: contain; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-item { position: relative; }
  .nav-main-link { display: inline-flex; align-items: center; gap: 6px; }
  .services-caret {
    font-size: 0.72rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-mid);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--light-blue); color: var(--white); }
  .nav-item.services.open .services-caret { transform: rotate(180deg); }
  .nav-item.services:hover .services-caret { transform: rotate(180deg); }
  .nav-item.services::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 14px;
    background: transparent;
  }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 250px;
    background: var(--white);
    border: 1px solid #c0d8dc;
    border-top: 3px solid var(--orange);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 30px rgba(13,31,60,0.16);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
  }
  .nav-item.services:hover .nav-dropdown,
  .nav-item.services:focus-within .nav-dropdown,
  .nav-item.services.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .nav-dropdown a {
    display: block;
    border-radius: 0 !important;
    padding: 13px 16px;
    color: var(--text-dark) !important;
    background: transparent !important;
    border-bottom: 1px solid #d0e8ec;
    letter-spacing: 0.02em;
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover {
    background: #f0f8f8 !important;
    color: var(--orange) !important;
  }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 8px 18px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(46,139,87,0.28);
  }
  .nav-cta:hover { background: var(--orange-dark) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  /* ── HERO ── */
  #hero {
   /* background: linear-gradient(135deg, var(--navy) 0%, #0d3d50 55%, var(--bright-blue) 100%);*/
    position: relative;
    overflow: hidden;
    padding: 80px 5% 80px;
    display: flex;
    align-items: center;
    min-height: 520px;
  }
  #hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  #hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
  .hero-content { max-width: 600px; position: relative; z-index: 2; animation: fadeUp 0.8s both; margin-top: 34px; }
  .hero-badge { display: inline-block; background: rgba(46,139,87,0.18); border: 1px solid var(--orange); color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
  .hero-content h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.05; margin-bottom: 10px; }
  .hero-content h1 span { color: var(--orange); }
  .hero-content p { color: rgba(255,255,255,0.80); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.6; max-width: 480px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--orange); color: var(--white); padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; letter-spacing: 0.03em; }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
  .btn-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 11px 26px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-block; background: transparent; letter-spacing: 0.03em; }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  /* ── SECTION HELPERS ── */
  section { padding: 70px 5%; }
  .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
  .section-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
  .section-desc { color: var(--gray); font-size: 1rem; max-width: 580px; line-height: 1.65; }
  .text-center { text-align: center; }
  .text-center .section-desc { margin: 0 auto; }

  /* ── PLACEMENTS ── */
  #placements {
    background: var(--white);
    padding: 44px 0 28px;
  }
  #placements .text-center {
    padding: 0 5%;
  }
  .placements-marquee {
    margin-top: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #f0f8f7 0%, #e2f0ee 100%);
  }
  .placements-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    padding: 16px 0;
    animation: placementsTicker 30s linear infinite;
  }
  .placement-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 62px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #b0d4da;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(13,61,80,0.08);
    flex: 0 0 auto;
  }
  .placement-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* ── SERVICES ── */

  /* -- DECISION EDGE -- */
  #decision-edge {
    background: var(--off-white);
    padding: 52px 5% 70px;
  }
  .decision-intro {
    text-align: center;
    margin-bottom: 18px;
  }
  .decision-intro .section-desc {
    margin: 0 auto;
    text-align: center;
  }
  .decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
  }
  .decision-panel {
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .decision-panel.light {
    background: #f0f8f7;
    border: 1px solid #c8e0e4;
  }
  .decision-panel.dark {
    background: linear-gradient(150deg, #071a28 0%, #050f1a 100%);
    border: 1px solid #0d3d50;
    color: rgba(255,255,255,0.92);
  }
  .decision-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .decision-panel.light .decision-tag {
    background: #0d2a35;
    color: var(--white);
  }
  .decision-panel.dark .decision-tag {
    background: #040e15;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.16);
  }
  .decision-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .decision-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: flex-start;
  }
  .decision-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }
  .decision-panel.light .decision-icon {
    background: #dff0ef;
    color: var(--blue);
  }
  .decision-panel.dark .decision-icon {
    background: rgba(255,255,255,0.12);
    color: #9dd4da;
  }
  .decision-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    margin: 0 0 10px;
    color: var(--navy);
  }
  .decision-panel.dark .decision-title {
    color: var(--white);
  }
  .decision-item h4 {
    margin: 1px 0 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .decision-item p {
    margin: 0;
    color: var(--gray);
    line-height: 1.55;
    font-size: 0.96rem;
  }
  .decision-panel.dark .decision-item p {
    color: rgba(255,255,255,0.78);
  }
  #services { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 48px; align-items: stretch; }
  @media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 760px) {
    .services-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  }
  .service-card { background: var(--white); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); border-top: 4px solid var(--blue); transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
  .service-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px; background: radial-gradient(circle, rgba(13,61,80,0.07) 0%, transparent 70%); border-radius: 50%; }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .svc-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--light-blue); opacity: 0.4; margin-bottom: 8px; }
  .svc-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--navy); margin-bottom: 8px; }
  .svc-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

  /* ── JOURNEY ── */
  #journey { background: var(--navy); background-image: url('../assets/raw/image.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
  #journey::before { content: ''; position: absolute; inset: 0; background: rgba(10,25,35,0.78); z-index: 0; }
  #journey > * { position: relative; z-index: 1; }
  #journey .section-title { color: var(--white); }
  #journey .section-desc { color: rgba(255,255,255,0.6); }
  .milestones { display: flex; gap: 0; margin-top: 48px; flex-wrap: wrap; }
  .milestone { flex: 1; min-width: 130px; position: relative; text-align: center; padding: 0 8px; }
  .milestone:not(:last-child)::after { content: ''; position: absolute; top: 26px; right: -1px; width: 2px; height: 32px; background: rgba(255,255,255,0.15); }
  .ms-num { width: 54px; height: 54px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(46,139,87,0.35); }
  .ms-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 5px; }
  .ms-sub { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-style: italic; }

  /* ── PRICING ── */
  #pricing { background: var(--white); }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; align-items: stretch; }
  .price-card { border-radius: 16px; padding: 36px 28px; position: relative; overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; display: flex; flex-direction: column; height: 100%; }
  .price-card:hover { transform: translateY(-6px); }
  .price-card.basic { background: var(--off-white); border: 2px solid #b8d4d8; }
  .price-card.standard { background: linear-gradient(145deg, #e2f0ef, #d4ebea); border: 2px solid var(--light-blue); }
  .price-card.assurance { background: linear-gradient(145deg, #e8f5f4, #daeeed); border: 2px solid #7ab8c4; }
  .price-card.premium { background: linear-gradient(145deg, var(--navy), #0d3d50); border: 2px solid var(--orange); box-shadow: 0 8px 36px rgba(46,139,87,0.18); }
  .price-card.premium * { color: var(--white) !important; }
  .price-badge { position: absolute; top: 16px; right: 16px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }
  .premium .price-badge { background: var(--orange); color: var(--white); }
  .standard .price-badge { background: var(--bright-blue); color: var(--white); }
  .assurance .price-badge { background: #1a7a8a; color: var(--white); }
  .plan-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; margin-top: 20px; }
  .plan-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; margin-top: 20px; }
  .plan-name-row .plan-name { margin-top: 0; margin-bottom: 0; }
  .plan-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.4rem; color: var(--blue); margin-bottom: 4px; }
  .plan-original-price { font-size: 1rem; color: var(--gray); text-decoration: line-through; margin-bottom: 2px; opacity: 0.7; }
  .plan-save-badge { display: inline-block; background: #e8f5e9; color: #2e7d32; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 6px; letter-spacing: 0.04em; }
  .premium .plan-original-price { color: rgba(255,255,255,0.55); }
  .premium .plan-save-badge { background: rgba(255,190,65,0.18); color: var(--orange); }
  .plan-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 22px; }
  .price-features { list-style: none; margin-bottom: 28px; flex: 1; }
  .price-features li { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .premium .price-features li { border-bottom-color: rgba(255,255,255,0.1); }
  .price-features .check { color: #2e8b57; font-weight: 900; font-size: 1rem; flex-shrink: 0; }
  .price-features .cross { color: #bbb; font-size: 0.95rem; flex-shrink: 0; }
  .btn-plan { width: 100%; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; letter-spacing: 0.04em; font-family: 'Nunito', sans-serif; transition: all 0.2s; margin-top: auto; }
  .basic .btn-plan { background: var(--light-gray); color: var(--navy); }
  .basic .btn-plan:hover { background: var(--blue); color: var(--white); }
  .standard .btn-plan { background: var(--blue); color: var(--white); }
  .standard .btn-plan:hover { background: var(--navy); }
  .assurance .btn-plan { background: #1a7a8a; color: var(--white); }
  .assurance .btn-plan:hover { background: #145f6e; }
  .premium .btn-plan { background: var(--orange); color: var(--white); }
  .premium .btn-plan:hover { background: var(--orange-dark); }

  .assured-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; vertical-align: middle; }
  .standard .assured-badge { background: var(--bright-blue); color: #fff; }
  .premium .assured-badge { background: var(--orange); color: #fff !important; }

  /* ── ADDONS ── */
  #addons { background: var(--off-white); }
  .addons-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 40px; align-items: stretch; }
  @media (max-width: 680px) {
    .addons-grid { grid-template-columns: 1fr; }
  }
  .addon-card { background: var(--white); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; border-left: 5px solid var(--orange); transition: transform 0.2s; height: 100%; }
  .addon-card:hover { transform: translateY(-3px); }
  .addon-icon { font-size: 1.8rem; }
  .addon-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
  .addon-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--navy); }
  .addon-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.55; }
  .addon-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--orange); margin-top: 0; white-space: normal; text-align: right; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--white); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; align-items: stretch; }
  .testi-card { background: var(--off-white); border-radius: 14px; padding: 28px; position: relative; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; height: 100%; }
  .testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  @media (max-width: 1100px) {
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 680px) {
    .testimonials-grid { grid-template-columns: 1fr; }
  }
  .testi-quote { color: var(--light-blue); font-size: 2.5rem; font-family: Georgia, serif; line-height: 1; margin-bottom: 12px; opacity: 0.5; }
  .testi-text { color: var(--text-mid); font-size: 0.93rem; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--light-blue)); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
  .testi-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
  .testi-role { color: var(--gray); font-size: 0.78rem; }
  .testi-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 2px; }

  /* ── WHY US ── */
  #why { background: linear-gradient(135deg, #e2f0ef, #eff7f6); }
  .why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 44px; align-items: stretch; }
  .why-card { background: var(--white); border-radius: 14px; padding: 26px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s; display: flex; flex-direction: column; height: 100%; }
  .why-card:hover { transform: translateY(-4px); }
  @media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 680px) {
    .why-grid { grid-template-columns: 1fr; }
  }
  .why-icon { font-size: 2.2rem; margin-bottom: 14px; }
  .why-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
  .why-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.55; }

  /* ── ABOUT PAGE ── */
  .about-hero { background: linear-gradient(135deg, var(--navy) 0%, #0d3d50 100%); padding: 80px 5%; color: var(--white); }
  .about-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
  .about-hero h1 span { color: var(--orange); }
  .about-hero p { color: rgba(255,255,255,0.78); max-width: 600px; line-height: 1.7; font-size: 1.02rem; }
  .about-body { padding: 70px 5%; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-text h2 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
  .about-text p { color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
  .about-img-block { background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
  .about-stat { text-align: center; }
  .about-stat-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.4rem; color: var(--orange); }
  .about-stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
  .values-section { background: var(--off-white); padding: 70px 5%; }
  .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; align-items: stretch; }
  .value-card { background: var(--white); border-radius: 12px; padding: 24px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; height: 100%; }
  .value-icon { font-size: 2rem; margin-bottom: 12px; }
  .value-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .value-desc { color: var(--gray); font-size: 0.87rem; line-height: 1.55; }

  /* ── FAQ PAGE ── */
  .faq-hero { background: linear-gradient(135deg, var(--navy) 0%, #0d3d50 100%); padding: 70px 5%; color: var(--white); text-align: center; }
  .faq-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
  .faq-hero h1 span { color: var(--orange); }
  .faq-body { max-width: 760px; margin: 0 auto; padding: 70px 5%; }
  .faq-item { border-bottom: 1px solid var(--light-gray); margin-bottom: 4px; }
  .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s; }
  .faq-q:hover { color: var(--blue); }
  .faq-q .arrow { width: 22px; height: 22px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.2s; font-size: 0.85rem; }
  .faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--blue); color: var(--white); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
  .faq-a p { padding: 0 0 16px; color: var(--gray); line-height: 1.7; font-size: 0.95rem; }
  .faq-item.open .faq-a { max-height: 300px; }

  /* ── CAREERS PAGE ── */
  .careers-hero { background: linear-gradient(135deg, var(--navy) 0%, #0d3d50 100%); padding: 70px 5%; color: var(--white); }
  .careers-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
  .careers-hero h1 span { color: var(--orange); }
  .careers-hero p { color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.65; }
  .careers-body { padding: 70px 5%; }
  .job-listings { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
  .job-card { background: var(--off-white); border-radius: 14px; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-left: 4px solid var(--blue); transition: box-shadow 0.2s, transform 0.2s; }
  .job-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
  .job-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: 6px; }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .job-tag { background: var(--white); border: 1px solid #b0d4da; color: var(--blue); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
  .job-apply { background: var(--orange); color: var(--white); padding: 9px 22px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
  .job-apply:hover { background: var(--orange-dark); }

  /* ── REFER & EARN PAGE ── */
  .refer-hero { background: linear-gradient(135deg, #071a28 0%, #0d3d50 100%); padding: 80px 5% 70px; color: var(--white); }
  .refer-hero-inner { max-width: 680px; }
  .refer-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; letter-spacing: 0.04em; }
  .refer-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; line-height: 1.1; }
  .refer-hero h1 span { color: var(--orange); }
  .refer-hero p { color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.7; font-size: 0.97rem; }
  .refer-body { padding: 60px 5%; max-width: 900px; margin: 0 auto; }
  .refer-rulebook { margin-bottom: 48px; }
  .refer-rulebook > h2 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--navy); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid #b8d4d8; }
  .refer-rule { margin-bottom: 28px; }
  .refer-rule h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; }
  .refer-rule ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
  .refer-rule ul li { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }
  .refer-rule ul li strong { color: var(--navy); }
  .refer-section { margin-bottom: 36px; }
  .refer-section h2 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.65rem); color: var(--navy); margin-bottom: 10px; }
  .refer-section p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; }
  .refer-how-list { list-style: decimal; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
  .refer-how-list li { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
  .refer-how-list li strong { color: var(--navy); }
  .refer-influence { background: var(--off-white); border-radius: 16px; padding: 40px; border: 1px solid #b8d4d8; margin-top: 48px; }
  .refer-influence h2 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--navy); margin-bottom: 12px; }
  .refer-influence p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }
  .refer-influence-sub { font-style: italic; }
  .refer-cta-btn { display: inline-block; margin-top: 20px; background: var(--orange); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem; padding: 12px 28px; border-radius: 8px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; }
  .refer-cta-btn:hover { background: var(--orange-dark); }

  /* ── CONTACT US PAGE ── */
  .contact-hero { background: linear-gradient(135deg, var(--navy), #0d3d50); padding: 70px 5%; color: var(--white); text-align: center; }
  .contact-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
  .contact-hero h1 span { color: var(--orange); }
  .contact-body { padding: 70px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
  .contact-info { background: var(--off-white); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; height: 100%; }
  .contact-info h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--navy); margin-bottom: 14px; }
  .contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
  .contact-detail:last-child { margin-bottom: 0; }
  .contact-detail-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--light-blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
  .contact-detail-text h4 { font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 2px; }
  .contact-detail-text p { color: var(--gray); font-size: 0.88rem; line-height: 1.5; }
  .contact-form-wrap { background: var(--off-white); border-radius: 16px; padding: 36px; }
  .contact-form-wrap h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
  .office-map-wrap { background: var(--off-white); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; height: 100%; }
  .office-map-wrap h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--navy); margin-bottom: 14px; }
  .office-map-frame { width: 100%; min-height: 430px; height: 100%; border: 0; border-radius: 12px; box-shadow: var(--shadow); flex: 1; }
  .office-map-note { margin-top: 10px; color: var(--gray); font-size: 0.86rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.03em; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 2px solid #b8d4d8; border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 0.93rem; color: var(--text-dark); background: var(--white); transition: border-color 0.2s; resize: vertical; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
  .btn-submit { width: 100%; padding: 13px; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; letter-spacing: 0.03em; }
  .btn-submit:hover { background: var(--navy); }
  .btn-submit:disabled {
    background: #7ab8c4;
    color: rgba(255,255,255,0.92);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.82;
  }
  .btn-submit:disabled:hover { background: #7ab8c4; }

  /* ── PRODUCTS PAGE ── */
  .products-hero { background: linear-gradient(135deg, var(--navy), #0d3d50); padding: 70px 5%; color: var(--white); }
  .products-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
  .products-hero h1 span { color: var(--orange); }
  .products-hero p { color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.65; }
  .products-body { padding: 70px 5%; }
  .services-page-hero { background: linear-gradient(135deg, var(--navy), #0d3d50); padding: 70px 5%; color: var(--white); text-align: center; }
  .services-page-hero h1 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
  .services-page-hero h1 span { color: var(--orange); }
  .services-page-hero p { color: rgba(255,255,255,0.72); max-width: 620px; line-height: 1.65; margin: 0 auto; }
  .services-page-body { padding: 70px 5%; background: var(--off-white); }
  .services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 0;
  }
  .service-overview-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #b8d4d8;
    border-top: 4px solid var(--blue);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service-overview-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
  }
  .service-overview-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
  }
  .service-readmore {
    margin-top: 4px;
    border: none;
    background: transparent;
    color: var(--blue);
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-align: left;
    cursor: pointer;
    padding: 0;
  }
  .service-readmore:hover { color: var(--orange-dark); }
  .service-jump-box {
    margin-top: 30px;
    background: #e2f0ef;
    border: 1px solid #b8d4d8;
    border-radius: 14px;
    padding: 18px;
  }
  .service-jump-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .service-jump-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .service-jump-btn {
    width: 100%;
    border: 1px solid #b0d4da;
    background: var(--white);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--navy);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .service-jump-btn:hover {
    border-color: var(--light-blue);
    color: var(--blue);
  }
  .services-detail-stack {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .service-detail-section {
    background: var(--white);
    border: 1px solid #b8d4d8;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
    scroll-margin-top: 90px;
  }
  .service-detail-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .service-detail-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
  }
  .service-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin: 16px 0 8px;
  }
  .service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
  }
  .service-feature-card {
    background: #f0f8f7;
    border: 1px solid #c0d8dc;
    border-radius: 12px;
    padding: 14px;
  }
  .service-feature-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .service-feature-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .service-bullets,
  .service-steps {
    margin: 8px 0 0 20px;
    color: var(--text-mid);
    line-height: 1.62;
    font-size: 0.94rem;
  }
  .service-bullets li,
  .service-steps li { margin-bottom: 7px; }
  .services-cta-strip {
    margin-top: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #072030, #051520);
    color: var(--white);
    text-align: center;
    padding: 28px 22px;
    border: 1px solid #0d3d50;
    box-shadow: var(--shadow-lg);
  }
  .services-cta-strip h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .services-cta-strip p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
  }
  .services-cta-strip .cta-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 4px;
  }
  .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }
  .product-card { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); border-top: 5px solid var(--blue); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; height: 100%; }
  .product-card.featured { border-top-color: var(--orange); }
  .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .product-icon { font-size: 2.4rem; margin-bottom: 16px; }
  .product-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
  .product-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.65; margin-bottom: 18px; }
  .product-features { list-style: none; margin-bottom: 20px; }
  .product-features li { font-size: 0.87rem; color: var(--text-mid); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
  .product-features li::before { content: '✓'; color: var(--blue); font-weight: 900; }
  .btn-product { background: var(--off-white); color: var(--navy); border: 2px solid #b8d4d8; padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; border: none; font-family: 'Nunito', sans-serif; }
  .btn-product:hover { background: var(--blue); color: var(--white); }

  /* ── CARD SHIMMER (HOVER) ── */
  .service-card, .price-card, .addon-card, .testi-card, .why-card, .value-card, .job-card, .product-card {
    position: relative;
    overflow: hidden;
  }
  .service-card::before, .price-card::before, .addon-card::before, .testi-card::before, .why-card::before, .value-card::before, .job-card::before, .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -140%;
    width: 56%;
    height: 100%;
    transform: skewX(-18deg);
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.36) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }
  .service-card > *, .price-card > *:not(.price-badge), .addon-card > *, .testi-card > *, .why-card > *, .value-card > *, .job-card > *, .product-card > * {
    position: relative;
    z-index: 2;
  }
  .price-badge {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
  }
  .service-card:hover::before, .price-card:hover::before, .addon-card:hover::before, .testi-card:hover::before, .why-card:hover::before, .value-card:hover::before, .job-card:hover::before, .product-card:hover::before {
    opacity: 1;
    animation: cardShimmer 0.95s ease-out;
  }
  .price-card.basic::before, .price-card.standard::before {
    background: linear-gradient(110deg, rgba(95,110,130,0) 0%, rgba(95,110,130,0.26) 50%, rgba(95,110,130,0) 100%);
  }
  .price-card.premium::before {
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,190,65,0.24) 50%, rgba(255,255,255,0) 100%);
  }
  .price-card.assurance::before {
    background: linear-gradient(110deg, rgba(26,122,138,0) 0%, rgba(26,122,138,0.22) 50%, rgba(26,122,138,0) 100%);
  }

  /* ── FOOTER ── */
  footer { background: var(--navy); color: rgba(255,255,255,0.72); }
  .footer-contact { background: var(--white); padding: 56px 5%; }
  .footer-contact-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .footer-contact-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2rem; color: var(--navy); margin-bottom: 10px; }
  .footer-contact-title span { color: var(--orange); }
  .footer-contact-sub { color: var(--gray); line-height: 1.65; font-size: 0.95rem; margin: 0 auto 24px; max-width: 680px; }
  .quick-contact-form { background: var(--off-white); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); text-align: left; }
  .quick-contact-form h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: 18px; }
  .consent-wrap { display: flex; align-items: flex-start; gap: 8px; margin-top: 8px; }
  .consent-wrap input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
  .consent-wrap .optin-note { margin-top: 0; }
  .consent-wrap + .btn-submit { margin-top: 14px; }
  .optin-note { margin-top: 14px; color: var(--gray); font-size: 0.82rem; line-height: 1.55; }
  .optin-note a { color: var(--blue); text-decoration: none; font-weight: 700; }
  .optin-note a:hover { text-decoration: underline; }

  .footer-bottom-bar { background: #071520; padding: 28px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-brand { display: flex; align-items: center; gap: 10px; }
  .footer-brand img { height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
  .footer-brand-text { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange); }
  .footer-copy { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

  /* ── ANNOUNCEMENT TICKER ── */
  .announce-ticker { width: 100%; background: linear-gradient(90deg, #0d2a36, #1a4a5e, #0d2a36); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; padding: 11px 0; }
  .announce-track { display: flex; width: max-content; animation: announceTicker 28s linear infinite; }
  .announce-msg { white-space: nowrap; font-size: 0.85rem; color: rgba(255,255,255,0.88); padding: 0 32px; letter-spacing: 0.01em; }
  .announce-msg strong { color: #7dd8c6; }
  @keyframes announceTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── ANIMATIONS ── */
  @keyframes placementsTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes cardShimmer { 0% { left: -140%; } 100% { left: 180%; } }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) {
    .placements-track { animation: none; }
    .service-card::before, .price-card::before, .addon-card::before, .testi-card::before, .why-card::before, .value-card::before, .job-card::before, .product-card::before { animation: none; }
  }

  /* ── MOBILE NAV MENU ── */
  @media (max-width: 860px) {
    .hamburger { display: flex; }
    .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: center; padding: 16px 5% 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 999; gap: 4px; border-top: 1px solid var(--light-gray); }
    .nav-links.open { display: flex; }
    .nav-links li { width: 80%; }
    .nav-links a { display: block; text-align: center; border-radius: 8px; padding: 10px 14px; font-size: 1rem; }
    .nav-item { width: 80%; }
    .nav-item.services::after { display: none; }
    .nav-main-link { width: 100%; justify-content: center; gap: 6px; }
    .nav-item.services .nav-dropdown {
      position: static;
      min-width: 100%;
      margin: 2px 10px 6px;
      border-top-width: 2px;
      border-radius: 10px;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
      display: none;
    }
    .nav-item.services.open .nav-dropdown { display: block; }
    .nav-item.services .nav-dropdown a { padding: 11px 14px; font-size: 0.95rem; }
    .services-overview-grid { grid-template-columns: 1fr; }
    .service-jump-list { grid-template-columns: 1fr; }
    .service-feature-grid { grid-template-columns: 1fr; }
    .nav-logo img { height: 46px; max-width: 220px; }
    #hero { flex-direction: column; padding-bottom: 50px; min-height: auto; }
    .hero-content { max-width: 100%; margin-top: 18px; }
    .decision-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-body { grid-template-columns: 1fr; }
    .refer-influence { padding: 24px; }
    .footer-contact-inner { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
    .milestones { gap: 16px; }
    .milestone:not(:last-child)::after { display: none; }
  }

  /* ── SUCCESS TOAST ── */
  .toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: var(--white); padding: 14px 22px; border-radius: 10px; font-weight: 700; font-size: 0.92rem; z-index: 9999; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; box-shadow: var(--shadow-lg); border-left: 4px solid var(--orange); }
  .toast.show { opacity: 1; transform: translateY(0); }
