/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button, a {
    text-decoration: none !important;
}

:root {
    --black: #0a0a0a;
    --green: #AF0000;
    --green-light: #af00006e;
    --green-dark: #af00008a;
    --green-bg: rgba(175, 0, 0, 0.08);
    --green-border: rgba(175, 0, 0, 0.2);
    --gold: #ffffff;
    --gold-light: #000000;
    --gold-dark: #AF0000;
    --white: #ffffff;
    --bg-alt: #f8f4ef;
    --bg-highlight: #0a0a0a;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-light: #ffffff;
    --text-on-dark: #e0e0e0;
    --border: #e5e5e5;
    --border-dark: rgba(255, 255, 255, 0.1);
    --section-pad: 100px;
    --container-max: 1240px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER / NAVIGATION */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO */
.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--green);
}

/* CTA BUTTON */
.cta-button {
    display: flex;
}

.btn-primary {
    background-color: var(--green);
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

/* HAMBURGER MENU (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* HERO LEFT CONTENT */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(45 157 120 / 0%);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--green);
    font-weight: 600;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
}

.hero-lp-title {
    font-size: clamp(32px, 4.5vw, 47px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--black);
    margin-top: 1rem;
}

.hero-lp-title .highlight {
    color: var(--green);
}

.hero-lp-subtitle {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 520px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border-left: 3px solid #dc2626;
}

.urgency-badge i {
    font-size: 13px;
}

.countdown-timer {
    font-weight: 700;
    color: #dc2626;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* CTA BUTTONS */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 0px;
}

.btn-whatsapp,
.btn-consultation {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.btn-whatsapp {
    background-color: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(175, 0, 0, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(175, 0, 0, 0.4);
}

.btn-consultation {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-consultation:hover {
    background-color: var(--green-bg);
    border-color: var(--green-dark);
    transform: translateY(-2px);
}

/* URGENCY MESSAGE */
.form-urgency {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--green-border);
    text-align: center;
}

.urgency-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    margin: 0;
    margin-bottom: 3px;
}

.urgency-subtext {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 32px;
    background: var(--bg-alt);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
}

@media (max-width: 480px) {
    .stat {
        padding: 2px 9px !important;
    }
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-size: 25px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* HERO RIGHT - FORM */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-form-card {
    isolation: isolate;
    background: #af000005;
    border: 2px solid #dc262621;
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: none;
    position: sticky;
    top: 88px;
    width: 100%;
    max-width: 450px;
}

.hero-form-card > h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--black);
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.lead-magnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #af0000 0%, #af0000 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead-magnet-badge i {
    font-size: 12px;
}

/* DOWNLOADABLE LEAD MAGNET */
.lead-magnet-download {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
    transition: var(--transition);
}

.lead-magnet-download:hover {
    border-color: var(--green);
    box-shadow: 0 4px 12px rgba(175, 0, 0, 0.1);
}

