﻿:root {
    --red: #C9192E;
    --red-dark: #8f1020;
    --red-light: #ff3f5c;
    --gold: #C9A84C;
    --gold-light: #f0d080;
    --ink: #0f1923;
    --ink-mid: #2c3e50;
    --mist: #f5f3ef;
    --white: #ffffff;
    --card-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.5);
    animation: pulse-wa 2.5s infinite;
    text-decoration: none;
    transition: transform .2s;
}

    .wa-float:hover {
        transform: scale(1.12);
        color: #fff;
    }

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37,211,102,.5);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37,211,102,.85);
    }
}

.topnav {
    position: static;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,.07);
    transition: background .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.topnav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

    .topnav-brand span {
        color: var(--red);
    }

.topnav-cta {
    background: var(--red);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .4px;
    transition: background .25s, transform .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .topnav-cta:hover {
        background: var(--red-dark);
        transform: scale(1.04);
        color: #fff;
    }

.hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpolygon points='40,2 78,22 78,58 40,78 2,58 2,22'/%3E%3Cpolygon points='40,14 66,28 66,52 40,66 14,52 14,28'/%3E%3Cline x1='40' y1='2' x2='40' y2='14'/%3E%3Cline x1='78' y1='22' x2='66' y2='28'/%3E%3Cline x1='78' y1='58' x2='66' y2='52'/%3E%3Cline x1='40' y1='78' x2='40' y2='66'/%3E%3Cline x1='2' y1='58' x2='14' y2='52'/%3E%3Cline x1='2' y1='22' x2='14' y2='28'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,25,46,.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-light);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

    .hero-badge i {
        color: var(--gold);
    }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero p.lead {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 32px rgba(201,25,46,.45);
    transition: transform .25s, box-shadow .25s;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(201,25,46,.55);
        color: #fff;
    }

.btn-hero-ghost {
    color: rgba(255,255,255,.75);
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .25s, color .25s;
}

    .btn-hero-ghost:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

.hero-stats-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 36px;
}

.hero-stat {
    text-align: center;
    padding: 20px 16px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .hero-stat-num span {
        color: var(--gold);
    }

.hero-stat-label {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    margin-top: 6px;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
    margin: auto;
}

.trust-strip {
    background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    margin-top: 60px;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.45);
    font-size: .8rem;
}

    .trust-item i {
        color: var(--gold);
        font-size: 1rem;
    }

.profile-section {
    background: var(--mist);
    padding: 100px 0;
}

.profile-pill-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.profile-pill {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .75rem;
    color: var(--ink-mid);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .profile-pill i {
        color: var(--gold);
    }

.profile-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 36px;
}

    .profile-img-wrap img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 50%;
        position: relative;
        z-index: 1;
        border: 4px solid var(--white);
        box-shadow: 0 16px 40px rgba(0,0,0,.12);
    }

    .profile-img-wrap::before {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        background: conic-gradient(var(--gold) 0deg, var(--red) 120deg, var(--gold) 240deg, var(--red) 360deg);
        z-index: 0;
        animation: spin-ring 8s linear infinite;
    }

@keyframes spin-ring {
    to {
        transform: rotate(360deg);
    }
}

.profile-img-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--mist);
    z-index: 0;
}

.profile-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.profile-section p {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.85;
    font-size: 1rem;
}

/* ============== VIDEO SECTION ============== */
.video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f3ef 0%, #ffffff 100%);
}

.video-container {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-section .section-label {
    color: var(--red);
}

.video-section .section-title {
    color: #0f1923;
}

.video-section .section-sub {
    color: #64748b;
}

.credential-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.credential-chip {
    background: #fff;
    border: 1px solid rgba(201,25,46,.15);
    color: var(--red-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

    .credential-chip i {
        color: var(--gold);
    }

.why-section {
    padding: 100px 0;
    background: #fff;
}

.section-label {
    display: inline-block;
    background: rgba(201,25,46,.07);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-sub {
    color: #64748b;
    font-size: .97rem;
    max-width: 520px;
    line-height: 1.7;
}

.why-card {
    background: var(--mist);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,25,46,.08), transparent);
        transition: opacity .3s;
    }

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-shadow);
    }

        .why-card:hover::before {
            opacity: 2;
        }

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(201,25,46,.3);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.why-card p {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.7;
}

.how-section {
    padding: 100px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

    .how-section::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .04;
        background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpolygon points='40,2 78,22 78,58 40,78 2,58 2,22'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 80px 80px;
    }

    .how-section .section-label {
        background: rgba(201,168,76,.12);
        color: var(--gold-light);
    }

    .how-section .section-title {
        color: #fff;
    }

    .how-section .section-sub {
        color: rgba(255,255,255,.5);
    }

