/* ========================================
   GOOGLE FONTS
======================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");


/* ========================================
   BASE STYLES
======================================== */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}


/* ========================================
   GLOBAL TYPOGRAPHY
======================================== */

p,
li,
span,
a {
    font-size: 16px;
}

h1 {
    font-size: 22px;
}

h2,
h3 {
    font-size: 20px;
}


/* ========================================
   MATERIAL SYMBOLS
======================================== */

.material-symbols-outlined {
    display: inline-block;
    vertical-align: middle;

    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}


/* ========================================
   BLINKING CTA
======================================== */

@keyframes blink-cta {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.blink-cta {
    animation: blink-cta 1.2s ease-in-out infinite;
}


/* ========================================
   REVEAL ANIMATION
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   CTA PULSE ANIMATION
======================================== */

@keyframes pulse-custom {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.pulse-animation {
    animation: pulse-custom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


/* ========================================
   STICKY OFFER
======================================== */

.fixed-offer-box {
    position: absolute;
}

@media (max-width: 1023px) {
    .fixed-offer-box {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .sticky-offer {
        width: 300px;
        right: calc((100vw - 800px) / 2 - 300px);
    }
}


/* ========================================
   REVIEW GRID
======================================== */

.review-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(260px, 1fr)
    );
    gap: 28px;
    margin-top: 40px;
}


/* ========================================
   REVIEW CARD
======================================== */

.review-card {
    position: relative;
    overflow: hidden;

    border: 2px solid #eef2f7;
    border-radius: 24px;

    background-color: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-card::before {
    content: "★★★★★ VERIFIED";

    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;

    padding: 6px 10px;

    border-radius: 999px;
    background-color: #22c55e;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* ========================================
   REVIEW IMAGE
======================================== */

.review-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


/* ========================================
   REVIEW CONTENT
======================================== */

.review-content {
    padding: 24px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.review-name {
    color: #111827;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
}

.review-meta {
    margin-top: 4px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.review-stars .material-symbols-outlined {
    font-size: 28px;
    font-variation-settings: "FILL" 1;
}

.review-title {
    margin-bottom: 12px;
    color: #111827;
    font-size: 1.3rem;
    font-weight: 900;
}

.review-text {
    margin-bottom: 18px;
    color: #374151;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8;
}


/* ========================================
   REVIEW FOOTER
======================================== */

.review-footer {
    display: none !important;
    align-items: center;
    justify-content: space-between;

    padding-top: 16px;
    border-top: 1px solid #edf2f7;
}

.review-helpful {
    color: #16a34a;
    font-weight: 800;
}

.review-date {
    color: #6b7280;
    font-size: 0.9rem;
}


/* ========================================
   HOW-IT-WORKS SLIDER
======================================== */

.how-slider-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.how-slider {
    display: flex;
    overflow: hidden;

    border-radius: 24px;
    scroll-behavior: smooth;
}

.how-slide {
    flex-shrink: 0;
    min-width: 100%;
    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 24px;

    background-color: #ffffff;
}

.how-slide img {
    display: block;
    width: 100%;
}

.step-badge {
    position: absolute;
    top: 24px;
    left: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border-radius: 50%;
    background-color: #ffffff;

    font-size: 32px;
    font-weight: 700;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* ========================================
   SLIDER BUTTONS
======================================== */

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background-color: #ffffff;
    cursor: pointer;

    font-size: 24px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    transform: translateY(-50%);
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}


/* ========================================
   GLASS BOX
======================================== */

.glass-box {
    max-width: 650px;
    margin: 20px auto;
    padding: 12px 20px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;

    background-color: rgba(173, 216, 230, 0.25);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.15);
}


/* ========================================
   EXPERIENCE CARD
======================================== */

.experience-card {
    transform-style: preserve-3d;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-12px) rotateX(4deg);
}


/* ========================================
   HEADER AND MOBILE FIXES
======================================== */

.site-logo {
    display: inline-block;
    white-space: nowrap;
    line-height: 1 !important;
}

.main-headline {
    font-size: 28px !important;
    line-height: 1.2 !important;
}

.hurry-text {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}


/* ========================================
   PRIVACY CONTENT
======================================== */

.privacy-content {
    padding: 32px;

    border: 1px solid #e5e2e1;
    border-radius: 24px;

    background-color: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
    margin: 32px 0 14px;

    color: #1b1c1b;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin: 0 0 16px;

    color: #534342;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.privacy-content ul {
    margin: 0 0 18px 20px;
    padding-left: 18px;
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 10px;

    color: #534342;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.privacy-content strong {
    color: #1b1c1b;
}

.privacy-content a {
    color: #31647d;
    font-weight: 700;
    text-decoration: underline;
}


/* ========================================
   TABLET AND MOBILE STYLES
======================================== */

@media (max-width: 768px) {
    p,
    li,
    span,
    a {
        font-size: 15px;
    }

    h1 {
        font-size: 20px;
    }

    h2,
    h3 {
        font-size: 18px;
    }

    .review-card {
        border-radius: 20px;
    }

    .review-content {
        padding: 20px;
    }

    .review-name {
        font-size: 1.2rem;
    }

    .review-title {
        font-size: 1.15rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .step-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .privacy-content {
        padding: 15px;
        border-radius: 18px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 15px;
    }
}
@media (max-width: 422px) {
 .review-name {
        font-size: 16px;
    }
    .review-content {
    padding: 10px;
}
.review-header {
    margin-bottom: 8px;
}
.review-title {
    margin-bottom: 8px;
}
.review-text {
    margin-bottom: 10px;
   
}
}

/* ========================================
   HEADER MOBILE STYLES
======================================== */

@media (max-width: 767px) {
    header nav {
        gap: 10px !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    header nav > div:first-child {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 0 !important;
    }

    .site-logo {
        font-size: 24px !important;
        letter-spacing: -0.03em !important;
    }

    .claim-offer-btn {
        flex: 0 0 auto !important;

        height: 34px !important;
        padding: 8px 12px !important;

        font-size: 11px !important;
        letter-spacing: 0.03em !important;
    }

    .main-headline {
        font-size: 28px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.01em !important;
    }
}

@media (max-width:575px){
    h1.main-headline{
        text-align: center !important;
    }
}


/* ========================================
   VERY SMALL MOBILE
======================================== */


@media (max-width: 374px) {
    .site-logo {
        font-size: 25px !important;
    }

    .claim-offer-btn {
        padding-right: 10px !important;
        padding-left: 10px !important;
        font-size: 10px !important;
    }
}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .blink-cta,
    .pulse-animation {
        animation: none;
    }

    .reveal,
    .review-card,
    .experience-card {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}