 :root {
      --orange: #f7941d;
      --orange-dark: #e8830a;
      --navy: #2b2660;
      --navy-2: #332c72;
      --text: #2c2c3a;
      --gray-bg: #f4f4f6;
      --gray-line: #e3e3e8;
      --muted: #6b6b78;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.5;
      background: #fff;
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      font-weight: 800;
    }

    p {
      margin: 0;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .wrap {
      max-width: 100%;
      margin: 0 4px;
      padding: 0 24px;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      letter-spacing: .3px;
      transition: background .2s ease, transform .15s ease;
    }

    .btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--navy);
      color: var(--navy);
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid var(--gray-line);
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 50;
    }

    .logo {
      display: flex;
      align-items: baseline;
      gap: 2px;
      font-weight: 800;
      font-size: 24px;
    }

    .logo .my {
      color: var(--navy);
    }

    .logo .rto {
      background: var(--orange);
      color: #fff;
      padding: 2px 8px;
      border-radius: 4px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: 100px;
    }

    nav .nav-links {
      display: flex;
      gap: 30px;
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }

    nav .nav-links span.chev {
      font-size: 10px;
      color: var(--orange);
      margin-left: 4px;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger svg {
      display: block;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: #fff;
      border-bottom: 1px solid var(--gray-line);
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      padding: 10px 24px 18px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      padding: 12px 0;
      font-weight: 600;
      color: var(--navy);
      border-bottom: 1px solid var(--gray-line);
      font-size: 15px;
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    .mobile-nav .btn {
      margin-top: 14px;
      text-align: center;
    }

    /* Hero heading */
    .hero {
      text-align: center;
      padding: 56px 24px 30px;
    }

    .hero h1 {
      font-size: 38px;
      color: var(--orange);
    }

    .hero p.tagline {
      font-size: 18px;
      color: var(--navy);
      font-weight: 700;
      margin-top: 10px;
    }

    /* Services section */
    .services-section {
      background: var(--gray-bg);
      padding: 50px 0 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr 1.1fr;
      gap: 40px;
    }

    .services-intro h2 {
      font-size: 30px;
      color: var(--navy);
      line-height: 1.2;
    }

    .divider {
      width: 60px;
      height: 4px;
      background: var(--orange);
      margin: 14px 0 22px;
      border-radius: 2px;
    }

    .services-col h3 {
      font-size: 19px;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .services-col h3 .icon-badge {
      width: 80px;
      height: 80px;
      border-radius: 6px;
      /* background: var(--navy); */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .services-col li {
      padding: 8px 0;
      border-top: 1px solid var(--gray-line);
      color: var(--text);
      font-size: 15px;
      position: relative;
      padding-left: 16px;
    }

    .services-col li:before {
      content: "–";
      position: absolute;
      left: 0;
      color: var(--navy);
      font-weight: 700;
    }

    /* Icon strip */
    .icon-strip {
      padding: 56px 0 20px;
    }

    .icon-strip-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      text-align: center;
    }

    .icon-strip-grid .item {
      padding: 0 10px;
    }

    .icon-strip-grid .icon-circle {
      width: 78px;
      height: 78px;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-strip-grid .label {
      font-size: 14px;
      color: var(--text);
    }

    /* Consultant banner */
    .consultant-title {
      text-align: center;
      padding: 50px 24px 40px;
    }

    .consultant-title h2 {
      font-size: 24px;
      color: var(--navy);
    }

    .consultant-title p {
      font-size: 15px;
      color: var(--muted);
      margin-top: 6px;
      font-weight: 600;
    }

    /* Feature grid (simple/fast/hassle-free etc) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 50px;
      padding-bottom: 70px;
    }

    .feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .feature .ficon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
    }

    .feature h4 {
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .feature p {
      font-size: 14px;
      color: var(--muted);
    }

    /* Dark banner */
    .dark-banner {
      background: var(--navy);
      color: #fff;
      padding: 60px 0;
    }

    .dark-banner .eyebrow {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .5px;
      color: #c9c6e8;
      margin-bottom: 36px;
    }

    .dark-banner .my-rto-label {
      font-weight: 800;
      font-size: 16px;
    }

    .dark-banner .small-divider {
      width: 44px;
      height: 3px;
      background: var(--orange);
      margin: 12px 0 22px;
    }

    .dark-banner h2 {
      font-size: 32px;
      line-height: 1.25;
      max-width: 760px;
      font-weight: 800;
    }

    .dark-banner .sub {
      display: inline-block;
      margin-top: 26px;
      background: #e9e9ec;
      color: #1c1c2e;
      padding: 10px 20px;
      font-weight: 700;
      font-size: 15px;
    }

    /* Book appointment strip */
    .book-strip {
      padding: 60px 24px 20px;
      text-align: center;
    }

    .book-strip p {
      font-size: 18px;
      color: var(--text);
    }

    .book-strip a.underline {
      text-decoration: underline;
      font-weight: 700;
      color: var(--text);
    }

    .trio {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 26px;
      font-weight: 700;
      color: var(--navy);
      font-size: 17px;
    }

    .trio span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* How it works */
    .how-section {
      background: var(--gray-bg);
      margin: 60px 24px;
      border-radius: 6px;
      padding: 50px 60px 60px;
    }

    .how-section h2 {
      font-size: 32px;
      color: var(--navy);
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px 60px;
      margin-top: 40px;
    }

    .how-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .how-step .num {
      font-size: 30px;
      font-weight: 800;
      color: var(--navy);
      min-width: 56px;
    }

    .how-step .content h4 {
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .how-step .content p {
      font-size: 14.5px;
      color: var(--text);
      margin-bottom: 14px;
    }

    .how-step .btn {
      display: block;
      width: fit-content;
      margin-bottom: 10px;
    }

    .how-step .or {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
      margin: 6px 0;
    }

    .how-step .illus {
      width: 120px;
      height: 100px;
      flex-shrink: 0;
    }

    .how-step.center-illus {
      align-items: center;
    }

    /* Stats */
    .stats-badge {
      max-width: 520px;
      margin: 70px auto 0;
      border: 2px solid var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 20px;
      font-weight: 800;
      font-size: 18px;
      color: var(--navy);
    }

    .stats-badge .logo {
      font-size: 20px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      text-align: center;
      padding: 40px 24px 70px;
      max-width: 900px;
      margin: 0 auto;
    }

    .stats-grid .num {
      font-size: 42px;
      font-weight: 800;
      color: #c9c9cf;
    }

    .stats-grid .label {
      font-size: 12.5px;
      letter-spacing: 1px;
      font-weight: 700;
      color: var(--navy);
      margin-top: 6px;
    }

    /* CTA banner */
    .cta-banner {
      background: var(--navy);
      padding: 34px 0;
    }

    .cta-banner .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cta-banner h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }

    /* Footer */
    footer {
      background: #fbfbfc;
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1.3fr 1.1fr;
      gap: 30px;
      padding-bottom: 40px;
    }

    .footer-grid .logo {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .footer-tag {
      color: var(--orange);
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .footer-desc {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.7;
    }

    .dmca {
      margin-top: 16px;
      background: #111;
      color: #fff;
      font-size: 10px;
      padding: 4px 8px;
      display: inline-block;
      border-radius: 3px;
    }

    footer h5 {
      font-size: 15px;
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: .5px;
    }

    footer .footer-links li {
      padding: 6px 0;
      font-size: 14px;
      color: var(--text);
      position: relative;
      padding-left: 16px;
    }

    footer .footer-links li:before {
      content: "–";
      position: absolute;
      left: 0;
      color: var(--navy);
    }

    .services-foot-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .services-foot-item .sicon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .services-foot-item p {
      font-size: 14px;
      color: var(--text);
    }

    .call-box {
      border: 2px solid var(--orange);
      border-radius: 6px;
      padding: 14px 20px;
      text-align: center;
      margin-bottom: 20px;
    }

    .call-box p {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
    }

    .call-box .num {
      font-size: 17px;
      color: var(--orange);
      font-weight: 800;
      margin-top: 4px;
    }

    footer .contact h5 {
      margin-top: 0;
    }

    footer .contact p {
      font-size: 14px;
      margin: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
    }

    .social {
      display: flex;
      gap: 14px;
      margin-top: 16px;
    }

    .social a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--gray-line);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-bottom {
      border-top: 1px solid var(--gray-line);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
    }

    .footer-bottom a {
      margin-left: 18px;
      color: var(--muted);
    }

    /* CTA mobile actions - hidden on desktop */
    .cta-mobile-actions {
      display: none;
    }

    .cta-icon-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .call-now-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    /* Accordion chevron hidden by default (desktop shows plain list) */
    .acc-chev {
      display: none;
    }

    .acc-toggle {
      cursor: default;
    }

    @media(max-width:900px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .icon-strip-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .how-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cta-banner .wrap {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      nav .nav-links {
        display: none;
      }
    }

    /* ===== Mobile phone layout (matches reference mock) ===== */
    @media(max-width:640px) {
      .wrap {
        padding: 0 18px;
      }

      /* Header */
      header {
        padding: 14px 0;
      }

      .logo {
        font-size: 20px;
      }

      nav .btn {
        display: none;
      }

      .hamburger {
        display: block;
        /* margin-left: 200px; */
      }

      /* Hero */
      .hero {
        text-align: left;
        padding: 28px 18px 20px;
      }

      .hero h1 {
        font-size: 24px;
        line-height: 1.25;
      }

      .hero p.tagline {
        font-size: 14px;
        margin-top: 8px;
      }

      /* Services -> accordion */
      .services-section {
        padding: 24px 0 30px;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .services-intro .btn {
        display: block;
        text-align: center;
      }

      .services-intro h2 {
        font-size: 24px;
      }

      .services-col.accordion {
        background: #fff;
        border-radius: 6px;
        overflow: hidden;
      }

      .acc-toggle {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 0;
        padding: 16px;
        background: var(--gray-bg);
      }

      /* .acc-toggle .icon-badge {
        background: transparent;
        width: auto;
        height: auto;
      } */

      .acc-title {
        flex: 1;
        font-size: 15px;
      }

      .acc-chev {
        display: inline-block;
        font-size: 24px;
        color: var(--muted);
        font-weight: 400;
        transform: rotate(0deg);
        transition: transform .2s ease;
      }

      .services-col.open .acc-chev {
        transform: rotate(90deg);
      }

      .acc-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 16px;
        background: #fff;
      }

      .services-col.open .acc-body {
        max-height: 600px;
        padding: 10px 16px 16px;
      }

      /* Icon strip */
      .icon-strip {
        padding: 30px 0 10px;
      }

      .icon-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
      }

      /* Consultant title */
      .consultant-title {
        padding: 30px 18px 24px;
      }

      .consultant-title h2 {
        font-size: 19px;
      }

      .consultant-title p {
        font-size: 13px;
      }

      /* Features */
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 16px;
        padding-bottom: 40px;
      }

      .feature {
        flex-direction: column;
        gap: 10px;
      }

      .feature .ficon {
        width: 38px;
        height: 38px;
      }

      .feature h4 {
        font-size: 15px;
      }

      .feature p {
        font-size: 12.5px;
      }

      /* Dark banner */
      .dark-banner {
        padding: 34px 0;
      }

      .dark-banner h2 {
        font-size: 22px;
      }

      .dark-banner .sub {
        font-size: 13px;
        padding: 10px 14px;
      }

      /* Book strip */
      .book-strip {
        padding: 34px 18px 10px;
      }

      .book-strip p {
        font-size: 16px;
      }

      .trio {
        gap: 26px;
        font-size: 14px;
        flex-wrap: wrap;
      }

      /* How it works */
      .how-section {
        margin: 34px 12px;
        padding: 30px 20px 34px;
      }

      .how-section h2 {
        font-size: 24px;
      }

      .how-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 26px;
      }

      .how-step {
        flex-direction: column;
      }

      .how-step .num {
        font-size: 24px;
      }

      .how-step .illus {
        width: 100%;
        max-width: 260px;
        height: auto;
        margin-top: 10px;
      }

      /* Stats */
      .stats-badge {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin: 40px auto 0;
        font-size: 16px;
        padding: 16px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px 18px 40px;
        gap: 26px;
      }

      .stats-grid .num {
        font-size: 36px;
      }

      /* CTA banner */
      .cta-banner {
        padding: 30px 0;
      }

      .cta-banner h3 {
        font-size: 17px;
        margin-bottom: 18px;
      }

      .cta-desktop-btn {
        display: none;
      }

      .cta-mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .cta-icon-row {
        display: flex;
        gap: 16px;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 26px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: left;
      }

      .footer-bottom span:last-child a {
        margin-left: 0;
        margin-right: 16px;
      }
    }

    a:hover{
        color: #e8830a;
    }


    .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
}

/* SERVICES */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* First dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 220px;

    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    display: none;
    z-index: 999;
}

/* Show Services dropdown */
.nav-dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu > a,
.dropdown-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 15px;

    color: #222;
    text-decoration: none;
}

