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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #2C3E50;
    line-height: 1.6;
    overflow-x: hidden;
}

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

p {
    line-height: 1.8;
}

/* ===========================
   Container
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   스크롤 진행 바
=========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #3498DB;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===========================
   Buttons
=========================== */
.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3498DB;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.cta-primary:hover {
    background: #2980B9;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.cta-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(4px);
}

.cta-large {
    padding: 20px 56px;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #3498DB;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #3498DB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498DB;
    color: #FFFFFF;
}

/* ===========================
   Section Titles
=========================== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 64px;
}

.section-title-white {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 48px;
}

/* ===========================
   Hero Section
=========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
}

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

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

.beta-badge {
    display: inline-block;
    background: #F8F9FA;
    color: #7F8C8D;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.main-headline {
    font-size: 48px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.4;
    margin-bottom: 24px;
}

.sub-headline {
    font-size: 24px;
    font-weight: 400;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 48px;
}

.features-list li {
    font-size: 16px;
    font-weight: 400;
    color: #2C3E50;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #3498DB;
    margin-right: 12px;
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    position: relative;
    z-index: 1;
}

.mockup-container {
    position: relative;
    will-change: transform;
}

.hero-mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15)) 
            drop-shadow(0 40px 100px rgba(52, 152, 219, 0.2));
    transition: transform 0.3s ease;
}

/* ===========================
   Pain Points Section
=========================== */
.pain-points-section {
    background: #F8F9FA;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

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

.pain-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pain-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px) scale(1.02);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3498DB;
    transition: transform 0.3s ease;
}

.pain-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    display: block;
}

.pain-card p {
    font-size: 18px;
    color: #2C3E50;
    line-height: 1.6;
}

.solution-text {
    font-size: 18px;
    font-weight: 500;
    color: #3498DB;
    text-align: center;
    margin-top: 48px;
}

/* ===========================
   Solution Section
=========================== */
.solution-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.solution-description {
    font-size: 18px;
    color: #7F8C8D;
    line-height: 1.8;
    margin-bottom: 48px;
}

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

.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    color: #7F8C8D;
}

/* Solution Mockup Visual */
.solution-mockup-container {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    perspective: 1500px;
}

.solution-mockup-container.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-mockup-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    display: block;
}

.solution-mockup-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ===========================
   Process Section
=========================== */
.process-section {
    background: #F8F9FA;
    padding: 120px 0 0;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
}

.process-step {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498DB;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #7F8C8D;
}

.process-arrow {
    font-size: 32px;
    color: #3498DB;
    font-weight: 700;
}

.process-note {
    font-size: 18px;
    color: #7F8C8D;
    text-align: center;
    margin-top: 48px;
    margin-bottom: -300px;
}

.process-image-container {
    max-width: 600px;
    margin: 88px auto 80px;
    opacity: 0;
    transform: translateY(-20px);
}

.process-image-container.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.process-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===========================
   Included Section
=========================== */
.included-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.included-item {
    background: #F8F9FA;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.included-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.included-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.included-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3498DB;
    transition: all 0.3s ease;
}

.included-item:hover .included-icon {
    transform: scale(1.15) rotate(5deg);
    color: #2980B9;
}

.included-icon i {
    display: block;
}

.included-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
}

.included-item p {
    font-size: 14px;
    color: #7F8C8D;
}

.upsell {
    text-align: center;
    margin-top: 64px;
}

.upsell p {
    font-size: 16px;
    color: #7F8C8D;
    margin-bottom: 24px;
}

/* ===========================
   Comparison Section
=========================== */
.comparison-section {
    background: #F8F9FA;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.comparison-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7F8C8D;
    margin-top: -40px;
    margin-bottom: 64px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.comparison-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.comparison-card.recommended {
    border: 3px solid #3498DB;
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.comparison-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F8F9FA;
}

.comparison-header h3 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 16px;
}

.comparison-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
}

.comparison-price.highlight .price-large {
    color: #3498DB;
    font-size: 36px;
}

.price-sub {
    font-size: 14px;
    color: #7F8C8D;
}

.comparison-features {
    list-style: none;
    margin-bottom: 32px;
}

