@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0038FF;
    --primary-dark: #0026A8;
    --secondary: #00C2FF;
    --navy: #0A1128;
    --white: #FFFFFF;
    --off-white: #F8FAFF;
    --text: #1E293B;
    --text-light: #64748B;
    --border: rgba(0, 56, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 20px 50px rgba(0, 56, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw;
    /* Ensure body never exceeds viewport width */
    position: relative;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 0;
    transition: var(--transition);
    transform: translateY(30px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

/* Typography */
h1 {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 700;
    line-height: 0.9;
    color: var(--navy);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5rem;
    margin-bottom: 40px;
    margin-top: 30px;
}




/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;

}

.btn {
    background: #345da9;
    color: white;

}

.btn:hover {
    transform: translateY(-5px);

}

.btn-outline {

    color: var(--primary);
    background: transparent;
}

.btn:hover {
    background: orange;
    color: white;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 20px 0;

}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* desktop */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        /* mobile */
    }
}


.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* =========================
   HERO BACKGROUND IMAGE
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/website-images-01.png");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    background: rgba(0, 0, 0, 0.5); /* Change 0.5 to adjust darkness */
    z-index: 1;
}

/* Make sure content appears above overlay */
.hero > * {
    position: relative;
    z-index: 2;
}


/* Keep content above overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Ensure hero text is visible on background */
.hero h1 {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    margin-top: 25px;
    margin-bottom: 35px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    margin-top: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 56, 255, 0.08);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Feature Cards - Premium Evolution */
.feature-card1,
.feature-card2,
.feature-card3,
.feature-card4 {
    padding: 35px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* .feature-card1::before,
.feature-card2::before,
.feature-card3::before,
.feature-card4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: red;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
} */