.dropdown-menu > a:hover,
.dropdown-item > a:hover {
    background: #f5f5f5;
}


/* Nested dropdown */
.dropdown-item.nested {
    position: relative;
}

.nested-menu {
    position: absolute;

    top: 0;
    left: 100%;

    width: 220px;

    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    display: none;
}

/* Show nested dropdown */
.dropdown-item.nested:hover > .nested-menu {
    display: block;
}

.nested-menu a {
    display: block;
    padding: 12px 15px;

    color: #222;
    text-decoration: none;
}

.nested-menu a:hover {
    background: #f5f5f5;
}

.nested-arrow {
    font-size: 18px;
}


    .btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      letter-spacing: .3px;
      transition: background .2s ease, transform .15s ease;
    }
    .btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }

    /* ----- HEADER (sticky, flex) ----- */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-line);
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 999;
    }
    .logo img { height: 60px; width: auto; }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a { font-weight: 600; font-size: 14px; color: var(--navy); }
    .nav-links a:hover { color: var(--orange-dark); }

    /* dropdown desktop */
    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }
    .nav-dropdown-toggle .chev { font-size: 12px; color: var(--orange); margin-left: 2px; }
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid var(--gray-line);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      display: none;
      z-index: 999;
      padding: 6px 0;
      border-radius: 6px;
    }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-item { position: relative; }
    .dropdown-item > a, .dropdown-menu > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 18px;
      font-weight: 500;
      font-size: 14px;
      color: var(--text);
    }
    .dropdown-item > a:hover, .dropdown-menu > a:hover { background: var(--gray-bg); }
    .nested-arrow { font-size: 18px; color: var(--muted); }
    .nested-menu {
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 220px;
      background: #fff;
      border: 1px solid var(--gray-line);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      display: none;
      border-radius: 6px;
      padding: 6px 0;
    }
    .dropdown-item.nested:hover .nested-menu { display: block; }
    .nested-menu a {
      display: block;
      padding: 10px 18px;
      font-size: 13px;
      color: var(--text);
    }
    .nested-menu a:hover { background: var(--gray-bg); }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger svg { display: block; }

    /* mobile nav (slide down) */
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: #fff;
      border-bottom: 1px solid var(--gray-line);
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      padding: 14px 24px 24px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.05);
      z-index: 999;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 14px 0;
      font-weight: 600;
      color: var(--navy);
      border-bottom: 1px solid var(--gray-line);
      font-size: 15px;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav .btn { margin-top: 16px; text-align: center; }

    /* mobile accordion inside mobile nav */
    .mobile-accordion {
      border-bottom: 1px solid var(--gray-line);
    }
    .mobile-accordion .acc-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      font-weight: 600;
      color: var(--navy);
      font-size: 15px;
      cursor: pointer;
    }
    .mobile-accordion .acc-header .arrow { font-size: 18px; transition: transform .2s; }
    .mobile-accordion.active .acc-header .arrow { transform: rotate(90deg); }
    .mobile-accordion .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 8px;
    }
    .mobile-accordion.active .acc-body {
      max-height: 800px;
      padding-bottom: 12px;
    }
    .mobile-accordion .acc-body a {
      display: block;
      padding: 8px 0;
      border-bottom: none !important;
      font-weight: 400;
      font-size: 14px;
      color: var(--text);
    }
    .mobile-accordion .acc-body a:hover { color: var(--orange); }

    /* Hero (quick) */
    .hero { text-align: center; padding: 40px 24px 20px; }
    .hero h1 { font-size: 34px; color: var(--orange); }
    .hero p.tagline { font-size: 18px; color: var(--navy); font-weight: 700; margin-top: 8px; }

    /* dummy sections for demo */
    .demo-section { background: var(--gray-bg); padding: 40px 0; text-align: center; }
    .demo-section h2 { color: var(--navy); }

    /* responsive */
    @media(max-width: 900px) {
      .nav-links { display: none; }
      nav .btn { display: none; }
      .hamburger { display: block; }
      .header-inner { flex-wrap: nowrap; }
    }
    @media(max-width: 640px) {
      .wrap { padding: 0 18px; }
      .hero h1 { font-size: 26px; }
      .logo img { height: 48px; }
    }
    /* footer placeholder */
    footer { background: #fbfbfc; padding: 40px 0 20px; border-top: 1px solid var(--gray-line); text-align: center; color: var(--muted); }