:root {
    --primary: #ff2d55;
    --primary-glow: rgba(255, 45, 85, 0.5);
    --secondary: #9c27b0;
    --bg-dark: #0a0a0c;
    --bg-card: #16161a;
    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --accent-gradient: linear-gradient(135deg, #ff2d55 0%, #9c27b0 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Header/Nav */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.category-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* FAQ Styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ifody-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.ifody-faq-item summary {
    padding: 1.5rem;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.ifody-faq-item .ifody-faq-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
footer {
    background: #050507;
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Carousel Section */
.carousel-section {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark);
}

.carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 33.333%;
    flex: 0 0 33.333%;
    padding: 0 10px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    background: var(--bg-card);
}


/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 45, 85, 0.03) 50%, var(--bg-dark) 100%);
    position: relative;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 45, 85, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    border: 1px solid var(--glass-border);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-card);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN - TABLET ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ===== RESPONSIVE DESIGN - MOBILE ===== */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Section padding */
    section {
        padding: 50px 0;
    }

    /* Header / Nav */
    header {
        padding: 0.8rem 0;
    }

    .nav-content {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    header .btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .logo img {
        height: 28px;
    }

    /* Trust Bar */
    .trust-bar {
        margin-top: 60px;
        padding: 6px 0;
    }

    /* Hero Section */
    .hero {
        height: auto;
        padding: 100px 0 50px;
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        margin-top: 2rem;
    }

    .hero-image img {
        transform: none;
        max-width: 100%;
        height: auto;
    }

    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-cta-row .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-image {
        display: none !important;
    }

    /* Urgency Bar */
    .urgency-bar {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    /* Grid & Cards */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card img {
        height: 160px;
    }

    .category-number {
        font-size: 2rem;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    /* Carousel */
    .carousel-section {
        padding: 30px 0;
    }

    .carousel-wrapper {
        border-radius: 12px;
        margin: 0 1rem;
    }

    .carousel-item {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0 5px;
    }

    .carousel-item img {
        max-height: 350px;
        border-radius: 10px;
    }

    /* FAQ */
    .faq-container {
        max-width: 100%;
    }

    .ifody-faq-item summary {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .ifody-faq-item .ifody-faq-body {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    /* CTA Final */
    .cta-final h2 {
        font-size: 1.6rem;
    }

    .cta-final p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .cta-final .btn {
        padding: 14px 32px !important;
        font-size: 1rem !important;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .reviews-summary h2 {
        font-size: 1.6rem;
    }

    .reviews-summary .big-stars {
        font-size: 1.4rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Location */
    .location-section .grid {
        grid-template-columns: 1fr;
    }

    .location-section .card {
        min-height: 280px;
    }

    .location-section .card iframe {
        height: 280px;
    }

    /* How it works section */
    .how-it-works-section {
        padding: 50px 0;
    }

    .how-it-works-section h2 {
        font-size: 1.6rem;
    }

    /* Why Section */
    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .why-section ul li {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }

    .why-section h3 {
        font-size: 2.5rem !important;
    }

    .why-section .card {
        padding: 1.5rem;
    }
}

/* ===== RESPONSIVE DESIGN - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    header .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .card {
        padding: 1.25rem;
    }

    .card img {
        height: 140px;
        margin-bottom: 1rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .cta-final h2 {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .location-section h2 {
        font-size: 1.5rem;
    }

    .location-section .card {
        min-height: 220px;
    }

    .location-section .card iframe {
        height: 220px;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== GLOBAL OVERFLOW PREVENTION ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}