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

:root {
    --primary-teal: #4dd0e1;
    --dark-teal: #0a2e2e;
    --bright-yellow: #ffeb3b;
    --accent-green: #7cb342;
    --accent-cyan: #4dd0e1;
    --accent-cyan-hover: #26c6da;
    --light-teal: #80deea;
    --white: #ffffff;
    --light-bg: #f0f9f9;
    --text-dark: #0a2e2e;
    --text-gray: #5a7a7a;
}

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

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.hamburger {
    display: none;
}

.mobile-only {
    display: none;
}

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

.logo-text {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-teal);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-actions {
    display: flex;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--bright-yellow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 208, 225, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--dark-teal);
    color: var(--bright-yellow);
    border-color: var(--dark-teal);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid transparent;
    background-image: linear-gradient(#0a2e2e, #0a2e2e), linear-gradient(135deg, #4dd0e1 0%, #7cb342 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 18px 40px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-image: linear-gradient(135deg, #4dd0e1 0%, #7cb342 100%), linear-gradient(135deg, #4dd0e1 0%, #7cb342 100%);
    color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 208, 225, 0.4);
}

/* Hero Section */
.hero {
    background: #0a2e2e;
    color: var(--white);
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 900px;
    max-height: 900px;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a2e2e 0%, #0d3838 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 400px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--bright-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, #4dd0e1 0%, #7cb342 50%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight {
    color: var(--bright-yellow);
}

.highlight-purple {
    color: var(--light-purple);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #4dd0e1 0%, #7cb342 100%);
    color: #0a2e2e;
    font-weight: 700;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #7cb342 0%, #ffeb3b 100%);
    box-shadow: 0 8px 20px rgba(77, 208, 225, 0.5);
    transform: translateY(-2px);
}

.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.store-badge {
    height: 44px;
    width: auto;
}

.hero-visual {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 90%;
}

.hero-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Comparison Section */
.benefits-comparison-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.benefits-mobile-image {
    display: none;
}

.benefits-comparison-section h2 {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.benefits-comparison-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    margin-bottom: 0;
}

.benefits-header-col {
    padding: 40px 32px;
    background: #f9fafb;
    border-radius: 24px 0 0 0;
}

.benefits-title h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.2;
}

.benefits-title p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.benefits-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.benefits-col {
    padding: 40px 32px;
    background: var(--white);
    border-left: 1px solid #e5e7eb;
}

.benefits-col:first-child {
    border-left: none;
}

.benefits-col:last-child {
    border-radius: 0 24px 0 0;
}

.benefits-featured {
    background: var(--dark-teal);
    color: var(--white);
}

.benefits-col-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.value-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    min-height: 40px;
}

.benefits-featured .value-text {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-col-header .btn-primary {
    width: 100%;
    text-align: center;
    color: var(--dark-teal);
}

.value-badge {
    display: inline-block;
    background: #e5e7eb;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.benefits-featured .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    color: var(--dark-teal);
}

.benefits-featured .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--bright-yellow) 100%);
}

