/* ===================================
   Motina Landing Page - Stylesheet
   Brand Colors: Red (#E53935) + Yellow (#FBC02D)
   =================================== */

/* ----- Reset & Base Styles ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E53935;
    --primary-yellow: #FBC02D;
    --dark-red: #C62828;
    --dark-yellow: #F9A825;
    --light-red: #FFEBEE;
    --light-yellow: #FFF9C4;
    --text-dark: #212121;
    --text-gray: #666666;
    --text-light: #9E9E9E;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

p {
    color: var(--text-gray);
}

/* ----- Header & Navigation ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--light-red);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-xlarge {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* ----- Section Styles ----- */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* ----- SECTION 1: HERO ----- */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFDE7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.15), transparent);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.badge-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-yellow);
    color: var(--dark-yellow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 3px dashed var(--primary-yellow);
}

.promo-icon {
    font-size: 40px;
    color: var(--primary-red);
}

.promo-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.promo-code {
    font-size: 16px;
    color: var(--text-dark);
}

.promo-code strong {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 800;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.stat-item i {
    font-size: 32px;
    color: var(--primary-red);
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: var(--text-dark);
}

.stat-item span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.phone-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    background: white;
    border-radius: 40px;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 12px solid #2c2c2c;
}

.mock-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mock-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
}

.mock-app-header i {
    font-size: 22px;
    color: var(--primary-red);
}

.mock-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.mock-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mock-cat-card {
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.mock-cat-card.red {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.mock-cat-card.yellow {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
}

.mock-cat-card i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.mock-offers {
    background: var(--light-yellow);
    padding: 15px;
    border-radius: 12px;
}

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

.mock-offer-badge i {
    font-size: 24px;
    color: var(--primary-red);
}

.mock-offer-badge strong {
    display: block;
    color: var(--primary-red);
    font-size: 14px;
}

.mock-offer-badge small {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-red);
}

.card-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ----- SECTION 2: PROBLEM-SOLUTION ----- */
.problem-solution {
    background: white;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.ps-header i {
    font-size: 28px;
}

.problems .ps-header i {
    color: #F44336;
}

.solutions .ps-header i {
    color: #4CAF50;
}

.ps-header h3 {
    font-size: 26px;
}

.ps-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card {
    background: #FFEBEE;
    border-left: 4px solid #F44336;
}

.solution-card {
    background: #E8F5E9;
    border-left: 4px solid #4CAF50;
}

.ps-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ps-icon {
    font-size: 32px;
    min-width: 40px;
}

.problem-card .ps-icon {
    color: #F44336;
}

.solution-card .ps-icon {
    color: #4CAF50;
}

.ps-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ps-content p {
    font-size: 14px;
    line-height: 1.5;
}

/* ----- SECTION 3: FEATURES ----- */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ----- SECTION 4: HOW IT WORKS ----- */
.how-it-works {
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin: 20px 0;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
}

.step-card strong {
    color: var(--primary-red);
    font-weight: 700;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-yellow);
}

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

/* ----- SECTION 5: APP SCREENSHOTS ----- */
.app-screenshots {
    background: linear-gradient(135deg, var(--light-red), var(--light-yellow));
}

.screenshots-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.screenshots-slider::-webkit-scrollbar {
    height: 8px;
}

.screenshots-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.screenshots-slider::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.screenshot-card {
    min-width: 220px;
    text-align: center;
}

.screenshot-phone {
    background: #2c2c2c;
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

.screenshot-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
}

.screen-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.screen-body {
    padding: 20px;
}

.screen-search {
    background: var(--bg-light);
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.screen-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.screen-cat {
    flex: 1;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.screen-cat.red {
    background: var(--primary-red);
}

.screen-cat.yellow {
    background: var(--primary-yellow);
}

.screen-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.screen-item {
    background: var(--bg-light);
    height: 60px;
    border-radius: 10px;
}

.screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.screen-cat-item {
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.screen-cat-item.red {
    background: var(--primary-red);
}

.screen-cat-item.yellow {
    background: var(--primary-yellow);
}

.screen-product-img {
    background: var(--bg-light);
    height: 140px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.screen-product-details {
    margin-bottom: 20px;
}

.screen-detail-line {
    background: var(--bg-light);
    height: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.screen-detail-line.short {
    width: 60%;
}

.screen-add-btn {
    background: var(--primary-red);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.screen-checkout-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.screen-checkout-line {
    background: white;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 6px;
}

.screen-checkout-line.short {
    width: 50%;
}

.screen-promo-box {
    background: var(--primary-yellow);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.screen-checkout-btn {
    background: var(--primary-red);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.screen-map {
    background: var(--bg-light);
    height: 200px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.red-icon {
    color: var(--primary-red);
    font-size: 36px;
}

.screen-route {
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--primary-yellow);
    top: 50%;
}

.screen-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--light-yellow);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.screen-status i {
    font-size: 24px;
    color: var(--primary-red);
}

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

/* ----- SECTION 6: OFFER HIGHLIGHT ----- */
.offer-highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.2), transparent);
    border-radius: 50%;
}

.offer-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.offer-title {
    font-size: 44px;
    color: white;
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.offer-code-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.code-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.code-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    padding: 15px 30px;
    background: var(--light-red);
    border-radius: 12px;
    border: 3px dashed var(--primary-red);
}

.copy-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.offer-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.offer-feature-item i {
    color: var(--primary-yellow);
    font-size: 20px;
}

.offer-btn {
    margin-bottom: 20px;
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.offer-btn:hover {
    background: var(--dark-yellow);
}

.offer-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-style: italic;
}

/* ----- SECTION 7: TESTIMONIALS ----- */
.testimonials {
    background: var(--bg-light);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.rating-badge i {
    color: var(--primary-yellow);
    font-size: 20px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ----- SECTION 8: FAQ ----- */
.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ----- SECTION 9: FINAL CTA ----- */
.final-cta {
    background: linear-gradient(135deg, var(--light-red), var(--light-yellow));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 80px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.cta-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 18px;
    color: var(--text-dark);
}

.cta-promo i {
    color: var(--primary-red);
    font-size: 22px;
}

.cta-promo strong {
    color: var(--primary-red);
    font-size: 22px;
    font-weight: 800;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-badge-item i {
    font-size: 36px;
    color: var(--primary-red);
}

.cta-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ----- FOOTER ----- */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-red);
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.download-badge:hover {
    transform: translateY(-3px);
}

.download-badge i {
    font-size: 28px;
}

.download-badge small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.download-badge strong {
    display: block;
    font-size: 16px;
}

.promo-code-footer {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.promo-code-footer strong {
    color: var(--primary-yellow);
    font-weight: 800;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom i {
    color: var(--primary-red);
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .promo-highlight {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .floating-card {
        display: none;
    }
    
    .ps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-title {
        font-size: 32px;
    }
    
    .code-text {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .offer-features {
        flex-direction: column;
        gap: 15px;
    }
}