*,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --red: #d0232a;
        --red-dark: #a01820;
        --yellow: #f5c400;
        --yellow-dark: #d4a800;
        --black: #111111;
        --charcoal: #222222;
        --gray: #666666;
        --light: #f8f4ef;
        --white: #ffffff;
        --border: #e0d8cf;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Lato", sans-serif;
        background: var(--white);
        color: var(--charcoal);
        overflow-x: hidden;
      }

      /* ── TOPBAR ── */
      .topbar {
        background: var(--black);
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.78rem;
        text-align: center;
        padding: 9px 20px;
        letter-spacing: 0.04em;
      }
      .topbar strong {
        color: var(--yellow);
      }

      /* ── HEADER ── */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--white);
        border-bottom: 3px solid var(--red);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        height: 56px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      }
      .logo img {
        height: 34px;
        display: block;
        object-fit: contain;
      }
      nav a {
        color: var(--charcoal);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-left: 2rem;
        transition: color 0.2s;
      }
      nav a:hover {
        color: var(--red);
      }
      .nav-cta {
        background: var(--red) !important;
        color: var(--white) !important;
        padding: 9px 22px;
        border-radius: 3px;
        font-size: 0.82rem !important;
      }
      .nav-cta:hover {
        background: var(--red-dark) !important;
      }

      .header-cta-mobile {
        display: none;
      }
      /* ── HERO ── */
      .hero {
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        overflow: hidden;
      }
      .hero-left {
        background: var(--black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 6% 80px 7%;
        position: relative;
        z-index: 2;
      }
      .hero-left::after {
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        width: 60px;
        background: var(--black);
        clip-path: polygon(0 0, 0 100%, 100% 100%);
        z-index: 3;
      }
      .hero-right {
        position: relative;
        overflow: hidden;
      }
      .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: brightness(0.88);
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(17, 17, 17, 0.5) 0%, transparent 50%);
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--yellow);
        color: var(--black);
        font-family: "Oswald", sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 2px;
        margin-bottom: 22px;
        width: fit-content;
      }
      .hero h1 {
        font-family: "Oswald", sans-serif;
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.06;
        letter-spacing: -0.01em;
        margin-bottom: 18px;
      }
      .hero h1 em {
        font-style: normal;
        color: var(--yellow);
      }
      .hero-sub {
        font-size: 1rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.75;
        margin-bottom: 32px;
        max-width: 460px;
      }
      .hero-stats {
        display: flex;
        gap: 28px;
        margin-bottom: 36px;
        flex-wrap: wrap;
      }
      .stat-num {
        font-family: "Oswald", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--yellow);
        line-height: 1;
      }
      .stat-label {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 3px;
      }
      .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .btn-primary {
        background: var(--yellow);
        color: var(--black);
        font-family: "Oswald", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 13px 30px;
        border-radius: 3px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.15s;
        display: inline-block;
      }
      .btn-primary:hover {
        background: var(--yellow-dark);
        transform: translateY(-2px);
      }
      .btn-outline {
        background: transparent;
        color: var(--white);
        font-family: "Oswald", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 13px 30px;
        border-radius: 3px;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.35);
        transition:
          border-color 0.2s,
          transform 0.15s;
        cursor: pointer;
      }
      .btn-outline:hover {
        border-color: var(--white);
        transform: translateY(-2px);
      }

      /* ── FORM CARD hero ── */
      .hero-form-wrap {
        position: absolute;
        bottom: 40px;
        right: 40px;
        z-index: 10;
        background: var(--white);
        border-radius: 6px;
        padding: 28px 26px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
        width: 320px;
      }
      .hero-form-wrap h3 {
        font-family: "Oswald", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .hero-form-wrap p {
        font-size: 0.78rem;
        color: var(--gray);
        margin-bottom: 16px;
        line-height: 1.5;
      }
      .fg {
        margin-bottom: 11px;
      }
      .fg label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .fg input,
      .fg select {
        width: 100%;
        padding: 9px 12px;
        border: 1.5px solid var(--border);
        border-radius: 3px;
        font-family: "Lato", sans-serif;
        font-size: 0.88rem;
        color: var(--charcoal);
        background: var(--white);
        transition: border-color 0.2s;
        outline: none;
      }
      .fg input:focus,
      .fg select:focus {
        border-color: var(--red);
      }
      .form-submit {
        width: 100%;
        background: var(--red);
        color: var(--white);
        font-family: "Oswald", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 12px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 2px;
      }
      .form-submit:hover {
        background: var(--red-dark);
      }
      .form-disclaimer {
        font-size: 0.68rem;
        color: var(--gray);
        text-align: center;
        margin-top: 8px;
        line-height: 1.4;
      }

      /* ── TRUST BAR ── */
      .trust-bar {
        background: var(--red);
        padding: 18px 5%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--white);
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }
      .trust-icon {
        font-size: 1.3rem;
      }

      /* ── SECTION ── */
      section {
        padding: 80px 5%;
      }
      .section-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .section-tag {
        display: inline-block;
        background: var(--yellow);
        color: var(--black);
        font-family: "Oswald", sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 2px;
        margin-bottom: 14px;
      }
      .section-title {
        font-family: "Oswald", sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        color: var(--black);
        line-height: 1.1;
        margin-bottom: 14px;
      }
      .section-title em {
        font-style: normal;
        color: var(--red);
      }
      .section-sub {
        font-size: 1rem;
        color: var(--gray);
        line-height: 1.7;
      }

      /* ── WHY ── */
      .why-section {
        background: var(--light);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 22px;
        margin-top: 48px;
      }
      .why-card {
        background: var(--white);
        border-radius: 4px;
        padding: 30px 26px;
        border-top: 4px solid transparent;
        transition:
          border-color 0.2s,
          transform 0.2s,
          box-shadow 0.2s;
      }
      .why-card:hover {
        border-color: var(--red);
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      }
      .why-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
      }
      .why-card h4 {
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }
      .why-card p {
        font-size: 0.88rem;
        color: var(--gray);
        line-height: 1.65;
      }

      /* ── PHOTO SPLIT ── */
      .photo-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 520px;
        position: relative;
        overflow: hidden;
      }
      .photo-split-img {
        position: relative;
        overflow: hidden;
      }
      .photo-split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
      }
      .photo-split-img:hover img {
        transform: scale(1.04);
      }
      .photo-split-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(17, 17, 17, 0.7) 0%, transparent 55%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 32px;
      }
      .photo-caption {
        font-family: "Oswald", sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .photo-caption span {
        display: block;
        font-size: 0.78rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 4px;
        font-family: "Lato", sans-serif;
        text-transform: none;
        letter-spacing: 0;
      }

      /* ── HOW IT WORKS ── */
      .how-section {
        background: var(--black);
        color: var(--white);
      }
      .how-section .section-title {
        color: var(--white);
      }
      .how-section .section-sub {
        color: rgba(255, 255, 255, 0.55);
      }
      .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 52px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 4px;
        overflow: hidden;
      }
      .step {
        padding: 32px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .step:last-child {
        border-right: none;
      }
      .step-num {
        font-family: "Oswald", sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--yellow);
        opacity: 0.25;
        line-height: 1;
        margin-bottom: 10px;
      }
      .step h4 {
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .step p {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
      }

      /* ── TESTIMONIALS ── */
      .testimonials-section {
        background: var(--light);
      }
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
        margin-top: 46px;
      }
      .testimonial {
        background: var(--white);
        border-radius: 4px;
        padding: 26px;
        border-left: 4px solid var(--red);
      }
      .stars {
        color: var(--yellow);
        font-size: 0.9rem;
        margin-bottom: 9px;
      }
      .testimonial-text {
        font-size: 0.93rem;
        color: var(--charcoal);
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 14px;
      }
      .testimonial-author {
        font-weight: 700;
        font-size: 0.83rem;
        color: var(--black);
      }
      .testimonial-role {
        font-size: 0.76rem;
        color: var(--gray);
      }

      /* ── CTA BANNER ── */
      .cta-banner {
        background: var(--red);
        padding: 68px 5%;
        text-align: center;
      }
      .cta-banner h2 {
        font-family: "Oswald", sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }
      .cta-banner p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        max-width: 500px;
        margin: 0 auto 28px;
        line-height: 1.6;
      }
      .btn-white {
        background: var(--white);
        color: var(--red);
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 15px 38px;
        border-radius: 3px;
        text-decoration: none;
        display: inline-block;
        transition:
          background 0.2s,
          transform 0.15s;
      }
      .btn-white:hover {
        background: var(--yellow);
        color: var(--black);
        transform: translateY(-2px);
      }

      /* ── FORM SECTION ── */
      .form-section {
        background: var(--white);
      }
      .form-layout {
        display: grid;
        grid-template-columns: 1fr 460px;
        gap: 56px;
        align-items: start;
      }
      .form-info h3 {
        font-family: "Oswald", sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 14px;
        text-transform: uppercase;
      }
      .form-info p {
        font-size: 0.93rem;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .contact-row {
        display: flex;
        align-items: center;
        gap: 11px;
        margin-bottom: 13px;
      }
      .contact-row .icon {
        font-size: 1.2rem;
        width: 32px;
        text-align: center;
      }
      .contact-row span {
        font-size: 0.88rem;
        color: var(--charcoal);
      }
      .contact-row a {
        color: var(--red);
        text-decoration: none;
        font-weight: 700;
      }
      .contact-row a:hover {
        text-decoration: underline;
      }
      .info-box {
        margin-top: 28px;
        padding: 18px 20px;
        background: var(--light);
        border-radius: 4px;
        border-left: 4px solid var(--yellow);
      }
      .info-box strong {
        font-family: "Oswald", sans-serif;
        font-size: 0.88rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .info-box p {
        font-size: 0.82rem;
        color: var(--gray);
        margin-top: 5px;
        line-height: 1.6;
      }
      .main-form {
        background: var(--light);
        border: 1.5px solid var(--border);
        border-radius: 4px;
        padding: 34px 30px;
      }
      .main-form h3 {
        font-family: "Oswald", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      /* ── FOOTER ── */
      footer {
        background: var(--black);
        color: rgba(255, 255, 255, 0.45);
        padding: 28px 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
      }
      .footer-logo {
        font-family: "Oswald", sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--white);
      }
      .footer-logo span {
        color: var(--yellow);
      }
      footer p {
        font-size: 0.76rem;
      }
      footer a {
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
      }
      footer a:hover {
        color: var(--yellow);
      }

      /* ════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════ */
      .float-btns {
        position: fixed;
        bottom: 28px;
        right: 24px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
      }
      .float-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        border: none;
        cursor: pointer;
        border-radius: 50px;
        font-family: "Oswald", sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 12px 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        white-space: nowrap;
        overflow: hidden;
        max-width: 52px; /* collapsed: shows only icon */
      }
      .float-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
        max-width: 260px;
      }
      .float-wa {
        background: #25d366;
        color: #fff;
      }
      .float-call {
        background: var(--red);
        color: #fff;
      }
      .float-btn svg {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
      }
      .float-label {
        overflow: hidden;
        max-width: 0;
        white-space: nowrap;
        transition:
          max-width 0.35s ease,
          opacity 0.3s;
        opacity: 0;
        font-size: 0.82rem;
      }
      .float-btn:hover .float-label {
        max-width: 200px;
        opacity: 1;
      }

      /* ── ANIMATIONS ── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-left > * {
        animation: fadeUp 0.7s ease both;
      }
      .hero-badge {
        animation-delay: 0.1s;
      }
      .hero h1 {
        animation-delay: 0.2s;
      }
      .hero-sub {
        animation-delay: 0.3s;
      }
      .hero-stats {
        animation-delay: 0.35s;
      }
      .hero-actions {
        animation-delay: 0.45s;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 960px) {
        .hero {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .hero-right {
          height: 420px;
        }
        .hero-form-wrap {
          position: relative;
          bottom: auto;
          right: auto;
          width: 100%;
          max-width: 480px;
          margin: 24px auto 0;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }
        .hero-left::after {
          display: none;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
        }
        .step {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .step:nth-child(even) {
          border-right: none;
        }
        .form-layout {
          grid-template-columns: 1fr;
        }
        .photo-split {
          grid-template-columns: 1fr;
        }
        .photo-split-img {
          height: 320px;
        }
      }
      /* ── HAMBURGER MENU ── */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        background: none;
        border: none;
        z-index: 200;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--charcoal);
        border-radius: 2px;
        transition: all 0.3s ease;
      }
      .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .hamburger.open span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .mobile-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 3px solid var(--red);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 9999999;
        padding: 16px 5%;
        flex-direction: column;
        gap: 0;
      }
      .mobile-menu.open {
        display: flex;
      }
      .mobile-menu a {
        color: var(--charcoal);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        display: block;
        transition: color 0.2s;
      }
      .mobile-menu a:last-child {
        border-bottom: none;
      }
      .mobile-menu a:hover {
        color: var(--red);
      }
      .mobile-menu .nav-cta-mobile {
        margin-top: 12px;
        background: var(--red);
        color: var(--white) !important;
        padding: 12px 22px;
        border-radius: 3px;
        text-align: center;
        font-size: 0.85rem !important;
      }
      .mobile-menu .nav-cta-mobile:hover {
        background: var(--red-dark);
      }

      @media (max-width: 600px) {
        .hamburger {
          display: flex;
        }
        nav {
          display: none;
        }
        header {
          height: auto;
          flex-wrap: wrap;
          padding: 10px 5%;
          gap: 8px;
          justify-content: space-between;
          align-items: center;
        }
        .logo img {
          height: 30px;
        }
        .header-cta-mobile {
          display: block;
          width: 100%;
          text-align: center;
          background: var(--red);
          color: var(--white);
          font-family: "Oswald", sans-serif;
          font-size: 0.82rem;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          padding: 10px 16px;
          border-radius: 3px;
          text-decoration: none;
          order: 3;
          transition: background 0.2s;
        }
        .header-cta-mobile:hover {
          background: var(--red-dark);
        }
        .trust-bar {
          gap: 20px;
        }
        .steps {
          grid-template-columns: 1fr;
        }
        .step {
          border-right: none;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .float-btn {
          padding: 14px;
          border-radius: 50%;
          max-width: 52px;
        }
        .float-btn:hover {
          max-width: 52px;
        }
        .float-label {
          display: none;
        }
      }