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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Colors from Figma */
    --indigo-600: #3a5de0;
    --indigo-400: #618dff;
    --grey-900: #222529;
    --grey-600: #878e95;
    --grey-100: #f1f3f5;
    --white: #ffffff;
    --green-success: #00db68;
    --blue-grade: #339ee7;
    --red-match: #ef376b;

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #fffcfc 0%, #eaf5ff 29.226%);
    --gradient-hero-mobile: linear-gradient(180deg, #fffcfc 0%, #eaf5ff 50%);

    /* Shadows */
    --shadow-primary: 0px 3px 11.9px 0px #829dff;
    --shadow-card: 0px 4px 20px rgba(0, 0, 0, 0.08);

    /* Max widths */
    --max-width-desktop: 1280px;
    --max-width-mobile: 360px;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', sans-serif;
    color: var(--grey-900);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    z-index: 1000;
    height: 80px;
}

.nav-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}

.logo {
    height: 42px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.logo-text {
    display: flex;
    gap: 2px;
    height: 100%;
    align-items: center;
}

.logo-char {
    height: 24px;
    width: auto;
}

.logo-img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-900);
    transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--indigo-600);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--grey-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 252px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
}

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

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--grey-100);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--grey-900);
    float: right;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-900);
    border-bottom: 1px solid var(--grey-100);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding-top: 80px;
    min-height: 831px;
    position: relative;
    overflow: visible;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 103px 0 0 0;
    position: relative;
    min-height: 831px;
}

.hero-content {
    flex: 0 0 auto;
    max-width: 458px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--indigo-600);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 57px;
    font-weight: 700;
    line-height: 69px;
    color: var(--grey-900);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey-600);
    margin-bottom: 40px;
}

.mobile-br {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 137px;
}

.btn {
    padding: 19px 16px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 230px;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--indigo-600);
    border: 1.4px solid var(--indigo-600);
}

.btn-outline:hover {
    background: var(--indigo-600);
    color: var(--white);
}

.btn-primary {
    background: var(--indigo-600);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: #2847c9;
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--indigo-600);
}

.btn-icon {
    font-size: 24px;
}

.btn-arrow {
    font-size: 20px;
    margin-left: 8px;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 22px 18px;
    border-radius: 16px;
    width: 160px;
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--indigo-400);
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--indigo-600);
}

.hero-image {
    position: fixed;
    right: 0;
    top: 80px;
    width: 850px;
    height: 920px;
    overflow: visible;
    z-index: 0;
}

.hero-phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5.9px);
    border: 0.4px solid var(--white);
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: float 3s ease-in-out infinite, fadeInUp 0.6s ease-out forwards;
}

.badge-1 {
    left: 120px;  /* 기존 20px에서 100px 오른쪽으로 (20+80) */
    top: 330px;  /* 기존 231px에서 99px 아래로 (19+80) */
    color: var(--green-success);
    animation-delay: 0s, 1s;
}

.badge-2 {
    left: 473px;  /* 기존 373px에서 100px 오른쪽으로 (20+80) */
    top: 359px;  /* 기존 259px에서 100px 아래로 (20+80) */
    color: var(--blue-grade);
    animation-delay: 0s, 2s;
}

.badge-3 {
    left: 202px;  /* 기존 102px에서 100px 오른쪽으로 (20+80) */
    top: 590px;  /* 기존 490px에서 100px 아래로 (20+80) */
    color: var(--red-match);
    animation-delay: 0s, 3s;
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 46px;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.partners-track {
    display: flex;
    gap: 24px;
    animation: slide 20s linear infinite;
}

.partner-card {
    background: white;
    border-radius: 16px;
    box-shadow: 1px 2px 12px 0px rgba(42, 53, 113, 0.2);
    padding: 20px;
    width: 260px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo {
    width: auto;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
}

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

/* Features Section */
.features {
    background: var(--grey-100);
    padding: 100px 0;
}

.features-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 128px;
}

.features-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--indigo-600);
    margin-bottom: 16px;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.section-description {
    font-size: 20px;
    font-weight: 500;
    color: var(--grey-600);
    margin-bottom: 32px;
}

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

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.feature-badge-no1 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-icon {
    font-size: 60px;
}

.feature-badge {
    position: absolute;
    right: 40px;
    top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--indigo-600);
}

.feature-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-100);
}

.dot.active {
    background: var(--indigo-600);
}

.step-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-badge {
    font-size: 36px;
}

.step-arrow {
    color: var(--grey-600);
}

.rating-stars {
    color: #ffd700;
    font-size: 24px;
    letter-spacing: 4px;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 12px;
    line-height: 40px;
}