.comparison-features li {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-features li.positive {
    color: #2C3E50;
}

.comparison-features li.positive i {
    color: #27AE60;
    font-size: 18px;
}

.comparison-features li.negative {
    color: #7F8C8D;
}

.comparison-features li.negative i {
    color: #E74C3C;
    font-size: 18px;
}

.comparison-note {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #7F8C8D;
    line-height: 1.6;
}

.comparison-note strong {
    color: #2C3E50;
    display: block;
    margin-bottom: 8px;
}

.highlight-note {
    background: linear-gradient(135deg, #EBF5FB, #D6EAF8);
    border: 1px solid #3498DB;
}

.highlight-note p {
    color: #2C3E50;
}

/* Comparison Summary */
.comparison-summary {
    max-width: 800px;
    margin: 0 auto;
}

.summary-box {
    background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
    border: 2px solid #3498DB;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

.summary-box h4 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 24px;
}

.cost-calculation {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
    color: #2C3E50;
}

.cost-item:not(:last-child) {
    border-bottom: 1px solid #F8F9FA;
}

.cost-item.highlight {
    background: linear-gradient(135deg, #EBF5FB, #D6EAF8);
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

.cost-value {
    font-size: 20px;
    font-weight: 700;
    color: #3498DB;
}

.cost-note {
    font-size: 16px;
    color: #7F8C8D;
    line-height: 1.8;
}

.cost-note strong {
    color: #3498DB;
    font-size: 18px;
}

/* ===========================
   Pricing Section
=========================== */
.pricing-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-card-side {
    opacity: 0;
    transform: translateX(-50px);
}

.pricing-card-side.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.pricing-image-side {
    opacity: 0;
    transform: translateX(50px);
    height: 100%;
}

.pricing-image-side.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease 0.2s;
}

.pricing-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15))
            drop-shadow(0 40px 100px rgba(52, 152, 219, 0.1));
}

.pricing-card {
    background: #FFFFFF;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.beta-gift-badge {
    background: #FFF3E0;
    color: #E65100;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 32px;
}

.price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2C3E50;
}

.price-description {
    font-size: 18px;
    color: #7F8C8D;
    margin-bottom: 32px;
    line-height: 1.8;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 32px;
}

.price-features li {
    font-size: 16px;
    color: #2C3E50;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: #3498DB;
    margin-right: 12px;
    font-size: 18px;
}

/* ===========================
   Beta Benefits Section
=========================== */
.beta-benefits-section {
    background: #2C3E50;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.beta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.beta-mockup {
    opacity: 0;
    transform: translateX(-50px);
}

.beta-mockup.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.beta-mockup-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.beta-text {
    text-align: left;
}

.beta-text .section-title-white {
    text-align: left;
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: #3498DB;
    margin-right: 12px;
    font-size: 20px;
}

.benefits-note {
    font-size: 14px;
    color: #BDC3C7;
    margin-top: 32px;
}

/* ===========================
   FAQ Section
=========================== */
.faq-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

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

.faq-item {
    background: #FFFFFF;
    border: 2px solid #F8F9FA;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3498DB;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
}

.faq-question i {
    color: #3498DB;
    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: 200px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #7F8C8D;
}

.faq-contact {
    text-align: center;
    margin-top: 64px;
}

.faq-contact p {
    font-size: 16px;
    color: #7F8C8D;
    margin-bottom: 24px;
}

/* ===========================
   Final CTA Section
=========================== */
.final-cta-section {
    background-image: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                      url('../images/final-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta-section .section-title {
    color: #FFFFFF;
}

.final-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.refund-note {
    font-size: 14px;
    color: #BDC3C7;
    margin-top: 16px;
}

/* ===========================
   Footer
=========================== */
.footer {
    background: #2C3E50;
    padding: 64px 0 32px;
    color: #BDC3C7;
    position: relative;
    z-index: 10;
}

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

.footer-left h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-left p {
    font-size: 14px;
    color: #BDC3C7;
    margin-bottom: 24px;
}

.footer-link {
    color: #3498DB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5DADE2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

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

.footer-bottom p {
    font-size: 12px;
    color: #7F8C8D;
}

/* ===========================
   Animations
=========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Responsive Design
=========================== */

/* Tablet (768px ~ 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .beta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Mobile (767px 이하) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    /* Section Titles */
    .section-title,
    .section-title-white {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    /* All Sections */
    .pain-points-section,
    .solution-section,
    .process-section,
    .included-section,
    .pricing-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    /* Cards Grid */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Process Steps */
    .process-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        max-width: 100%;
    }
    
    /* Included Grid */
    .included-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Comparison Section */
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-subtitle {
        font-size: 16px;
        margin-top: -20px;
        margin-bottom: 40px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-card {
        padding: 32px 24px;
    }
    
    .price-large {
        font-size: 28px;
    }
    
    .comparison-price.highlight .price-large {
        font-size: 32px;
    }
    
    .summary-box {
        padding: 24px;
    }
    
    .summary-box h4 {
        font-size: 20px;
    }
    
    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .cost-note {
        font-size: 14px;
    }
    
    /* Beta Content */
    .beta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .beta-text {
        text-align: center;
    }
    
    .beta-text .section-title-white {
        text-align: center;
    }
    
    .benefits-list {
        text-align: left;
    }
    
    /* Pricing Layout */
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Buttons */
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        min-width: 280px;
    }
    
    .cta-large {
        padding: 18px 32px;
        font-size: 16px;
    }
}