@charset "utf-8";

/* =========================================
   AX Landing Page - Luxury Premium Design
   ========================================= */

/* Font & Reset Overrides */
.ax-landing-wrap {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: #1e293b;
    line-height: 1.75;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ax-landing-wrap * {
    box-sizing: border-box;
}

/* Common Layout */
.ax-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.ax-section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

/* Typography Hierarchy */
.ax-title-wrap {
    text-align: center;
    margin-bottom: 100px;
}

.ax-title-wrap .sub-tit {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 0;
}

.ax-title-wrap h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.ax-title-wrap p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* 1. Hero Section - Luxury Dark with Gradient Overlay */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Animated Mesh Gradient Background */
.hero-bg-effect {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 35%);
    filter: blur(100px);
    z-index: 1;
    animation: meshMove 25s infinite alternate ease-in-out;
}

@keyframes meshMove {
    0% { transform: rotate(0deg) scale(1) translate(0, 0); }
    50% { transform: rotate(3deg) scale(1.05) translate(2%, 2%); }
    100% { transform: rotate(-2deg) scale(1.08) translate(-1%, 1%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-sub-copy {
    font-size: 24px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-main-copy {
    font-size: 84px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 60px;
    letter-spacing: -3.5px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 26px 64px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 20px 60px -15px rgba(37, 99, 235, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
    border: none;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 30px 80px -20px rgba(37, 99, 235, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.3) inset;
}

/* 2. Agitation Section (Cards) - Light Gray */
.agitation-section {
    background: #f8fafc;
}

.worry-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.worry-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 56px 44px;
    border-radius: 32px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.worry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worry-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.03),
        0 30px 70px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.worry-card:hover::before {
    transform: scaleX(1);
}

.worry-icon {
    font-size: 52px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 28px;
    color: #2563eb;
    box-shadow: 
        0 8px 24px -8px rgba(37, 99, 235, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.worry-card:hover .worry-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px -10px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(37, 99, 235, 0.1) inset;
}

.worry-text {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.4;
}

.worry-card p:last-child {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* 3. Solution Section - White with Large Details */
.solution-section {
    background: #ffffff;
}

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

.solution-item {
    background: #ffffff;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 40px 80px -20px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.solution-item:hover::before {
    opacity: 1;
}

.solution-item h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -1.2px;
    transition: transform 0.4s ease;
}

.solution-item:hover h3 {
    transform: translateX(5px);
    color: #2563eb;
}

.solution-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    font-weight: 500;
    transition: color 0.4s ease;
}

.solution-item:hover p {
    color: #475569;
}

/* 4. Social Proof Section */
.proof-section {
    background: #020617;
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proof-title {
    font-size: 24px;
    margin-bottom: 40px;
    color: #e2e8f0;
    font-weight: 700;
}

.intro-p {
    margin-top: 10px;
    color: #64748b;
}

.btn-start {
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

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

.pf-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.pf-item span {
    font-size: 20px;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.3s;
}

.pf-item:hover {
    border-color: #3b82f6;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.pf-item:hover span {
    color: #fff;
}

@media (max-width: 768px) {
    .proof-section { padding: 60px 0; }
    .proof-title { font-size: 18px; line-height: 1.4; padding: 0 20px; }
    .pf-item { height: 60px; padding: 0 25px; }
    .pf-item span { font-size: 16px; }
    .marquee-container::before, .marquee-container::after { width: 100px; }
}

/* 5. Diagnosis Wizard - Premium Glass Morphism */
.diagnosis-section {
    background: 
        linear-gradient(180deg, #f8fafc 0%, #eff6ff 50%, #e0e7ff 100%);
    padding: 80px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.diagnosis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.15; /* 희미하게 설정 */
    filter: grayscale(1); /* 톤 다운을 위해 그레이스케일 적용 (필요시 제거 가능) */
}

.video-bg-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.diagnosis-section .ax-container {
    position: relative;
    z-index: 2;
}

.diagnosis-container {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 50px 60px;
    border-radius: 40px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 40px 80px -20px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.diagnosis-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

/* Progress */
.progress-bar-wrap {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
}

.progress-bar-fill {
    height: 6px;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 10px;
}

.step-indicator {
    position: absolute;
    right: 0;
    top: -40px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

/* Question */
.q-category {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.q-text {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 36px;
    letter-spacing: -0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Options */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center; /* Center options horizontally */
}

.option-item {
    width: 100%;
    max-width: 500px; /* Constrain max width */
}

.option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-label {
    display: flex;
    align-items: center;
    justify-content: center; /* Center text inside */
    padding: 16px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.option-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.03), transparent);
    transition: left 0.5s;
}

.option-label:hover::before {
    left: 100%;
}

.option-label:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 12px 32px -10px rgba(0, 0, 0, 0.08);
}

.option-item input[type="radio"]:checked + .option-label {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    box-shadow: 
        0 1px 3px rgba(37, 99, 235, 0.1),
        0 12px 32px -8px rgba(37, 99, 235, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    transform: translateY(-3px) scale(1.01);
}

.option-item input[type="radio"]:checked + .option-label::after {
    content: '✓';
    position: absolute;
    right: 28px;
    font-size: 20px;
    font-weight: 900;
    color: #2563eb;
}

/* Buttons */
.wizard-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.btn-prev {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: translateY(-2px);
}

.btn-next {
    padding: 14px 44px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    background: #0f172a;
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover:not(:disabled) {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-next:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form Inputs */
.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-row {
    width: 100%;
}

.form-input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 22px 28px;
    border-radius: 20px;
    font-size: 18px;
    color: #0f172a;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #cbd5e1;
}

/* Result Screen - Premium Impact */
.result-card {
    padding: 20px 0;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.result-title {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.result-score-wrap {
    margin: 40px 0;
}

.result-score {
    font-size: 120px;
    line-height: 1;
    letter-spacing: -6px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 30%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.result-score span {
    font-size: 32px;
    letter-spacing: -1px;
    -webkit-text-fill-color: #94a3b8;
    margin-left: 8px;
}

.result-desc-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.05);
    text-align: left;
    margin-bottom: 40px;
}

.result-summary-title {
    font-size: 20px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-summary-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 24px;
    word-break: keep-all;
}

.result-analysis-text {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 32px;
    word-break: keep-all;
}

.recommendation {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.7;
}

.recommendation b {
    color: #2563eb;
    display: block;
    margin-bottom: 8px;
}

.result-card .btn-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.result-card .btn-cta {
    width: 100%;
    max-width: 480px;
    padding: 22px;
}

.result-card .btn-secondary-cta {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result-card .btn-secondary-cta:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: translateY(-2px);
}

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

/* Responsive */
/* Responsive Optimization */
@media (max-width: 1200px) {
    .ax-container { padding: 0 40px; }
    .hero-main-copy { font-size: 72px; }
}

@media (max-width: 1024px) {
    .ax-section { padding: 120px 0; }
    .hero-main-copy { font-size: 60px; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .worry-cards { grid-template-columns: repeat(2, 1fr); }
    .ax-title-wrap h2 { font-size: 44px; }
}

@media (max-width: 768px) {
    .ax-section { padding: 80px 0; }
    .ax-container { padding: 0 24px; }
    .hero-section { min-height: 700px; }
    .hero-main-copy { font-size: 42px; margin-bottom: 40px; letter-spacing: -2px; }
    .hero-sub-copy { font-size: 18px; margin-bottom: 30px; }
    .btn-cta { padding: 20px 48px; font-size: 18px; }
    
    .ax-title-wrap { margin-bottom: 60px; }
    .ax-title-wrap h2 { font-size: 34px; letter-spacing: -1px; }
    .ax-title-wrap p { font-size: 17px; }

    .solution-grid { grid-template-columns: 1fr; gap: 30px; }
    .worry-cards { grid-template-columns: 1fr; gap: 20px; }
    .worry-card { padding: 40px 30px; }
    .worry-icon { width: 72px; height: 72px; font-size: 42px; }

    /* Diagnosis Wizard & Result */
    .diagnosis-container { padding: 40px 20px; border-radius: 24px; }
    .q-text { font-size: 24px; line-height: 1.3; }
    .option-label { padding: 18px 24px; font-size: 16px; }
    .option-item input[type="radio"]:checked + .option-label::after { right: 20px; font-size: 18px; }
    
    .result-score { font-size: 80px; }
    .result-score span { font-size: 24px; }
    .result-title { font-size: 32px; letter-spacing: -0.5px; }
    .result-desc-box { padding: 30px 24px; border-radius: 24px; }
    .result-summary-text { font-size: 18px; }
    .result-analysis-text { font-size: 16px; }
    .recommendation { padding: 20px; }
}

@media (max-width: 480px) {
    .ax-section { padding: 60px 0; }
    .hero-main-copy { font-size: 34px; }
    .btn-cta { width: 100%; padding: 20px 30px; }
    .btn-next, .btn-prev { width: 100%; padding: 16px 20px; }
    .wizard-nav { flex-direction: column-reverse; gap: 12px; }
    
    .result-score { font-size: 64px; }
    .result-title { font-size: 28px; }
    .result-desc-box { padding: 24px 20px; }
    
    .option-label { padding: 16px 20px; }
    .form-input { padding: 18px 20px; font-size: 16px; }
}