.step-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
    height: 100%;
    transition: border-color .3s, background .3s;
}

    .step-card:hover {
        border-color: rgba(201,168,76,.35);
        background: rgba(255,255,255,.07);
    }

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(201,168,76,.2);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: rgba(255,255,255,.45);
    font-size: .88rem;
    line-height: 1.75;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 20px;
}

.testi-section {
    padding: 100px 0;
    background: var(--mist);
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    position: relative;
    border-top: 3px solid var(--red);
    height: 100%;
}

.testi-quote {
    font-size: 3rem;
    color: var(--red);
    opacity: .15;
    font-family: 'Playfair Display', serif;
    line-height: .8;
    margin-bottom: 16px;
}

.testi-card p {
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    font-size: .95rem;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
}

.testi-name {
    font-weight: 700;
    font-size: .9rem;
}

.testi-role {
    color: #94a3b8;
    font-size: .78rem;
}

.testi-stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: 14px;
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-item {
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--ink);
    transition: background .2s;
}

    .faq-btn:hover {
        background: var(--mist);
    }

    .faq-btn .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(201,25,46,.08);
        color: var(--red);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .85rem;
        flex-shrink: 0;
        transition: transform .3s, background .3s;
    }

    .faq-btn[aria-expanded="true"] .faq-icon {
        transform: rotate(45deg);
        background: var(--red);
        color: #fff;
    }

.faq-body {
    padding: 0 28px 22px;
    color: #64748b;
    line-height: 1.75;
    font-size: .92rem;
}

.contact-section {
    padding: 100px 0;
    background: var(--mist);
}

.contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 56px 52px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red-light) 100%);
    }

.form-label-modern {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: .97rem;
    color: var(--ink);
    background: var(--mist);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    appearance: none;
}

    .form-control-modern:focus {
        border-color: var(--red);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(201,25,46,.1);
    }

    .form-control-modern::placeholder {
        color: #94a3b8;
    }

.btn-wa-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(37,211,102,.3);
    transition: transform .25s, box-shadow .25s;
    letter-spacing: .3px;
}

    .btn-wa-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(37,211,102,.4);
    }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .contact-info-item:last-child {
        border-bottom: none;
    }

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(201,25,46,.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-label {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ci-value {
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
}

footer {
    background: var(--ink);
    color: rgba(255,255,255,.4);
    padding: 36px 0;
    text-align: center;
    font-size: .82rem;
}

    footer a {
        color: var(--gold);
        text-decoration: none;
    }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .22s;
}

.delay-3 {
    transition-delay: .34s;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.col-half {
    flex: 1 1 320px;
}

.col-third {
    flex: 1 1 260px;
}

.col-full {
    flex: 1 1 100%;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 56px;
}

.mb-4 {
    margin-bottom: 32px;
}

.g-0 {
    gap: 0;
}

@media (max-width: 768px) {
    .topnav {
        padding: 16px 20px;
    }

    .contact-card {
        padding: 36px 24px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .trust-strip-inner {
        gap: 20px;
    }

    .hero-stats-card {
        margin-top: 40px;
    }
}

/* ============== TESTIMONIAL SECTION ============== */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f3ef 0%, #ffffff 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: #C9A84C;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #0f1923;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ============== TRUST SECTION ============== */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1923 0%, #2c3e50 100%);
}

.trust-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-8px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.trust-badge h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.trust-badge p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============== PROCESS SECTION ============== */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.process-step {
    background: linear-gradient(135deg, #f5f3ef 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    position: relative;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #C9192E;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(201,25,46,0.1);
}

.process-number {
    min-width: 56px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C9192E 0%, #ff3f5c 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.process-content h4 {
    color: #0f1923;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}

.process-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #C9192E;
    margin: 20px 0;
}

/* ============== FORM STYLES ============== */
.form-control-modern {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #0f1923;
    transition: all 0.2s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: #C9192E;
    box-shadow: 0 0 0 3px rgba(201,25,46,0.1);
}

.form-label-modern {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f1923;
    font-size: 0.95rem;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
    .testimonial-section, .trust-section, .process-section {
        padding: 60px 0;
    }

    .trust-badge {
        padding: 24px 16px;
    }

    .process-step {
        padding: 24px;
    }

    .col-half {
        flex: 1 1 100% !important;
    }

    .process-arrow {
        margin: 12px 0;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}


