.elementor-204 .elementor-element.elementor-element-fd8fbce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-9bbd097 */:root {
      --navy:        #08122a;
      --navy-mid:    #0f1e42;
      --navy-light:  #020c22;
      --white:       #ffffff;
      --off-white:   #f4f6fb;
      --amber:       #e8922a;
      --amber-light: #f5a93a;
      --amber-pale:  #fef5e7;
      --text:        #0d1b35;
      --text-muted:  #556080;
      --border:      #dde3f0;
      --success:     #1a7a45;
      --font-head:   'Bebas Neue', Impact, sans-serif;
      --font-body:   'DM Sans', system-ui, sans-serif;
      --shadow-sm:   0 2px 10px rgba(8,18,42,0.08);
      --shadow-md:   0 6px 28px rgba(8,18,42,0.13);
      --shadow-lg:   0 16px 52px rgba(8,18,42,0.18);
      --radius:      14px;
      --radius-sm:   8px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); background: var(--off-white); color: var(--text); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── ANNOUNCEMENT BAR ── */
    .ann-bar {
      background: var(--amber);
      color: var(--navy);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      position: sticky; top: 0; z-index: 1000;
    }
    .ann-bar a { color: var(--navy); font-weight: 700; text-decoration: underline; margin-left: 6px; }

    /* ── NAVBAR ── */
    nav.navbar {
      background: var(--navy);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 68px;
      position: sticky; top: 40px; z-index: 999;
      box-shadow: 0 4px 24px rgba(8,18,42,0.35);
    }
    .nav-logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      color: var(--white);
      line-height: 1.1;
    }
    .nav-logo span { color: var(--amber); display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--amber);
      color: var(--navy);
      font-weight: 700; font-size: 0.9rem;
      padding: 10px 22px; border-radius: 6px;
      display: flex; align-items: center; gap: 7px;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
    .mobile-menu {
      display: none; flex-direction: column; gap: 0;
      background: var(--navy-mid); border-bottom: 2px solid var(--amber);
      position: sticky; top: 108px; z-index: 998;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { padding: 14px 5%; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); }
    .mobile-menu .m-cta { background: var(--amber); color: var(--navy); margin: 12px 5%; border-radius: 8px; text-align: center; font-weight: 700; border: none; }

    /* ══════════════════════════════
       HERO — NEW LAYOUT
    ══════════════════════════════ */
    .hero {
      display: grid;
      grid-template-columns: 55% 45%;
      min-height: calc(100vh - 108px);
      position: relative;
    }

    /* LEFT — IMAGE BACKGROUND WITH TEXT */
    .hero-left {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .hero-bg-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    /* Dark overlay — strong contrast */
    .hero-left::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8,18,42,0.45) 0%,
        rgba(8,18,42,0.72) 50%,
        rgba(8,18,42,0.92) 100%
      );
    }
    .hero-left-inner {
      position: relative; z-index: 2;
      padding: 56px 52px 60px;
    }

    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--amber);
      color: var(--navy);
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 999px;
      margin-bottom: 22px;
      animation: fadeSlideUp 0.6s ease both;
    }
    .live-dot {
      width: 8px; height: 8px; background: var(--navy);
      border-radius: 50%;
      animation: livePulse 1.8s infinite;
    }
    @keyframes livePulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(8,18,42,0.5); }
      50% { box-shadow: 0 0 0 5px rgba(8,18,42,0); }
    }

    h1.hero-title {
      font-family: var(--font-head);
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 400; /* Bebas Neue is bold by design */
      color: var(--white);
      line-height: 1.0;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
      animation: fadeSlideUp 0.6s 0.1s ease both;
    }
    h1.hero-title .accent-line {
      color: var(--amber);
      display: block;
    }

    .hero-location {
      display: inline-flex; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.55);
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeSlideUp 0.6s 0.15s ease both;
    }

    .hero-desc {
      color: rgba(255,255,255,0.78);
      font-size: 1rem; line-height: 1.75;
      margin-bottom: 36px; max-width: 480px;
      font-weight: 400;
      animation: fadeSlideUp 0.6s 0.2s ease both;
    }

    /* CTA BUTTONS */
    .hero-ctas {
      display: flex; gap: 14px; flex-wrap: wrap;
      margin-bottom: 36px;
      animation: fadeSlideUp 0.6s 0.25s ease both;
    }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--amber);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 1.35rem;
      letter-spacing: 0.06em;
      padding: 16px 32px; border-radius: var(--radius-sm);
      box-shadow: 0 6px 24px rgba(232,146,42,0.55);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .btn-hero-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,146,42,0.65); }
    .btn-hero-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.4);
      font-family: var(--font-head);
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      padding: 14px 28px; border-radius: var(--radius-sm);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-hero-secondary:hover { border-color: var(--amber); color: var(--amber); }

    /* CALL BLOCK */
    .hero-call-block {
      display: inline-flex; align-items: center; gap: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-sm);
      padding: 14px 20px;
      animation: fadeSlideUp 0.6s 0.3s ease both;
      backdrop-filter: blur(6px);
    }
    .call-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--amber);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      animation: ringShake 3.5s 2s infinite;
    }
    @keyframes ringShake {
      0%,88%,100% { transform: rotate(0); }
      90% { transform: rotate(-14deg); }
      92% { transform: rotate(14deg); }
      94% { transform: rotate(-9deg); }
      96% { transform: rotate(9deg); }
    }
    .call-info .call-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 2px; }
    .call-info .call-num {
      font-family: var(--font-head);
      font-size: 1.7rem; letter-spacing: 0.04em;
      color: var(--white);
    }
    .call-info .call-num a { color: inherit; }

    /* Hero trust badges */
    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 24px;
      animation: fadeSlideUp 0.6s 0.35s ease both;
    }
    .hero-badge {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 6px;
      padding: 6px 14px;
      color: rgba(255,255,255,0.78);
      font-size: 0.78rem; font-weight: 500;
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* RIGHT — FORM PANEL */
    .hero-right {
      background: var(--navy-mid);
      display: flex; align-items: stretch; justify-content: center;
      padding: 0;
      position: relative;
    }
    /* accent strip at top */
    .hero-right::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--amber-light));
    }

    .form-panel {
      width: 100%;
      padding: 44px 40px 40px;
      display: flex; flex-direction: column;
      animation: fadeSlideUp 0.7s 0.2s ease both;
      overflow-y: auto;
    }

    .form-panel-header {
      margin-bottom: 24px;
    }
    .form-panel-tag {
      display: inline-block;
      background: var(--amber);
      color: var(--navy);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 4px 14px; border-radius: 999px;
      margin-bottom: 14px;
    }
    .form-panel-header h2 {
      font-family: var(--font-head);
      font-size: 2.2rem;
      letter-spacing: 0.05em;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 6px;
    }
    .form-panel-header p {
      font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.6;
    }

    /* CATEGORY TABS */
    .form-cats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 22px;
    }
    .form-cat-btn {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-sm);
      padding: 10px 6px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      color: rgba(255,255,255,0.55);
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.04em;
    }
    .form-cat-btn .cat-icon { font-size: 1.3rem; display: block; margin-bottom: 4px; }
    .form-cat-btn:hover,
    .form-cat-btn.active {
      background: var(--amber);
      border-color: var(--amber);
      color: var(--navy);
    }

    /* FORM FIELDS */
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-size: 0.74rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: 0.93rem;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--amber);
      background: rgba(255,255,255,0.1);
    }
    .form-group select option { background: var(--navy-mid); color: var(--white); }
    .form-group textarea { resize: vertical; min-height: 76px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .btn-submit {
      width: 100%;
      background: var(--amber);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 1.4rem;
      letter-spacing: 0.07em;
      padding: 16px 24px;
      border: none; border-radius: var(--radius-sm);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(232,146,42,0.4);
      margin-top: 6px;
    }
    .btn-submit:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,146,42,0.5); }

    .form-divider { text-align: center; margin: 14px 0 12px; position: relative; }
    .form-divider::before {
      content: '';
      position: absolute; left: 0; top: 50%;
      width: 100%; height: 1px; background: rgba(255,255,255,0.1);
    }
    .form-divider span { background: var(--navy-mid); padding: 0 14px; position: relative; font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 500; }

    .btn-call-panel {
      width: 100%;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-sm);
      padding: 13px 24px;
      font-family: var(--font-head);
      font-size: 1.25rem;
      letter-spacing: 0.07em;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: border-color 0.2s, color 0.2s;
      text-decoration: none;
    }
    .btn-call-panel:hover { border-color: var(--amber); color: var(--amber); }

    .form-trust {
      display: flex; justify-content: center; gap: 18px;
      margin-top: 16px; flex-wrap: wrap;
    }
    .form-trust-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(255,255,255,0.35); }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--navy);
      display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
      border-top: 3px solid var(--amber);
    }
    .stat-item {
      flex: 1; min-width: 140px;
      padding: 24px 16px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3vw, 2.8rem);
      letter-spacing: 0.04em;
      color: var(--amber);
      display: block; line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

    /* ── SECTIONS ── */
    .section { padding: 80px 6%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 10px;
      background: var(--amber-pale);
      padding: 4px 14px; border-radius: 999px;
    }
    h2.section-title {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      letter-spacing: 0.05em;
      color: var(--navy);
      line-height: 1.05;
      margin-bottom: 14px;
    }
    h2.section-title .highlight { color: var(--amber); }
    .section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; margin-bottom: 52px; }

    /* ── SERVICE CARDS ── */
    .services-bg { background: var(--off-white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .svc-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
    }
    .svc-card-img {
      width: 100%; height: 180px;
      object-fit: cover;
      display: block;
    }
    .svc-card-body { padding: 24px 22px 22px; }
    .svc-card-top {
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--amber-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .svc-card:hover .svc-card-top { transform: scaleX(1); }
    .svc-icon-wrap {
      width: 48px; height: 48px;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 14px;
    }
    h3.svc-title {
      font-family: var(--font-head);
      font-size: 1.35rem;
      letter-spacing: 0.04em;
      color: var(--navy);
      margin-bottom: 8px; line-height: 1.1;
    }
    .svc-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }
    .svc-link {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 14px;
      font-size: 0.83rem; font-weight: 600;
      color: var(--amber);
      transition: gap 0.2s;
    }
    .svc-card:hover .svc-link { gap: 8px; }

    /* ── PROCESS ── */
    .process-bg { background: var(--navy); }
    .process-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
      position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute;
      top: 38px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--amber), rgba(232,146,42,0.2));
    }
    .proc-step { text-align: center; padding: 0 20px; }
    .proc-num-wrap {
      width: 76px; height: 76px;
      background: var(--navy-mid);
      border: 2px solid var(--amber);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      position: relative; z-index: 1;
    }
    .proc-num {
      font-family: var(--font-head);
      font-size: 2rem;
      letter-spacing: 0.02em;
      color: var(--amber);
    }
    h4.proc-title {
      font-family: var(--font-head);
      font-size: 1.15rem;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 10px;
    }
    .proc-step p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

    /* ── WHY US ── */
    .why-layout {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .why-list { display: flex; flex-direction: column; gap: 20px; }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 20px; background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .why-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
    .why-check {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-check svg { color: var(--amber); }
    .why-item-text strong {
      font-family: var(--font-head);
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      color: var(--navy); display: block; margin-bottom: 4px;
    }
    .why-item-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

    .why-cta-box {
      background: var(--navy);
      border-radius: 20px;
      padding: 52px 42px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .why-cta-box::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,146,42,0.15), transparent 70%);
      pointer-events: none;
    }
    .why-cta-box-inner { position: relative; z-index: 1; }
    .why-cta-tag {
      display: inline-block;
      background: var(--amber);
      color: var(--navy);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 999px; margin-bottom: 20px;
    }
    .why-cta-box h3 {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 2.8vw, 2.4rem);
      letter-spacing: 0.05em;
      color: var(--white);
      line-height: 1.1; margin-bottom: 10px;
    }
    .why-cta-box p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; margin-bottom: 28px; }
    .cta-phone-big {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      letter-spacing: 0.04em;
      color: var(--amber);
      display: block; margin-bottom: 22px;
    }
    .cta-phone-big a { color: inherit; }
    .btn-main {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--amber);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 1.3rem;
      letter-spacing: 0.06em;
      padding: 16px 32px; border-radius: var(--radius-sm);
      width: 100%;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(232,146,42,0.4);
    }
    .btn-main:hover { background: var(--amber-light); transform: translateY(-2px); }

    /* ── REVIEWS ── */
    .reviews-bg { background: var(--navy); }
    .reviews-bg .section-tag { background: rgba(232,146,42,0.18); color: var(--amber); }
    .reviews-bg h2.section-title { color: var(--white); }
    .reviews-bg .section-sub { color: rgba(255,255,255,0.5); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .review-card {
      background: rgba(255,255,255,0.05);
      border-radius: var(--radius);
      padding: 30px 26px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.22s, box-shadow 0.22s;
      display: flex; flex-direction: column;
    }
    .review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
    .review-quote { font-size: 2.2rem; color: var(--amber); line-height: 1; margin-bottom: 6px; font-family: Georgia, serif; }
    .review-text { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.75; flex: 1; margin-bottom: 22px; }
    .reviewer { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
    .reviewer-avatar {
      width: 46px; height: 46px; flex-shrink: 0;
      background: var(--amber);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-size: 1rem;
      letter-spacing: 0.04em;
      color: var(--navy);
    }
    .reviewer-name { font-weight: 600; font-size: 0.92rem; color: var(--white); display: block; }
    .reviewer-loc { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

    /* ── AREAS ── */
    .areas-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .area-tag {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 0.88rem; font-weight: 600;
      color: var(--text);
      transition: all 0.2s; cursor: default;
    }
    .area-tag:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

    /* ── FAQ ── */
    .faq-bg { background: var(--off-white); }
    .faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .faq-item.open { box-shadow: var(--shadow-md); border-color: var(--amber); }
    .faq-q {
      width: 100%; background: none; border: none;
      padding: 20px 24px;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      font-family: var(--font-body); font-size: 0.98rem; font-weight: 600;
      color: var(--navy); text-align: left; cursor: pointer;
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--off-white); }
    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--off-white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--amber); font-weight: 700;
      transition: transform 0.3s, background 0.2s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber); color: var(--navy); }
    .faq-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.2s;
      padding: 0 24px;
    }
    .faq-item.open .faq-body { max-height: 250px; padding: 0 24px 20px; }
    .faq-body p { font-size: 0.94rem; color: var(--text-muted); line-height: 1.78; }

    /* ── FINAL CTA BAND ── */
    .final-cta-section {
      background: var(--navy);
      border-top: 4px solid var(--amber);
      padding: 72px 6%;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .final-cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,146,42,0.08), transparent 70%);
    }
    .final-cta-section .inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
    .final-cta-section h2 {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 0.05em;
      color: var(--white); line-height: 1.05;
      margin-bottom: 14px;
    }
    .final-cta-section h2 .accent { color: var(--amber); }
    .final-cta-section p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
    .final-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
    .btn-lg-amber {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--amber);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      padding: 18px 40px; border-radius: var(--radius-sm);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 22px rgba(232,146,42,0.45);
    }
    .btn-lg-amber:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,146,42,0.5); }
    .btn-lg-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.25);
      font-family: var(--font-head);
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      padding: 16px 32px; border-radius: var(--radius-sm);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-lg-outline:hover { border-color: var(--amber); color: var(--amber); }

    /* ── FOOTER ── */
    footer {
      background: #040b18;
      padding: 52px 6% 28px;
      color: rgba(255,255,255,0.4);
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
    .footer-logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      color: var(--white); margin-bottom: 12px;
    }
    .footer-logo span { color: var(--amber); }
    .footer-desc { font-size: 0.87rem; line-height: 1.72; margin-bottom: 20px; }
    .footer-cert { display: flex; flex-wrap: wrap; gap: 8px; }
    .cert-badge {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 0.73rem; color: rgba(255,255,255,0.45); font-weight: 500;
    }
    .footer-col h5 {
      font-family: var(--font-head);
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: var(--amber); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 20px;
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
      font-size: 0.79rem;
    }

    /* ── FLOAT CALL BTN ── */
    .float-btn {
      display: none;
      position: fixed; bottom: 22px; right: 22px; z-index: 2000;
      background: var(--amber);
      color: var(--navy);
      width: 62px; height: 62px;
      border-radius: 50%;
      align-items: center; justify-content: center;
      box-shadow: 0 6px 22px rgba(232,146,42,0.6);
      font-size: 1.6rem;
      animation: ringShake 3.5s 2s infinite;
      border: 3px solid var(--white);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .reviews-grid  { grid-template-columns: repeat(2,1fr); }
      .footer-grid   { grid-template-columns: 1fr 1fr; }
      .process-grid  { grid-template-columns: repeat(2,1fr); gap: 32px; }
      .process-grid::before { display: none; }
      .hero { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 820px) {
      .hero { grid-template-columns: 1fr; min-height: unset; }
      .hero-left { min-height: 65vh; }
      .hero-left-inner { padding: 40px 28px 44px; }
      .why-layout { grid-template-columns: 1fr; gap: 40px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      nav.navbar .nav-cta { display: none; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .reviews-grid  { grid-template-columns: 1fr; }
      .footer-grid   { grid-template-columns: 1fr; }
      .form-row      { grid-template-columns: 1fr; }
      .stats-bar     { flex-direction: column; }
      .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .float-btn     { display: flex; }
      .final-cta-btns { flex-direction: column; align-items: stretch; }
      .btn-lg-amber, .btn-lg-outline { justify-content: center; }
      .section { padding: 56px 5%; }
      .process-grid { grid-template-columns: 1fr; }
      .form-cats { grid-template-columns: repeat(2,1fr); }
      .hero-ctas { flex-direction: column; }
      .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }/* End custom CSS */