.feature-card1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-card2 {
    background: linear-gradient(135deg, #5c5c8c, #4a4a75);
}

.feature-card3 {
    background: linear-gradient(135deg, #666622, #555511);
}

.feature-card4 {
    background: linear-gradient(135deg, #e38585, #d16a6a);
}

.feature-card1:hover,
.feature-card2:hover,
.feature-card3:hover,
.feature-card4:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card1 h3,
.feature-card2 h3,
.feature-card3 h3,
.feature-card4 h3 {
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card1 p,
.feature-card2 p,
.feature-card3 p,
.feature-card4 p {
    font-size: 14px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-card1:hover .feature-icon,
.feature-card2:hover .feature-icon,
.feature-card3:hover .feature-icon,
.feature-card4:hover .feature-icon {
    background: white;
    color: #020617;
    transform: rotate(10deg);
}

/* Feature Staggered Reveal */
.feature-card1.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card2.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card3.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card4.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

/* Stats Section - Compact Elite Layout */
.stats-section {
    background: #020617;
    padding: 80px 0;
    /* Reduced vertical space */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background glow aura */
.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Faster stacking & tighter grid */
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 20px;
    /* Perfectly reduced padding */
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Staggered Scroll Animations */
.stat-item.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 194, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-val {
    font-size: 42px;
    /* Reduced for better fit */
    font-weight: 800;
    color: #00c2ff;
    margin-bottom: 12px;
    line-height: 1.1;
    display: block;
    transition: 0.5s;
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.2);
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-val {
    transform: scale(1.05);
}

.stat-tag {
    font-size: 11px;
    /* Tighter tag */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.7;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.stat-item:hover .stat-tag {
    opacity: 1;
    color: #00c2ff;
}

/* Models - Premium Dark Design */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.dark-model-card {
    background: #0d1224;
    /* Darker than section bg */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dark-model-card:hover {
    transform: translateY(-15px);
    background: #11182e;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.featured-model-card {
    border: 1px solid #0088ff;
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.1);
}

.premium-badge {
    background: rgba(0, 136, 255, 0.1);
    color: #345da9;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    width: fit-content;
}

.model-title-premium {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.model-list-premium {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.model-list-premium li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 17px;
    color: white;
}

.model-list-premium li i {
    color: #0088ff;
    width: 24px;
    text-align: center;
}

.model-desc-premium {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-premium-pill {
    background: #345da9;
    color: white;
    padding: 18px 0;
    text-align: center;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s;

}

.btn-premium-pill:hover {
    transform: scale(1.05);

}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.glass-form {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #F1F5F9;
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #F1F5F9;
    border-radius: 16px;
    font-size: 16px;
    background: #F8FAFC;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* Why Investors Trust Daewoo - Premium Layout */
.trust-section {
    min-height: 70vh;
    position: relative;
    background-image: url("../images/website-images-02.png");
    /* CHANGE TO YOUR IMAGE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    overflow: hidden;
}

/* Cinematic Background Gradient */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;

    pointer-events: none;
}

.trust-content-box {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.trust-section h2 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 80px;
    margin-top: -40px;
    color: black;
    line-height: 1.1;
}

.trust-section .accent-text {
    color: #345da9;
}

.trust-section p {
    font-size: 20px;
    line-height: 1.6;
    color: white;
    margin-bottom: 50px;
    margin-top: 40px;
    max-width: 700px;
}

.cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-market-premium {
    background: #345da9;
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
}

.btn-market-premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.5);
    color: white;
}

.btn-market-premium i {
    transition: 0.4s;
}

.btn-market-premium:hover i {
    transform: translateX(5px);
}

/* ===============================
   FOOTER BASE
================================ */
.footer-part {
    background: linear-gradient(180deg, #0b3f4a 0%, #062c34 100%);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Soft top divider */
.footer-part::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Subtle inner glow */
.footer-part::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
            rgba(79, 172, 254, 0.08),
            transparent 60%);
    pointer-events: none;
}

/* ===============================
   FOOTER COLUMN
================================ */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===============================
   LOGO
================================ */
.footer-part .logo {
    display: flex;
    justify-content: center;
}

/* .footer-part .logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 1000px;
  margin-bottom: -50px;
  margin-top: -0px;
} */

.footer-part .logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===============================
   FOOTER CONTACT ITEMS
================================ */
/* ===============================
   CLEAN FOOTER
================================ */
.clean-footer {
    background: #071e26;
    padding: 60px 15px;
    color: #ffffff;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    margin-top: -20px;
}

/* Powered by */
.powered-by {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* Copyright */
.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none !important;
}

.footer-social a:hover {
    color: #345da9;
    transform: translateY(-2px);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 576px) {
    .clean-footer {
        padding: 45px 10px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-social {
        gap: 14px;
    }

    .footer-social a {
        font-size: 16px;
    }
}

/* Benefits Section - Premium Match */
.benefits-section-premium {
    background: #ffffff;
    padding: 120px 0;
}

.benefits-header-premium {
    text-align: left;
    margin-bottom: 60px;
}

.benefits-header-premium h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.benefits-header-premium p {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card-premium {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.benefit-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 51, 153, 0.1);
}

.benefit-icon-premium {
    font-size: 32px;
    color: #003399;
    /* Daewoo Blue */
    margin-bottom: 30px;
    display: block;
}

.benefit-card-premium h6 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.benefit-card-premium p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================ */

/* Tablet & Below */
@media (max-width: 1100px) {
    .benefits-header-premium h2 {
        font-size: 32px;
    }

    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .form-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .nav-links {
        display: none;
    }

    /* Model Cards */
    .model-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile Optimization - 768px and below */
@media (max-width: 768px) {

    /* Prevent all horizontal overflow */
    * {
        max-width: 100%;
    }

    /* Container padding */
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-padding {
        padding: 60px 0;
        overflow-x: hidden;
    }

    /* All sections prevent overflow */
    section {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    /* Typography */
    h1 {
        font-size: clamp(32px, 8vw, 48px) !important;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    h2 {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.2;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    /* Navigation */
    nav {
        padding: 15px 0;
        width: 100%;
        overflow-x: hidden;
    }

    nav.scrolled {
        padding: 12px 0;
    }

    .logo-img {
        height: 36px;
        max-width: 150px;
    }

    /* Hero Section - Perfect Fit */
    .hero {
        min-height: 70vh;
        padding: 80px 0 40px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
        background-size: cover;
        background-position: center center;
    }

    .hero::before {
        width: 100%;
        max-width: 100vw;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 36px !important;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .hero-desc {
        font-size: 16px !important;
        line-height: 1.5;
        margin-top: 15px !important;
        margin-bottom: 25px !important;
        max-width: 100%;
    }

    .hero-actions {
        margin-top: 25px;
        width: 100%;
    }

    .hero-grid {
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-img {
        display: none;
        /* Hide empty image div on mobile */
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        border-radius: 12px;
        white-space: nowrap;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .feature-card1,
    .feature-card2,
    .feature-card3,
    .feature-card4 {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
    }

    .feature-card1 h3,
    .feature-card2 h3,
    .feature-card3 h3,
    .feature-card4 h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-card1 p,
    .feature-card2 p,
    .feature-card3 p,
    .feature-card4 p {
        font-size: 14px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* About Section */
    .hero-grid {
        gap: 30px;
    }

    .about-img img {
        border-radius: 20px !important;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* All images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Stats Section */
    .stats-section {
        padding: 50px 0;
        overflow-x: hidden;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .stat-item {
        padding: 30px 20px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }

    .stat-val {
        font-size: 36px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .stat-tag {
        font-size: 10px;
        letter-spacing: 1px;
        word-wrap: break-word;
    }

    /* Franchise Models */
    .model-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
    }

    .dark-model-card {
        padding: 35px 25px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .premium-badge {
        font-size: 16px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .model-title-premium {
        font-size: 24px;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .model-list-premium {
        width: 100%;
        max-width: 100%;
    }

    .model-list-premium li {
        font-size: 15px;
        margin-bottom: 14px;
        gap: 12px;
        word-wrap: break-word;
    }

    .model-desc-premium {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .btn-premium-pill {
        padding: 14px 0;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
    }

    /* Benefits Section */
    .benefits-section-premium {
        padding: 60px 0;
        overflow-x: hidden;
        width: 100%;
    }

    .benefits-header-premium {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }

    .benefits-header-premium h2 {
        font-size: 32px !important;
        margin-bottom: 12px;
    }

    .benefits-header-premium p {
        font-size: 16px;
    }

    .benefits-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .benefit-card-premium {
        padding: 30px 25px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .benefit-icon-premium {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefit-card-premium h6 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-card-premium p {
        font-size: 14px;
    }

    /* Trust Section */
    .trust-section {
        padding: 60px 0;
        min-height: 50vh;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        background-size: cover;
        background-position: center center;
    }

    .trust-content-box {
        width: 100%;
        max-width: 100%;
    }

    .trust-section h2 {
        font-size: 36px !important;
        margin-bottom: 40px !important;
        margin-top: 0 !important;
        word-wrap: break-word;
    }

    .trust-section p {
        font-size: 16px;
        margin-bottom: 30px !important;
        margin-top: 20px !important;
        max-width: 100%;
    }

    .cta-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-market-premium {
        padding: 16px 32px;
        font-size: 14px;
        max-width: 100%;
    }

    /* Form Section */
    #apply {
        margin-left: 0 !important;
        padding: 60px 0 !important;
        overflow-x: hidden;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .form-text {
        width: 100%;
        max-width: 100%;
    }

    .form-text h2 {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .form-text p {
        font-size: 16px !important;
    }

    .form-text ul {
        width: 100%;
        max-width: 100%;
    }

    .form-text ul li {
        font-size: 15px !important;
        margin-bottom: 18px !important;
        flex-wrap: wrap;
    }

    .glass-form {
        padding: 30px 20px !important;
        border-radius: 20px !important;
        width: 100%;
        max-width: 100%;
    }

    .glass-form h5 {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }

    .match-input {
        padding: 14px 18px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .glass-form button[type="submit"] {
        padding: 16px 36px !important;
        font-size: 16px !important;
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    .clean-footer {
        padding: 40px 15px;
        overflow-x: hidden;
        width: 100%;
    }

    .footer-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .footer-logo img {
        height: 50px;
        margin-top: -10px;
        max-width: 180px;
    }

    .powered-by {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .copyright {
        font-size: 12px;
        margin-bottom: 18px;
        word-wrap: break-word;
    }

    .footer-social {
        gap: 15px;
        justify-content: center;
    }

    .footer-social a {
        font-size: 24px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 0 30px;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .hero-desc {
        font-size: 15px !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-val {
        font-size: 32px;
    }

    .stat-tag {
        font-size: 9px;
    }

    .dark-model-card {
        padding: 25px 20px;
    }

    .model-title-premium {
        font-size: 22px;
    }

    .trust-section h2 {
        font-size: 28px !important;
    }

    .form-text h2 {
        font-size: 26px !important;
    }

    .glass-form {
        padding: 25px 18px !important;
    }
}