.benefits-comparison-table {
    display: grid;
    grid-template-columns: 280px repeat(2, 1fr);
    background: var(--white);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefits-row {
    display: contents;
}

.benefits-feature {
    padding: 24px 32px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.benefits-feature strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-value {
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.featured-value {
    background: #d4f1f4;
    color: var(--dark-teal);
    font-weight: 700;
}

.total-value {
    font-size: 18px;
    font-weight: 800;
}

.benefits-cta {
    text-align: center;
    margin-top: 60px;
}

.benefits-cta p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.benefits-cta .btn-primary {
    color: var(--dark-teal);
}

/* Feature Sections */
.feature-section,
.cashback-section,
.credit-section,
.overdraft-section {
    padding: 100px 0;
}

/* Spend Freely Section */
.spend-freely-section {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.03);
}

.spend-freely-header {
    text-align: center;
    margin-bottom: 60px;
}

.spend-freely-header h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.spend-freely-header p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.spend-freely-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.spend-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.spend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.spend-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.spend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spend-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #2d1b4e;
    padding: 24px 24px 12px;
    letter-spacing: 0.5px;
}

.spend-card p {
    font-size: 15px;
    color: var(--text-gray);
    padding: 0 24px 32px;
    line-height: 1.6;
}

/* Savings Section - New Design */
.savings-section {
    padding: 100px 0;
    background: var(--white);
}

.savings-hero {
    text-align: center;
    position: relative;
    padding-bottom: 60px;
}

.savings-hero h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.highlight-purple {
    color: #2d1b4e;
}

.savings-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.savings-visual {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.savings-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Borrow Money Section */
.borrow-section {
    margin-top: 100px;
    text-align: center;
}

.borrow-section h3 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.borrow-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.borrow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.borrow-card {
    background: #f9fafb;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: left;
    transition: all 0.3s;
}

.borrow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.borrow-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.borrow-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.borrow-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-section {
    background: var(--white);
}

.savings-section {
    background: var(--light-bg);
}

.cashback-section {
    background: var(--white);
}

.credit-section {
    background: var(--light-bg);
}

.overdraft-section {
    background: var(--white);
}

.feature-content,
.savings-content,
.cashback-content,
.credit-content,
.overdraft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.feature-text h2,
.savings-text h2,
.cashback-text h2,
.credit-text h2,
.overdraft-text h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.feature-text p,
.savings-text p,
.cashback-text p,
.credit-text p,
.overdraft-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    font-size: 18px;
    padding: 12px 0;
}

.mockup-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cashback-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.stat p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: #d4f1f4;
    text-align: center;
}

.security-section h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    color: var(--dark-teal);
}

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

.security-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 24px;
    transition: all 0.3s;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.security-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.security-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-number {
    color: var(--accent-cyan);
    font-weight: 900;
}

.security-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: var(--white);
}

.resources-section h2 {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.resource-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 32px;
}

.resource-tag {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

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

.resource-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--accent-cyan);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bright-yellow);
}

.testimonial-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--white);
}

.stars {
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--dark-teal);
}

.testimonial-content strong {
    font-size: 16px;
    color: var(--dark-teal);
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--dark-teal);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta .app-badges {
    justify-content: center;
    margin-top: 32px;
}

/* Footer */
.footer {
    background: var(--dark-teal);
    color: var(--white);
    padding: 60px 0 32px;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bright-yellow);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .logo-text {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 24px;
}
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--bright-yellow);
}

.footer-disclaimer {
    margin-top: 32px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .hero-visual {
        display: none;
    }

    .benefits-comparison-wrapper {
        grid-template-columns: 1fr;
    }

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

    .benefits-comparison-table {
        grid-template-columns: 1fr;
    }

    .benefits-col {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }

    .benefits-value {
        border-left: none;
    }

    .spend-freely-grid {
        grid-template-columns: 1fr;
    }

    .spend-freely-header h2 {
        font-size: 36px;
    }

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

    .savings-hero h2 {
        font-size: 42px;
    }

    .borrow-section h3 {
        font-size: 36px;
    }

    .feature-content,
    .savings-content,
    .cashback-content,
    .credit-content,
    .overdraft-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    /* Header */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 16px 0;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 18px;
        display: block;
    }

    .mobile-only {
        display: block;
        margin-top: 24px;
    }

    .nav-actions {
        display: none;
    }

    .logo-text {
        font-size: 22px;
    }

    /* Hero Section */
    .hero {
        padding: 32px 0 0 0;
        min-height: 700px;
        max-height: none;
        height: auto;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 32px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        font-size: 15px;
        padding: 16px 32px;
    }

    .hero-visual {
        display: block !important;
        order: 2;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-image {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    /* Benefits Comparison Section */
    .benefits-comparison-section {
        padding: 48px 0;
    }

    .benefits-comparison-section h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .benefits-comparison-wrapper {
        display: none !important;
    }

    .benefits-comparison-table {
        display: none !important;
    }

    .benefits-mobile-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        margin-top: 24px;
    }

    /* Security Section */
    .security-section {
        padding: 48px 0;
    }

    .security-section h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Resources Section */
    .resources-section {
        padding: 48px 0;
    }

    .resources-section h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Final CTA */
    .final-cta {
        padding: 48px 0;
    }

    .final-cta h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .final-cta p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
        font-size: 15px;
        padding: 16px 32px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 32px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 14px;
    }

    /* Stats/Grids */
    .cashback-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
