:root {
    /* --- COLOR PALETTE (Premium Corporate) --- */
    --color-primary: #0a2e52;
    /* Deep Navy Blue - Trust, Authority */
    --color-secondary: #0f4c81;
    /* Lighter Navy - Depth */
    --color-gold: #c5a059;
    /* Muted Gold - Luxury, Success */
    --color-gold-hover: #b08d4b;
    /* Darker Gold */
    --color-light: #f8f9fa;
    /* Light Gray/White - Cleanliness */
    --color-dark: #1a1a1a;
    /* Almost Black - Text */
    --color-text: #333333;
    /* Standard Text */
    --color-danger: #e74c3c;
    /* Red - Urgency/Problem */
    --color-green: #2ecc71;
    /* Green - Success/WhatsApp */

    /* --- FONTS --- */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* --- SHADOWS & BORDERS --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;

    /* --- TRANSITIONS --- */
    --transition: all 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-beige {
    background-color: #fdfbf7;
}

/* Subtle beige for elegance */
.bg-dark {
    background-color: var(--color-primary);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--color-gold);
    color: white;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Title Underline Effect */
.section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    background-color: rgba(255, 255, 255, 0.98);
    /* Glass effect */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-whatsapp {
    background-color: var(--color-green);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.nav-whatsapp:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    margin-top: 80px;
    /* Offset fixed header */
    padding: 4rem 0;
    min-height: 85vh;
    /* Almost full screen */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbf7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.hero-image {
    position: relative;
}

/* Placeholder Styling for Images */
.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    /* Standard ratio */
    background-color: #ddd;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   PAIN POINTS SECTION (Problem)
   ========================================= */
.section {
    padding: 6rem 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rounded-img {
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-md);
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pain-points li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pain-points li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-circle.danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--color-danger);
}

.pain-points h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pain-points p {
    font-size: 0.95rem;
    color: #666;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.info-box {
    background-color: rgba(197, 160, 89, 0.1);
    /* Gold tint */
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    font-size: 1.5rem;
    margin-top: 3px;
}

/* =========================================
   SERVICES CARDS
   ========================================= */
.cards-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.service-card.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: 2px solid var(--color-gold);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.click-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
    color: var(--color-gold);
}

.service-card:hover .click-indicator {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   TIMELINE SECTION
   ========================================= */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-img-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    background: white;
}

.step-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.bg-gold {
    background-color: var(--color-gold);
}

.bg-green {
    background-color: var(--color-green);
}

.connector-line {
    flex-grow: 1;
    height: 3px;
    background-color: #ddd;
    margin-top: 50px;
    /* Align with center of circles */
    position: relative;
    z-index: 1;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   DIFFERENTIALS & GUARANTEE
   ========================================= */
.differentials-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-secondary);
}

.diff-item i {
    color: var(--color-gold);
}

/* Guarantee Badges */
.badges-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-icon i {
    font-size: 2rem;
    color: var(--color-gold);
}

/* Testimonial Carousel (Minimal) */
.carousel-container {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-slide {
    display: none;
    align-items: center;
    gap: 1rem;
}

.testimonial-slide.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.quote {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.author {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-gold);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--color-gold);
}

/* =========================================
   FAQ
   ========================================= */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-primary);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #555;
    text-align: left;
    /* Explicitly ensure left alignment */
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin: 2rem auto 0;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
}

.search-bar button {
    background: var(--color-gold);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* =========================================
   FOOTER SECTION (FORM & DETAILS)
   ========================================= */
.footer-cta-section {
    position: relative;
    overflow: hidden;
}

.phone-mockup-container {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.chat-bubble {
    padding: 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-bubble.left {
    background: white;
    color: #333;
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}

.chat-bubble.right {
    background: #dcf8c6;
    /* WhatsApp Greenish */
    color: #333;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
}

.form-container h2 {
    color: var(--color-primary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--color-gold);
    outline: none;
}

/* =========================================
   MAIN FOOTER
   ========================================= */
.main-footer {
    background-color: #051a2e;
    /* Darker Navy */
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.social-icons i:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--color-primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
    /* Slide up */
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 600px;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================= */

/* --- Tablet & Small Desktop (Max 1100px) --- */
@media (max-width: 1100px) {

    /* --- DRAWER MENU RE-DESIGN --- */
    .nav-links {
        position: fixed;
        right: -100%;
        /* Hidden by default */
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: rgba(10, 46, 82, 0.98);
        /* Deep Blue, almost solid */
        backdrop-filter: blur(10px);
        /* Glass effect */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        /* Smooth ease */
        z-index: 2000;
        /* Above everything */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        gap: 2.5rem;
        padding-top: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .nav-links a:hover {
        color: var(--color-gold);
    }

    /* Toggle Button */
    .mobile-toggle {
        display: block;
        z-index: 2001;
        position: relative;
    }

    .mobile-toggle i {
        font-size: 1.8rem;
    }

    .nav-whatsapp {
        display: inline-block !important;
        /* Show CTA in menu */
        margin-top: 1rem;
        background: var(--color-green);
        border: none;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    }
}

/* --- Mobile (Max 900px) --- */
@media (max-width: 900px) {

    /* 1. GLOBAL SAFETY & ALIGNMENT */
    body,
    html {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        /* Standardize specific padding */
    }

    /* 2. TYPOGRAPHY SCALING */
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .section h2::after {
        margin: 10px auto;
        /* Center the underline */
    }

    p {
        text-align: center;
        font-size: 1rem;
        padding: 0 10px;
        /* Prevent edge touching */
    }

    /* 3. LAYOUT STACKING & SPACING */
    .hero-grid,
    .split-grid,
    .footer-grid,
    .cards-3-col,
    .diff-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-grid {
        flex-direction: column-reverse;
        /* Image top */
    }

    .section {
        padding: 3.5rem 0;
        /* Consistent vertical spacing */
    }

    /* 4. COHESIVE CARD STYLING (The "Polish" Block) */
    .service-card,
    .differentials-box,
    .info-box,
    .timeline-step,
    .pain-points li {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.06);
        /* Subtle border */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        /* Soft, premium shadow */
        border-radius: 16px;
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
        /* Force full width */
    }

    /* Specific adjustment for Diff Box which acts as container */
    .differentials-box {
        padding: 1.5rem;
        background: #f8f9fa;
        /* Slight contrast from bg */
    }

    .diff-item {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: flex-start;
    }

    /* 5. TIMELINE: Vertical Stack, Horizontal Items */
    .timeline-horizontal {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .connector-line {
        display: none;
    }

    .timeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .timeline-step p {
        text-align: left;
        padding: 0;
        margin: 0;
        font-size: 0.9rem;
    }

    .timeline-step h4 {
        text-align: left;
        margin-bottom: 0.25rem;
        font-size: 1.1rem;
    }

    .step-img-box,
    .step-icon-box {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .step-img-box img {
        border-radius: 50%;
    }

    .step-icon-box i {
        font-size: 1.5rem;
    }

    /* 6. INTERACTIVE ELEMENTS */
    .btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    #back-to-top {
        bottom: 90px !important;
        right: 20px !important;
    }

    /* 7. PHONE MOCKUP */
    .phone-frame {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* 8. BADGES */
    .hero-badges {
        justify-content: center;
        gap: 1rem;
    }

    .badge {
        background: rgba(255, 255, 255, 0.8);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
}