.feature-description {
    font-size: 20px;
    color: var(--grey-600);
    margin-bottom: 16px;
    line-height: 28px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #E9ECEF;
    color: #496EF2;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

/* Banner Section */
.banner {
    background: var(--indigo-600);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.banner-content {
    max-width: 500px;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.banner-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.banner-image {
    position: absolute;
    right: 128px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Results Section */
.results {
    background: #1a1a2e;
    padding: 100px 0;
}

.results-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 128px;
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 60px;
}

.results-header {
    position: relative;
}

.results-header .section-badge {
    color: var(--indigo-400);
}

.results-header .section-title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.section-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.results-header .btn {
    margin-bottom: 32px;
}

.results-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 28px;
}

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

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.result-percent {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.result-symbol {
    font-size: 24px;
    color: var(--indigo-400);
    margin-right: 8px;
}

.percent-sign,
.result-unit {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.result-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Reviews Section */
.reviews {
    background: var(--white);
    padding: 100px 0;
}

.reviews-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 128px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 24px;
}

.reviews-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 40px;
}

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

.review-card {
    background: var(--grey-100);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.review-avatar {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--grey-900);
}

.review-company {
    font-size: 14px;
    color: var(--grey-600);
}

.review-text {
    font-size: 16px;
    color: var(--grey-900);
    line-height: 1.6;
}

/* Banner Alt Section */
.banner-alt {
    background: var(--grey-100);
    padding: 0;
}

.banner-alt-container {
    max-width: var(--max-width-desktop);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.banner-alt-image {
    width: 100%;
    overflow: visible;
}

.banner-alt-img {
    width: 120%;
    height: auto;
    border-radius: 20px;
    margin-left: -10%;
}

.banner-alt-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.check-icon {
    color: var(--green-success);
    font-size: 20px;
    font-weight: 700;
}

.banner-alt-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.banner-alt-item p {
    font-size: 16px;
    color: var(--grey-600);
}

/* AI Solution Section */
.ai-solution {
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f3e8ff 100%);
    margin-top: 0;
    text-align: center;
}

.ai-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.ai-content {
    text-align: center;
    max-width: 600px;
}

.ai-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-description {
    font-size: 18px;
    color: var(--grey-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.ai-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--grey-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: var(--max-width-desktop);
    margin: 0 auto;
    padding: 0 128px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    gap: 2px;
}

.footer-logo-char {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-company {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-details {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.footer-column a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        height: 64px;
    }

    .nav-container {
        padding: 0 24px;
        max-width: 360px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    /* Hero Section */
    .hero {
        background: var(--gradient-hero-mobile);
        min-height: 944px;
        padding-top: 64px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .mobile-br {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 288px;
        margin-bottom: 40px;
        gap: 16px;
        align-items: center;
    }

    .btn {
        font-size: 16px;
        padding: 16px;
        width: 100%;
        height: 56px;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 476px;
        margin-top: 40px;
        align-self: flex-end;
    }

    .floating-badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .badge-1 {
        left: 15px;
        top: 171px;
    }

    .badge-2 {
        left: 240px;
        top: 186px;
    }

    .badge-3 {
        left: 61px;
        top: 335px;
    }

    /* Partners Section */
    .partners {
        padding: 60px 0;
        overflow: hidden;
        width: 100%;
    }

    .partners-container {
        max-width: 360px;
        width: 100%;
        overflow: hidden;
    }

    .partners-title {
        font-size: 24px;
        margin-bottom: 36px;
        padding: 0 24px;
    }

    .partners-slider {
        width: 100%;
        overflow: hidden;
    }

    .partners-track {
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }

    .partner-card {
        width: 180px;
        height: 100px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        flex-shrink: 0;
    }

    .partner-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Features Section */
    .features {
        padding: 80px 0;
    }

    .features-container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .feature-card {
        padding: 32px 24px;
        text-align: left;
    }

    .feature-step-badge {
        top: 16px;
        right: 16px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .feature-image {
        height: 115px;
        justify-content: flex-start;
    }

    .feature-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

    .feature-description {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .feature-tag, .feature-tags {
        font-size: 14px;
    }

    /* Banner Section */
    .banner-container {
        padding: 0 24px;
        flex-direction: column;
        text-align: center;
    }

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

    .banner-description {
        font-size: 16px;
    }

    .banner-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 200px;
        margin-top: 32px;
    }

    /* Results Section */
    .results-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }

    .results-header .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .results-description {
        font-size: 16px;
        line-height: 24px;
    }

    .result-percent {
        font-size: 36px;
    }

    .result-label {
        font-size: 16px;
    }

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

    /* Reviews Section */
    .reviews-container {
        padding: 0 24px;
    }

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

    /* Banner Alt Section */
    .banner-alt-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-alt-img {
        width: 100%;
        margin-left: 0;
    }

    /* AI Solution Section */
    .ai-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 40px;
    }

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

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

    .ai-description {
        font-size: 16px;
    }

    .ai-image {
        width: 100%;
        height: 350px;
    }

    /* AI Solution Section */
    .ai-solution {
        padding: 80px 0 0 0;
    }

    .ai-container {
        padding: 0 24px;
        max-width: 360px;
        margin: 0 auto;
        gap: 30px;
    }

    .ai-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .ai-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .btn-blue {
        padding: 16px 28px;
        font-size: 16px;
        width: auto;
    }

    .ai-image {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .ai-img {
        width: 100%;
        height: auto;
        max-width: none;
    }
}

@media (max-width: 360px) {
    /* Consistent padding for all sections on very small screens */
    .hero-container,
    .features-container,
    .banner-container,
    .results-container,
    .reviews-container,
    .banner-alt-container,
    .ai-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}