.lead-magnet-icon {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.lead-magnet-content {
    flex: 1;
}

.lead-magnet-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.lead-magnet-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.lead-magnet-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lead-magnet-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* FORM STEP INDICATOR */
.form-step-indicator {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.step-dot {
    flex: 1;
    height: auto;
    border-radius: var(--r-md);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    cursor: default;
}

.step-dot::before {
    content: attr(data-step);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
}

.step-dot.active::before {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.step-dot::after {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.step-dot.active::after {
    color: var(--green);
}

.step-dot.active {
    background: var(--white);
    border-color: var(--green-border);
}

/* FORM STEPS */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM GROUPS */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.required {
    color: var(--green);
    font-weight: 800;
}

.form-input,
.form-phone,
select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(55, 126, 98, 0.15);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

select {
    accent-color: var(--green);
}

select option {
    background-color: var(--white);
    color: var(--text-dark);
}

select option:checked {
    background: linear-gradient(var(--green), var(--green));
    background-color: var(--green) !important;
    color: white !important;
}

select option:hover {
    background: var(--green) !important;
    color: white !important;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus,
.form-phone:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-bg);
}

.form-input:disabled {
    background-color: var(--bg-alt);
    color: var(--text-muted);
    cursor: not-allowed;
}

.form-phone-row {
    display: flex;
    gap: 8px;
}

.form-phone-row .country-code {
    width: 80px;
    min-width: 80px;
}

.form-phone-row .form-phone {
    flex: 1;
}

/* FORM ACTIONS */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-green {
    background-color: var(--green);
    color: var(--white);
    padding: 14px 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(175, 0, 0, 0.3);
}

.btn-green:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(175, 0, 0, 0.4);
}

.btn-green:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(175, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    text-decoration: none;
    border-radius: 50px;
}

.btn-outline:hover {
    background-color: var(--green-bg);
}

.btn-full {
    width: 100%;
}

/* FORM SUCCESS */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 16px;
    font-weight: 800;
}

.form-success h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-success p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    width: 100%;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.text-marquee {
    padding: 14px 0;
    overflow: hidden;
    background: var(--bg-alt);
}

.text-marquee-track {
    display: flex;
    gap: 0;
    align-items: center;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.text-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

span.text-marquee-item {
    font-weight: 300 !important;
}

.tmi-dot {
    color: var(--green);
    font-size: 8px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-track.slow {
    animation: marqueeScroll 60s linear infinite;
}

.marquee-track.reverse {
    animation: marqueeScrollReverse 60s linear infinite;
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ============================================
   STATS SHOWCASE SECTION
   ============================================ */
.stats-showcase {
    background: var(--black);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    margin-bottom: 2rem !important;
    margin-top: 2rem;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item:first-child {
    border-left: none;
}

.stats-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

@media (max-width: 480px) {
    .stats-number {
        font-size: 30px;
        font-weight: 800;
        color: var(--gold);
        margin-bottom: 12px;
        line-height: 1;
    }
}

.stats-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */
.client-logos-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.logos-header {
    text-align: center;
    margin-bottom: 32px;
}

.logos-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 13px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #ffffff;
    border-radius: var(--r-lg);
    min-height: 65px;
    border: 1px solid var(--border);
    height: 100px;
}

.logo-item img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-lp-title,
    .section-title,
    .why-digitalbighit-title,
    .choose-us-title,
    .about-title,
    .comparison-title,
    .faq-title,
    .cta-title {
        font-size: 24px !important;
    }

    .solution-title,
    .products-title,
    .services-title,
    .more-services-title,
    .process-title,
    .cart-drawer-title {
        font-size: 28px !important;
    }

    .client-logos-section {
        padding: 32px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }

    .logo-item {
        min-height: 60px;
        padding: 12px;
        height: 80px;
    }

    .logo-item img {
        max-height: 45px;
    }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    padding: 30px 0;
    background-color: var(--white);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .solution-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .solution-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .solution-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* MOCKUPS */
.solution-mockups {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.mockup-card {
    text-align: center;
}

.phone-frame {
    background: #000000;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 9 / 18;
    width: 100%;
    max-width: 240px;
    margin-bottom: 16px;
    border: 10px solid #000000;
    position: relative;
}

.phone-screen {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    width: 100%;
    scroll-behavior: auto;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-screen {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.phone-screen img {
    width: 100%;
    display: block;
    height: auto;
}


.mockup-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mockup-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* SOLUTION CONTENT */
.solution-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-badge {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.text-green {
    color: var(--green);
}

.text-center {
    text-align: center;
}

.solution-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.solution-title .highlight {
    color: var(--green);
}

.solution-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 480px;
}

/* FEATURES LIST */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* TRUST SECTION */
.trust-section {
    padding: 16px;
    background-color: var(--bg-alt);
    border-radius: 8px;
    margin: 0px 0;
}

.trust-text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA BUTTON */
.btn-solution {
    padding: 14px 32px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: fit-content;
}

.btn-solution:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

/* ============================================
   PRODUCT CARDS SECTION
   ============================================ */
.product-cards-section {
    background-color: var(--bg-alt);
}

@media (min-width: 769px) {
    .product-cards-section {
        padding: 80px 0;
        background-color: var(--bg-alt);
        margin: 4rem 0rem;
    }
}

@media (max-width: 768px) {
    .product-cards-section {
        padding: 40px 0;
    }
}

.products-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.products-title .highlight {
    color: var(--green);
}

.products-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 100%;
}

.products-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.btn-product-cta {
    padding: 14px 32px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: fit-content;
    margin-top: 8px;
}

.btn-product-cta:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

/* QUICK ACTION BUTTON ENHANCEMENT */
.btn-quick-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(55, 126, 98, 0.2);
    font-size: 14px;
    font-weight: 300;
    padding: 10px 20px;
}

.btn-quick-action::after {
    content: '→';
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.btn-quick-action:hover::after {
    transform: translateX(4px);
}

.products-cards {
    display: flex;
    justify-content: center;
}

.pcards-row {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.ayur-pack-btn.active {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 40px 0;
    background-color: var(--white);
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.services-title .highlight {
    color: var(--green);
}

.services-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 23px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--green-bg);
    border-radius: 12px;
    margin-right: auto;
    color: var(--green);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 20px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* ============================================
   MORE SERVICES SECTION
   ============================================ */
.more-services-section {
    background-color: var(--bg-alt);
}

@media (min-width: 769px) {
    .more-services-section {
        padding: 80px 0;
        background-color: var(--bg-alt);
        margin-top: 5rem;
    }
}

@media (max-width: 768px) {
    .more-services-section {
        padding: 40px 0;
    }
}

.more-services-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
    align-items: baseline;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.more-services-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.more-services-title .highlight {
    color: var(--green);
}

.more-services-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 100%;
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.more-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: var(--transition);
    text-align: left;
}

.more-service-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.more-service-icon {
    font-size: 23px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--green-bg);
    border-radius: 12px;
    margin-right: auto;
    color: var(--green);
}

.more-service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 20px;
}

.more-service-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 40px 0;
    background-color: var(--white);
}

.process-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
    align-items: baseline;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.process-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.process-title .highlight {
    color: var(--green);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.process-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    counter-increment: step;
}

.process-step {
    font-size: 64px;
    font-weight: 800;
    color: rgba(55, 126, 98, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.process-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 26px;
}

.process-visual {
    background: var(--bg-alt);
    border-radius: var(--r-lg);
    padding: 14px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Calendar Mockup */
.calendar-mockup {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.calendar-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.calendar-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 16px;
}

.cal-day {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    padding: 4px 0;
}

.cal-date {
    font-size: 9px;
    text-align: center;
    padding: 3px;
    border-radius: 4px;
    color: var(--text-dark);
    background: transparent;
}

.cal-date.active {
    background: var(--green);
    color: white;
    font-weight: 600;
}

.calendar-slots {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    padding: 4px 0;
    color: var(--text-dark);
}

.time-slot .dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.time-slot .availability {
    color: var(--green);
    font-weight: 600;
}

/* Proposal Mockup */
.proposal-mockup {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.proposal-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.proposal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding: 4px 0;
    color: var(--text-dark);
}

.item-check {
    color: var(--green);
    font-weight: 700;
}

.proposal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    background: rgba(55, 126, 98, 0.04);
    padding: 12px;
    border-radius: 8px;
}

.footer-label {
    color: var(--text-muted);
    font-weight: 600;
}

.footer-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Growth Chart Mockup */
.growth-mockup {
    width: 100%;
}

.growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.growth-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.growth-percentage {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 8px;
    height: 120px;
    margin-bottom: 16px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--green), rgba(55, 126, 98, 0.4));
    border-radius: 4px 4px 0 0;
    min-width: 20px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   CART DRAWER SECTION
   ============================================ */
.cart-drawer-section {
    padding: 5rem;
    background-color: var(--bg-alt);
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .cart-drawer-section {
        padding: 40px 0px;
    }
}

.cart-drawer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cart-drawer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-drawer-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.cart-drawer-title .highlight {
    color: var(--green);
}

.cart-drawer-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 100%;
}

.cart-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
}

.cart-feature {
    padding: 16px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
}

.cart-feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.cart-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-feature-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin: 0;
}

