<style>

.hero-section{
  min-height:70vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(
      135deg,
      #ffe8e8 0%,
      #fff5f0 50%,
      #e8f0ff 100%
    );
}

.hero-circle{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
}

.hero-circle-1{
  width:300px;
  height:300px;
  background:rgba(204,0,0,0.08);
  top:10%;
  left:5%;
}

.hero-circle-2{
  width:350px;
  height:350px;
  background:rgba(0,123,255,0.08);
  bottom:10%;
  right:10%;
}

.hero-circle-3{
  width:500px;
  height:500px;
  background:rgba(255,193,7,0.05);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.hero-image{
  height:520px;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.6),
      transparent
    );
}

.hero-icon-box{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,0.2);
  backdrop-filter:blur(8px);
  font-size:20px;
}

.floating-card{
  position:absolute;
  top:40px;
  left:-20px;
  max-width:250px;
}

.satisfaction-box{
  position:absolute;
  bottom:80px;
  right:-10px;
  background:
    linear-gradient(
      135deg,
      #cc0000,
      #8b0000
    );

  padding:20px 25px;
  border-radius:20px;
}

@media(max-width:991px){

  .hero-image{
    height:400px;
  }

  .floating-card{
    left:10px;
  }

  .satisfaction-box{
    right:10px;
  }

}

 /* Video Controls */

        .sf-red {
        color: #c90000;
    }

    .btn-wa {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #25d366;
        color: #fff;
        font-weight: 700;
        font-size: 17px;
        padding: 16px 32px;
        border-radius: 100px;
        border: none;
        text-decoration: none;
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
        transition: transform .15s, box-shadow .15s, background .15s;
        white-space: nowrap;
    }

    .btn-wa:hover {
        background: #128C7E;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
    }

    .btn-wa:active {
        transform: translateY(0);
    }

    .btn-wa-icon {
        width: 28px;
        height: 28px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .btn-wa-icon svg {
        width: 17px;
        height: 17px;
    }

    .sf-urgency {
        background: #c90000;
        color: #fff;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    .sf-urgency span {
        opacity: .8;
        font-weight: 400;
    }

    .sf-hero {
        background: linear-gradient(135deg, #fff7f7 0%, #fff 60%);
        overflow: hidden;
        position: relative;
        padding: 80px 0 70px;
    }

    .sf-hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(201, 0, 0, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .sf-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff0f0;
        color: #c90000;
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .sf-hero h1 {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .sf-hero-sub {
        font-size: 18px;
        color: #6b7280;
        max-width: 520px;
        line-height: 1.65;
        margin-bottom: 32px;
    }

    .sf-trust-strip {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-top: 28px;
        padding-top: 28px;
        border-top: 1px solid #e5e7eb;
    }

    .sf-trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
    }

    .sf-trust-item i {
        color: #c90000;
        font-size: 18px;
    }

    .sf-video-wrapper {
        position: relative;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .sf-video-reel {
        width: 100%;
        aspect-ratio: 9/16;
        max-height: 560px;
        background: #1a1a1a;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sf-video-reel video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sf-video-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        text-align: center;
        padding: 24px;
        color: #fff;
        height: 100%;
        background: linear-gradient(160deg, #1c0000 0%, #2d0000 50%, #1a1a1a 100%);
    }

    .sf-play-btn {
        width: 72px;
        height: 72px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.15);
        transition: transform .2s;
    }

    .sf-play-btn:hover {
        transform: scale(1.08);
    }

    .sf-play-btn i {
        font-size: 30px;
        color: #fff;
        margin-left: 4px;
    }

    .sf-video-label {
        font-size: 13px;
        opacity: .55;
    }

    .sf-video-badge {
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 100px;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .sf-video-badge .sf-dot {
        width: 10px;
        height: 10px;
        background: #25d366;
        border-radius: 50%;
        animation: sfpulse 1.5s infinite;
    }

    /* Video controls */
    .sf-video-controls {
        position: absolute;
        bottom: 16px;
        left: 16px;
        right: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(0, 0, 0, 0.36);
        padding: 8px 10px;
        border-radius: 12px;
        backdrop-filter: blur(6px);
    }

    .sf-control-btn {
        background: transparent;
        border: none;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        cursor: pointer;
        font-size: 18px;
    }

    .sf-control-btn:focus {
        outline: 2px solid rgba(255, 255, 255, 0.18);
    }

    .sf-progress-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sf-progress {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 6px;
    }

    .sf-progress::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px;
        height: 12px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .sf-time {
        color: #fff;
        font-size: 12px;
        white-space: nowrap;
        opacity: .9;
        min-width: 85px;
        text-align: right;
    }

    @keyframes sfpulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5)
        }

        50% {
            box-shadow: 0 0 0 6px rgba(37, 211, 102, 0)
        }
    }

    .sf-proof {
        background: #1a1a1a;
        padding: 20px 0;
    }

    .sf-proof-item {
        text-align: center;
        color: #fff;
    }

    .sf-proof-item strong {
        display: block;
        font-size: 1.6rem;
        font-weight: 800;
        color: #facc15;
    }

    .sf-proof-item span {
        font-size: 13px;
        opacity: .6;
    }

    .sf-step-card {
        background: #fff;
        border: 1.5px solid #e5e7eb;
        border-radius: 20px;
        padding: 28px 24px;
        height: 100%;
        position: relative;
        transition: box-shadow .2s, border-color .2s;
    }

    .sf-step-card:hover {
        box-shadow: 0 8px 32px rgba(201, 0, 0, 0.1);
        border-color: rgba(201, 0, 0, 0.3);
    }

    .sf-step-num {
        width: 44px;
        height: 44px;
        background: #fff0f0;
        color: #c90000;
        font-weight: 900;
        font-size: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .sf-step-arrow {
        position: absolute;
        top: 50%;
        right: -22px;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 20px;
        z-index: 2;
    }

    .sf-subject-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f8f9fa;
        border: 1.5px solid #e5e7eb;
        border-radius: 100px;
        padding: 10px 20px;
        font-weight: 600;
        font-size: 15px;
        cursor: default;
        transition: all .15s;
    }

    .sf-subject-pill:hover {
        background: #fff0f0;
        border-color: #c90000;
        color: #c90000;
    }

    .sf-offer-card {
        background: linear-gradient(135deg, #a10000 0%, #700000 100%);
        border-radius: 28px;
        padding: 56px 40px;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .sf-offer-card::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

    .sf-offer-card::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 240px;
        height: 240px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

    .sf-offer-bullets {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        text-align: left;
        display: inline-flex;
        flex-direction: column;
        gap: 12px;
    }

    .sf-offer-bullets li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 500;
    }

    .sf-offer-bullets li i {
        color: #facc15;
        font-size: 20px;
        flex-shrink: 0;
    }

    .sf-faq-item {
        border-bottom: 1px solid #e5e7eb;
    }

    .sf-faq-q {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 20px 0;
        font-weight: 700;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        gap: 12px;
    }

    .sf-faq-q i {
        color: #c90000;
        font-size: 20px;
        flex-shrink: 0;
        transition: transform .2s;
    }

    .sf-faq-q.sf-open i {
        transform: rotate(45deg);
    }

    .sf-faq-a {
        display: none;
        padding-bottom: 20px;
        color: #6b7280;
        line-height: 1.7;
        font-size: 15px;
    }

    .sf-faq-a.sf-open {
        display: block;
    }

    .sf-footer-cta {
        background: linear-gradient(160deg, #0f0f0f 0%, #1a0000 100%);
        padding: 80px 0;
        text-align: center;
    }

    .sf-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
        text-decoration: none;
        animation: sfFloatIn .5s ease forwards;
        transition: transform .2s, box-shadow .2s;
    }

    .sf-float:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
    }

    .sf-float svg {
        width: 28px;
        height: 28px;
    }

    @keyframes sfFloatIn {
        from {
            opacity: 0;
            transform: scale(.5)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    .sf-btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        padding: 14px 24px;
        border: 2px solid #e5e7eb;
        border-radius: 100px;
        transition: all .15s;
    }

    .sf-btn-outline:hover {
        border-color: #c90000;
        color: #c90000;
        background: #fff0f0;
    }

    @media (max-width:991px) {
        .sf-hero {
            padding: 60px 0 50px;
        }

        .sf-video-wrapper {
            max-width: 260px;
            margin-top: 48px;
        }

        .sf-step-arrow {
            display: none;
        }
    }

    @media (max-width:576px) {
        .sf-hero h1 {
            font-size: 2rem;
        }

        .sf-offer-card {
            padding: 40px 24px;
        }

        .btn-wa {
            font-size: 15px;
            padding: 14px 24px;
        }
    }
   /* ── ABOUT PAGE VARS (match landing brand) ── */
    :root {
        --red: #c90000;
        --red-dark: #a10000;
        --red-light: #fff0f0;
        --text: #1a1a1a;
        --muted: #6b7280;
        --border: #e5e7eb;
    }

    /* ── PAGE HERO ── */
    .ab-hero {
        background: linear-gradient(135deg, #fff7f7 0%, #fff 70%);
        padding: 80px 0 0;
        position: relative;
        overflow: hidden;
    }

    .ab-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(201, 0, 0, 0.07) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .ab-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, transparent, #fff);
    }

    .ab-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff0f0;
        color: var(--red);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .ab-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .ab-hero h1 span {
        color: var(--red);
    }

    .ab-hero-lead {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 640px;
        margin-bottom: 36px;
    }


    /* ── WHY CHOOSE ── */
    .ab-why-card {
        border: 1.5px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        height: 100%;
        background: #fff;
        transition: box-shadow .2s, border-color .2s, transform .2s;
        position: relative;
        overflow: hidden;
    }

    .ab-why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .25s;
    }

    .ab-why-card:hover {
        box-shadow: 0 12px 40px rgba(201, 0, 0, 0.1);
        border-color: rgba(201, 0, 0, 0.25);
        transform: translateY(-3px);
    }

    .ab-why-card:hover::before {
        transform: scaleX(1);
    }

    .ab-why-icon {
        width: 52px;
        height: 52px;
        background: #fff0f0;
        color: var(--red);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .ab-why-card h5 {
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 17px;
    }

    .ab-why-card p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

    /* ── LONG-FORM CONTENT SECTIONS ── */
    .ab-section {
        padding: 80px 0;
    }

    .ab-section-alt {
        padding: 80px 0;
        background: #f9f9f9;
    }

    .ab-section-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff0f0;
        color: var(--red);
        border-radius: 100px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 14px;
    }

    .ab-section h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .ab-section h2 span {
        color: var(--red);
    }

    .ab-section-alt h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .ab-section-alt h2 span {
        color: var(--red);
    }

    .ab-body-text {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .ab-body-text:last-child {
        margin-bottom: 0;
    }

    /* Visual card alongside text */
    .ab-visual-card {
        background: linear-gradient(135deg, var(--red-dark) 0%, #700000 100%);
        border-radius: 24px;
        padding: 40px 36px;
        color: #fff;
        height: 100%;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .ab-visual-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .ab-visual-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

    .ab-visual-card-inner {
        position: relative;
        z-index: 1;
    }

    .ab-visual-card .ab-big-num {
        font-size: 4rem;
        font-weight: 900;
        color: #facc15;
        line-height: 1;
        margin-bottom: 8px;
    }

    .ab-visual-card h4 {
        font-weight: 800;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .ab-visual-card p {
        opacity: .75;
        font-size: 15px;
        line-height: 1.65;
        margin: 0;
    }

    /* Check list */
    .ab-checklist {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ab-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        line-height: 1.6;
        color: var(--text);
    }

    .ab-checklist li i {
        color: var(--red);
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Quote block */
    .ab-quote {
        border-left: 4px solid var(--red);
        padding: 20px 24px;
        background: #fff0f0;
        border-radius: 0 14px 14px 0;
        margin: 28px 0;
    }

    .ab-quote p {
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
        font-style: italic;
        line-height: 1.65;
        margin: 0;
    }

    /* Icon feature rows */
    .ab-feature-row {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 24px 0;
        border-bottom: 1px solid var(--border);
    }

    .ab-feature-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ab-feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        background: #fff0f0;
        color: var(--red);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .ab-feature-row h6 {
        font-weight: 800;
        margin-bottom: 4px;
        font-size: 16px;
    }

    .ab-feature-row p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.65;
        margin: 0;
    }

    /* Countries tag cloud */
    .ab-country-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 100px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        transition: all .15s;
    }

    .ab-country-tag:hover {
        border-color: var(--red);
        background: #fff0f0;
        color: var(--red);
    }

    /* CTA strip */
    .ab-cta-strip {
        background: linear-gradient(135deg, #a10000 0%, #700000 100%);
        border-radius: 24px;
        padding: 56px 40px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ab-cta-strip::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 260px;
        height: 260px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

    .btn-wa-about {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #25d366;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        padding: 16px 32px;
        border-radius: 100px;
        border: none;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
        transition: transform .15s, box-shadow .15s, background .15s;
    }

    .btn-wa-about:hover {
        background: #128C7E;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    }

    .btn-wa-about-icon {
        width: 26px;
        height: 26px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .btn-wa-about-icon svg {
        width: 16px;
        height: 16px;
    }

    @media (max-width: 768px) {
        .ab-hero {
            padding: 60px 0 0;
        }

        .ab-section,
        .ab-section-alt {
            padding: 56px 0;
        }

        .ab-cta-strip {
            padding: 40px 24px;
        }

        .ab-visual-card {
            min-height: auto;
            margin-bottom: 32px;
        }
    }

</style>