.btn-cart-drawer {
    padding: 14px 32px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: fit-content;
}

.btn-cart-drawer:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

.cart-drawer-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* Cart Mockup Item */
.cart-mockup-item {
    width: 280px;
    flex-shrink: 0;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .cart-drawer-mockups {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        justify-items: center;
    }

    .animate.theme-phones {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px !important;
        justify-items: center;
    }

    .cart-mockup-item {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cart-drawer-mockups {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .animate.theme-phones {
        gap: 8px !important;
    }

    .cart-mockup-item {
        max-width: 200px;
    }
}

.clothing-size-btn.selected {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}

/* Responsive for mobile */
@media (max-width: 1024px) {
    .cart-drawer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cart-drawer-mockups {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .cart-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .cart-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cart-features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }

    .cart-feature {
        padding: 12px;
    }

    .cart-feature-icon {
        font-size: 28px;
    }

    .cart-feature-title {
        font-size: 13px;
    }

    .cart-feature-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .cart-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cart-feature {
        padding: 10px;
    }

    .cart-feature-icon {
        font-size: 24px;
    }

    .cart-feature-title {
        font-size: 12px;
    }

    .cart-feature-desc {
        font-size: 10px;
    }
}

.cc-swatch {
    transition: all 0.15s;
}

.cc-confirm-btn.enabled {
    background: var(--green) !important;
    cursor: pointer !important;
}

.cc-confirm-btn.enabled:hover {
    background: var(--green-dark) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .logo a {
        font-size: 20px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-card {
        max-width: 100%;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pcards-row {
        flex-wrap: wrap;
    }

    .products-cards {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo a {
        font-size: 18px;
    }

    .btn-primary {
        padding: 13px 20px;
        font-size: 12px;
        border-radius: 7px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px;
        gap: 5px;
    }

    .stat-number {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 8px !important;
    }

    .form-card {
        padding: 25px;
    }

    .form-steps {
        gap: 10px;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input .country-code {
        width: 100%;
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: #ffffff;
}

@media (min-width: 769px) {
    .portfolio-section {
        padding: 0px;
        background: #ffffff;
        margin: 5rem 0rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 20px 0;
    }
}

.portfolio-header {
    margin-bottom: 3rem;
}

.portfolio-header .section-header {
    margin-bottom: 0;
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-track.slow {
    animation: marqueeScroll 60s linear infinite;
}

.marquee-track.reverse {
    animation: marqueeScrollReverse 60s linear infinite;
}

.portfolio-image-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.portfolio-image-card img {
    width: 100%;
    display: block;
    height: auto;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================
   ENTERPRISE SOLUTIONS SECTION
   ============================================ */
.enterprise-section {
    padding: 80px 0;
    background: var(--white);
}

.enterprise-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enterprise-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enterprise-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.enterprise-title .text-green {
    color: var(--green);
}

.enterprise-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 500px;
}

.enterprise-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.check-mark {
    color: var(--green);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-enterprise {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

.btn-enterprise:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

.enterprise-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterprise-image img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .enterprise-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enterprise-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .enterprise-section {
        padding: 60px 0;
    }

    .enterprise-title {
        font-size: 28px;
    }

    .enterprise-description {
        font-size: 14px;
    }

    .enterprise-features li {
        font-size: 14px;
        gap: 10px;
    }

    .enterprise-features i {
        font-size: 16px;
    }
}

/* ============================================
   WHY BRANDS CHOOSE US SECTION
   ============================================ */
.why-choose-us-section {
    padding: 80px 0;
    background: var(--white);
}

.choose-us-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    gap: 16px;
}

.choose-us-badge {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.choose-us-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 900px;
}

.choose-us-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 700px;
    margin: 0;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    counter-increment: step;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-alt);
    padding: 32px 24px;
    border-radius: var(--r-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* GUARANTEE SECTION */
.guarantee-section {
    background: var(--bg-alt);
    padding: 48px 40px;
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.guarantee-badge {
    display: inline-block;
    background-color: rgba(55, 126, 98, 0.15);
    color: var(--green);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.guarantee-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    max-width: 600px;
    text-align: center;
}

.guarantee-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
    max-width: 700px;
    text-align: center;
}

.guarantee-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.guarantee-buttons .btn-primary,
.guarantee-buttons .btn-outline {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.guarantee-buttons .btn-primary {
    background-color: var(--green);
    color: white;
}

.guarantee-buttons .btn-primary:hover {
    background-color: var(--green-dark);
}

.guarantee-buttons .btn-outline {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}

.guarantee-buttons .btn-outline:hover {
    background-color: var(--green-bg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .choose-us-title {
        font-size: 36px;
    }

    .features-grid {
        gap: 24px;
    }

    .guarantee-section {
        padding: 40px 32px;
    }

    .guarantee-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .choose-us-header {
        margin-bottom: 40px;
    }

    .choose-us-title {
        font-size: 28px;
    }

    .choose-us-description {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 3fr));
    }

    .stat-card {
        padding: 24px 16px;
    }

    .guarantee-section {
        padding: 32px 24px;
    }

    .guarantee-title {
        font-size: 22px;
    }

    .guarantee-buttons {
        flex-direction: column;
        width: 100%;
    }

    .guarantee-buttons button {
        width: 100%;
    }
}

/* ============================================
   CLIENT REVIEWS SECTION
   ============================================ */
.client-reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    gap: 16px;
}

.reviews-badge {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.reviews-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 700px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.client-reviews-section .review-card {
    padding: 20px !important;
}

.review-header {
    display: flex;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.reviewer-avatar.ak {
    background: #4285F4;
}

.reviewer-avatar.pr {
    background: #34A853;
}

.reviewer-avatar.rg {
    background: #FBBC04;
    color: #000;
}

.reviewer-avatar.nk {
    background: #EA4335;
}

.reviewer-avatar.vm {
    background: #9C27B0;
}

.reviewer-avatar.sb {
    background: #FF6D00;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.reviewer-title {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.stars {
    color: #FBBC04;
    font-size: 13px;
    letter-spacing: 2px;
}

.review-date {
    color: var(--text-muted);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

.review-footer {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.review-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.review-btn:hover {
    color: var(--green);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .reviews-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .client-reviews-section {
        padding: 60px 0;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 0px !important;
    }
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-us-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-badge {
    display: inline-block;
    background-color: rgba(175, 0, 0, 0.08);
    color: var(--green);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.about-title .text-green {
    color: var(--green);
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-stat {
    text-align: center;
    padding: 32px 24px;
    background-color: #f0f0f0;
    border-radius: var(--r-lg);
    border: none;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 0px 0;
        padding-bottom: 3rem;
    }

    .about-wrapper {
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat {
        padding: 24px;
    }

    .stat-value {
        font-size: 28px;
    }
}

/* ============================================
   WHY DIGITALBIGHIT SECTION
   ============================================ */
.why-digitalbighit-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.why-digitalbighit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.why-badge {
    display: inline-block;
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.why-digitalbighit-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
}

.gold-text {
    color: var(--gold);
}

.why-digitalbighit-description {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0;
}

.why-digitalbighit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 16px;
}

.why-digitalbighit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    transition: var(--transition);
}

.why-digitalbighit-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

.why-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.why-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .why-digitalbighit-title {
        font-size: 36px;
    }

    .why-digitalbighit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-digitalbighit-section {
        padding: 60px 0;
    }

    .why-digitalbighit-title {
        font-size: 28px;
    }

    .why-digitalbighit-description {
        font-size: 14px;
    }

    .why-digitalbighit-card {
        padding: 24px 16px;
    }

    .why-card-title {
        font-size: 16px;
    }

    .why-card-desc {
        font-size: 13px;
    }
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    padding: 0rem 0rem 5rem 0rem;
    background: var(--white);
}

.comparison-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    gap: 16px;
}

.comparison-badge {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 900px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 16px;
    min-width: 900px;
    padding: 0px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 0px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}

.comparison-features {
    background: transparent;
}

.comparison-highlighted {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: var(--r-lg);
    padding: 0;
    overflow: hidden;
}

.comparison-cell-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px;
    background: #ffffff00;
    text-align: center;
    min-height: 49px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    justify-content: center;
}

.comparison-highlighted .comparison-cell-header {
    background: var(--green);
    color: white;
}

.comparison-cell {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.comparison-features .comparison-cell {
    font-weight: 600;
    color: var(--text-dark);
    border: none;
    background: transparent;
}

.comparison-highlighted .comparison-cell {
    background: var(--white);
    border-color: rgba(55, 126, 98, 0.1);
}

.comparison-highlighted .comparison-cell i {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-column:not(.comparison-highlighted) .comparison-cell {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .comparison-title {
        font-size: 36px;
    }

    .comparison-table {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 12px;
        min-width: 900px;
    }

    .comparison-cell {
        padding: 12px 12px;
        font-size: 12px;
    }

    .comparison-cell-header {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-title {
        font-size: 28px;
    }

    .comparison-header {
        margin-bottom: 40px;
    }

    .comparison-table {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        min-width: 100%;
    }

    .comparison-column:nth-child(n+3) {
        display: none;
    }

    .comparison-cell {
        padding: 10px 8px;
        font-size: 12px;
        min-height: 45px;
    }
}

/* ============================================
   MICRO-CONVERSIONS SECTION
   ============================================ */
.micro-conversions-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(55, 126, 98, 0.05) 100%);
}

.micro-conversions-header {
    text-align: center;
    margin-bottom: 48px;
}

.micro-conversions-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.micro-conversions-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.micro-conversions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.micro-cta-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.micro-cta-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.micro-cta-card i {
    font-size: 28px;
    color: var(--green);
}

.micro-cta-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.micro-cta-card p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.micro-cta-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.micro-cta-btn:hover {
    background: var(--green-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .micro-conversions-section {
        padding: 40px 0;
    }

    .micro-conversions-title {
        font-size: 24px;
    }

    .micro-conversions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .micro-cta-card {
        padding: 20px 16px;
    }

    .micro-cta-card i {
        font-size: 24px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    gap: 16px;
}

.faq-badge {
    display: inline-block;
    background-color: var(--green-bg);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 900px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--bg-alt);
    padding: 32px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 24px 16px;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-badges-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.badge-item i {
    font-size: 32px;
    color: var(--green);
    min-width: 40px;
}

.badge-rating {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.badge-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 0;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .badge-item {
        flex-direction: column;
        text-align: center;
    }

    .badge-item i {
        min-width: auto;
    }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cta-badge {
    display: inline-block;
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        width: 100%;
    }
}

.btn-whatsapp-cta {
    background-color: var(--green);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-cta:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-book-call-cta {
    background-color: transparent;
    color: white;
    border: 1px solid #a0a0a0;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book-call-cta:hover {
    border-color: white;
    color: white;
}

.cta-trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .cta-trust-badges {
        flex-direction: row !important;
        column-wrap: nowrap;
    }
}

.trust-item {
    font-size: 13px;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--green);
    font-size: 14px;
}

/* ============================================
   LIVE NOTIFICATION BADGE
   ============================================ */
.live-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 998;
    animation: slideInUp 0.5s ease-out;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

@keyframes slideInUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.notification-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .live-notification {
        bottom: 100px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
    }
}

/* ============================================
   STICKY WHATSAPP CTA (Mobile)
   ============================================ */
.sticky-whatsapp-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.sticky-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    padding: 14px 0;
}

.sticky-whatsapp-btn i {
    font-size: 20px;
}

.sticky-whatsapp-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .sticky-whatsapp-cta {
        display: block;
        width: 30%;
        padding: 0px;
        right: 0;
        left: auto;
        border-radius: 10px 0px 0px 10px;
        bottom: 30px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0a0a0a;
    color: #a0a0a0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 0px;
    justify-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    max-width: 500px;
}

.footer-column {
    display: none;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--green);
    color: var(--green);
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 16px;
}

.footer-contact-link {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-link:hover {
    color: var(--green);
}

.footer-contact-link i {
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-policy {
    font-size: 13px;
    color: #7a7a7a;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-policy:hover {
    color: var(--green);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 36px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cta-final-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp-cta,
    .btn-book-call-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-contact-link {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 24px;
    }

    .footer-copyright {
        font-size: 12px;
        width: 100%;
    }

    .footer-policies {
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .footer-policy {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        gap: 24px;
        padding: 0 16px;
    }

    .footer-brand {
        gap: 12px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-socials {
        gap: 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-contact {
        gap: 6px;
    }

    .footer-contact-link {
        font-size: 12px;
        gap: 6px;
    }

    .footer-bottom {
        gap: 12px;
        padding: 20px 16px;
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-policies {
        gap: 8px;
    }

    .footer-policy {
        font-size: 11px;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ============================================
   COMPONENT UTILITY CLASSES
   ============================================ */

/* Product Cards */
.product-image-container {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.product-badge-dark {
    background: #0a0a0a;
    border-radius: 28px;
    padding: 7px;
}

.product-info-box {
    background: #1a2744;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-discount-badge {
    background: #dc2626;
    padding: 7px 12px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

.phone-mockup-screen {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 530px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.product-promo-badge {
    background: var(--gold);
    padding: 7px 12px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #0a0a0a;
}

.text-muted {
    color: var(--text-muted);
}

/* Flex Utilities */
.flex-h {
    display: flex;
    align-items: center;
}

.flex-v {
    display: flex;
    flex-direction: column;
}

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

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

.flex-gap-4 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.flex-gap-6 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flex-gap-8 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-gap-12 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flex-gap-16 {
    display: flex;
    gap: 16px;
}

.flex-1 {
    flex: 1;
}

/* Product Variant Controls */
.variant-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 1px 6px;
    gap: 6px;
}

.variant-button {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.variant-button:hover {
    border-color: var(--green);
    background: rgba(175, 0, 0, 0.05);
}

/* Progress Indicators */
.progress-bar {
    position: absolute;
    top: -8px;
    right: 6px;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    background: #dc2626;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 1;
}

.progress-step-1 {
    position: absolute;
    left: 33%;
    top: -4px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step-2 {
    position: absolute;
    left: 65%;
    top: -6px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step-3 {
    position: absolute;
    right: 0;
    top: -4px;
    width: 16px;
    height: 16px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography Utilities */
.fs-6 { font-size: 6px; }
.fs-7 { font-size: 7px; }
.fs-8 { font-size: 8px; }
.fs-9 { font-size: 9px; }
.fs-10 { font-size: 10px; }
.fs-11 { font-size: 11px; }
.fs-12 { font-size: 12px; }
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--text-dark); }
.text-white { color: #fff; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1px; }
.mt-2 { margin-top: 2px; }
.mt-4 { margin-top: 4px; }
.mt-6 { margin-top: 6px; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mb-2 { margin-bottom: 2px; }
.mb-5 { margin-bottom: 5px; }
.mb-6 { margin-bottom: 6px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }

/* Sizing */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.w-full { width: 100%; }
.h-auto { height: auto; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Display */
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }

/* Borders & Shadows */
.border-none { border: none; }
.rounded-3 { border-radius: 3px; }
.rounded-4 { border-radius: 4px; }
.rounded-6 { border-radius: 6px; }
.rounded-full { border-radius: 99px; }

/* Review/Rating Components */
.review-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.avatar-xs {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.avatar-sm {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.avatar-md {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-responsive {
    width: 100%;
    display: block;
}

.strikethrough {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.opacity-50 {
    opacity: 0.5;
}

/* Mobile Responsive Utilities */
@media (max-width: 768px) {
    .phone-mockup-screen {
        height: 400px;
    }

    .fs-6 { font-size: 5px; }
    .fs-7 { font-size: 6px; }
    .fs-8 { font-size: 7px; }
    .fs-9 { font-size: 8px; }
    .fs-10 { font-size: 9px; }
    .fs-11 { font-size: 10px; }
    .fs-12 { font-size: 11px; }

    .avatar-xs {
        width: 48px;
        height: 48px;
    }

    .avatar-sm {
        width: 56px;
        height: 56px;
    }

    .avatar-md {
        width: 60px;
        height: 60px;
    }

    .flex-gap-16 {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .phone-mockup-screen {
        height: 350px;
    }

    .fs-6 { font-size: 4px; }
    .fs-7 { font-size: 5px; }
    .fs-8 { font-size: 6px; }
    .fs-9 { font-size: 7px; }
    .fs-10 { font-size: 8px; }
}

/* ============================================
   PRODUCT CARD COMPONENTS (No Inline Styles)
   ============================================ */

.product-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.product-image {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 1;
}

.product-content {
    padding: 14px;
    text-align: center;
}

.product-tags {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-tag {
    font-size: 8px;
    font-weight: 600;
    color: var(--green);
    background: #f2d562;
    border: none;
    padding: 3px 8px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.product-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.product-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-rating {
    font-size: 10px;
    color: var(--gold);
    margin-bottom: 10px;
}

.product-rating-count {
    color: var(--text-muted);
}

.product-variants {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.product-variant-btn {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.product-variant-btn:hover {
    border-color: var(--green);
    background: rgba(175, 0, 0, 0.05);
}

.product-variant-btn.active {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}

.product-atc-container {
    position: relative;
}

.product-atc-badge {
    position: absolute;
    top: -8px;
    right: 6px;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    background: #dc2626;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 1;
}

.product-atc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
}

.product-atc-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.product-atc-text {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-atc-price {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.product-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.product-benefit {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-benefit-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-benefit-icon i {
    font-size: 7px;
    color: var(--green);
}

.product-benefit-text {
    font-size: 7px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 16px;
    }

    .product-image {
        aspect-ratio: 1/1;
    }

    .product-variants {
        gap: 6px;
    }

    .product-variant-btn {
        font-size: 8px;
        padding: 4px 8px;
    }

    .product-benefits {
        gap: 10px;
        margin-top: 8px;
    }

    .product-benefit-icon {
        width: 16px;
        height: 16px;
    }

    .product-benefit-text {
        font-size: 6px;
    }
}

@media (max-width: 480px) {
    .product-card {
        margin-bottom: 12px;
    }

    .product-content {
        padding: 10px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-desc {
        font-size: 9px;
    }

    .product-variants {
        flex-wrap: wrap;
    }

    .product-atc-btn {
        padding: 8px 12px;
    }

    .product-atc-text {
        font-size: 10px;
    }

    .product-atc-price {
        font-size: 12px;
    }
}
