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

:root {
    /* Color Palette */
    --primary-color: #FFD93D;
    --secondary-color: #6BCB77;
    --dark-bg: #2C2C2C;
    --darker-bg: #1a1a1a;
    --light-bg: #F5F1E8;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --red-warning: #FF6B6B;
    --orange-warning: #FFA94D;
    --green-success: #4ECDC4;
    
    /* Typography */
    --font-main: 'Noto Sans KR', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: center;
}

.subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Hero Section - Mobile First */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #5BA3E8 0%, #2b79e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-card {
    background: white;
    border-radius: 25px;
    padding: 45px 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight-blue {
    color: #E53935;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-highlight {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.text-blue {
    color: #2E5C8A;
}

.planner-preview {
    width: 100%;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Hero Form */
.hero-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 1px solid #E8E8E8;
    background: #FAFAFA;
    border-radius: 8px;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

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

.form-input:focus,
.form-select:focus {
    outline: none;
    border-bottom-color: #42A5F5;
    background: #E3F2FD;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #EF5350 0%, #E53935 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.4);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #E53935 0%, #D32F2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 83, 80, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
}

.form-message.success {
    color: #2E7D32;
    background: #E8F5E9;
}

.form-message.error {
    color: #C62828;
    background: #FFEBEE;
}

.form-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 12px;
    line-height: 1.5;
}

/* Detail Link */
.detail-link {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

.link-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #5DADE2;
    background: white;
    border: 2px solid #5DADE2;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: #5DADE2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.3);
}



/* Dark Background Sections */
.dark-bg {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

/* Introduction Section */
.intro-section {
    padding: 100px 20px 60px;
}

.intro-section .section-title {
    margin-bottom: 50px;
}

.highlight-yellow {
    color: var(--primary-color);
    font-weight: 900;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
}

.problem-text p {
    margin-bottom: 30px;
}

.question-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: none;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.question-box p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0 !important;
}

.warning {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red-warning);
}

/* Time Waste Analysis Section */
.time-analysis-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.alert-box {
    max-width: 900px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 35px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #333;
}

.alert-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.time-waste-card {
    max-width: 900px;
    margin: 0 auto;
}

.waste-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waste-item {
    background: white;
    padding: 35px 40px;
    border-radius: 16px;
    border-left: 5px solid #E53935;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.waste-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.waste-item.urgent {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    border-left: 5px solid #FFD93D;
    padding: 40px;
}

.waste-header {
    margin-bottom: 12px;
}

.waste-time {
    font-size: 1.8rem;
    font-weight: 900;
    color: #E53935;
    letter-spacing: -0.5px;
}

.waste-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.waste-conclusion {
    text-align: center;
}

.conclusion-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
}

.conclusion-result {
    font-size: 1.3rem;
    color: #FFD93D;
    font-weight: 700;
    line-height: 1.8;
    margin: 0;
}

.highlight-red {
    color: var(--red-warning);
    font-weight: 700;
    font-size: 1.5rem;
}

.intro-section .community-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.intro-section .warning-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-top: 40px;
}

/* Diagnosis Section */
.diagnosis-section {
    padding: 40px 20px 60px;
    background: linear-gradient(180deg, #2C2C2C 0%, #1a1a1a 100%);
}

.diagnosis-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.diagnosis-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.diagnosis-icon {
    font-size: 2.5rem;
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.diagnosis-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

.highlight-red-text {
    color: #FF6B6B;
    font-weight: 900;
    font-size: 3rem;
}

.big-question {
    font-size: 1.6rem;
    line-height: 2;
    color: white;
    margin: 60px 0;
    font-weight: 400;
}

.big-question strong {
    color: #FFD93D;
    font-size: 1.8rem;
    font-weight: 700;
}

.warning-message {
    margin: 60px 0;
}

.warning-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B6B;
    line-height: 1.6;
}

.focus-box {
    background: rgba(255, 107, 107, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.focus-desc {
    font-size: 1.4rem;
    color: #e0e0e0;
    line-height: 2;
}

.time-alert {
    margin: 60px 0;
}

.red-emphasis {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 1.4rem;
}

.check-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 80px;
    color: #FFD93D;
    margin-bottom: 15px;
}

.check-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 60px;
}

/* Checklist Section */
.checklist-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.checklist-header {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.checklist-category {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-title .icon {
    font-size: 1.8rem;
}

.category-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-left: 5px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.checklist-item:hover {
    background: #fff9e6;
    transform: translateX(5px);
    border-left-color: #FFD93D;
}

.checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    cursor: pointer;
    accent-color: #E53935;
    margin-top: 2px;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.item-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 1.4;
}

.item-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.highlight-tag {
    display: inline-block;
    background: #FFE8E8;
    color: #E53935;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Counter Result */
.counter-result {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFA94D 100%);
    border-radius: 15px;
    text-align: center;
}

.result-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.result-text #checkedCount {
    font-size: 2.5rem;
    font-weight: 900;
}

.result-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

/* Result Guide */
.result-guide {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-item {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
}

.warning-low {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
}

.warning-medium {
    background: #FFF3E0;
    border: 2px solid #FF9800;
}

.warning-high {
    background: #FFEBEE;
    border: 2px solid #F44336;
}

.guide-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guide-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Not Alone Section */
.not-alone-section {
    padding: 100px 20px;
    background: #F5F1E8;
}

.not-alone-section .subtitle {
    margin-bottom: 50px;
}

.highlight-yellow-box {
    background: #FFD93D;
    color: var(--text-dark);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
}

.warning-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 3px solid #FF4444;
}

.warning-text-strong {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.8;
    margin: 0;
}

.highlight-red-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #FF4444;
    display: inline-block;
    margin-top: 10px;
}

/* Interview Section */
.interview-section {
    padding: 80px 20px;
    background: #F5F1E8;
}

.interview-card {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 40px;
    background: #FBF9F4;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.interview-character {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.character-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.avatar-green {
    background: linear-gradient(135deg, #A8E6CF 0%, #56C596 100%);
}

.avatar-yellow {
    background: linear-gradient(135deg, #FFE66D 0%, #FFB347 100%);
}

.avatar-purple {
    background: linear-gradient(135deg, #DDA0DD 0%, #BA55D3 100%);
}

.avatar-blue {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.avatar-pink {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.interview-content {
    flex: 1;
}

.interview-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.interview-text strong {
    background: #FFD93D;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.highlight-mark {
    background: #FFD93D;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
    font-style: normal;
}

.interview-author {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.company-info {
    font-weight: 600;
    color: var(--text-dark);
}

/* Risk Section */
.risk-section {
    padding: 100px 20px;
}

.risk-steps {
    max-width: 600px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.risk-step {
    padding: 25px 50px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.risk-step:hover {
    transform: scale(1.05);
}

.step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-a {
    background: #90A4AE;
    color: var(--white);
}

.step-b {
    background: #78909C;
    color: var(--white);
}

.step-c {
    background: #607D8B;
    color: var(--white);
}

.step-d {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.risk-arrow {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.highlight-green {
    color: var(--green-success);
    font-weight: 900;
}

.solution-content {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
}

.emphasis-text {
    color: var(--green-success);
    font-size: 1.6rem;
}

/* Before After Section */
.before-after-section {
    padding: 100px 20px;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
}

.comparison-column {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.column-header {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.before-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
    color: var(--white);
}

.after-header {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: var(--white);
}

.column-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

.comparison-item {
    margin-bottom: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.before-column .comparison-item {
    border-left: 4px solid #FF6B6B;
}

.after-column .comparison-item {
    border-left: 4px solid #4ECDC4;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
}

.badge-complete {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge-growth {
    background: #E3F2FD;
    color: #1565C0;
}

.badge-off {
    background: #FFF3E0;
    color: #E65100;
}

.badge-ai {
    background: #F3E5F5;
    color: #6A1B9A;
}

.badge-auto {
    background: #E0F2F1;
    color: #00695C;
}

.badge-organize {
    background: #FFF9C4;
    color: #F57F17;
}

.item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.5;
    flex-grow: 0;
}

.item-title .badge {
    position: relative;
    top: -1px;
}

.item-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.metric-text {
    display: inline-block;
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B6B;
}

.metric-bar {
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: all 0.5s ease;
    position: relative;
    margin-top: 12px;
}

.before-bar {
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E8E 100%);
}

.after-bar {
    background: linear-gradient(90deg, #4ECDC4 0%, #6FE7DD 100%);
}

.metric-value {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #5BA3E8 0%, #2b79e1 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--white);
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form-group {
    margin-bottom: 20px;
}

.cta-email-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-main);
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cta-email-input::placeholder {
    color: #999;
}

.cta-email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #EF5350 0%, #E53935 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.4);
}

.cta-submit-btn:hover {
    background: linear-gradient(135deg, #E53935 0%, #D32F2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 83, 80, 0.5);
}

.cta-submit-btn:active {
    transform: translateY(0);
}

.cta-subtext {
    margin-top: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--darker-bg);
    color: var(--white);
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-column {
        padding: 25px 20px;
    }
    
    .column-header h3 {
        font-size: 1.6rem;
    }
    
    .comparison-item {
        padding: 20px;
        min-height: 100px;
    }
    
    .item-title {
        font-size: 1.05rem;
    }
    
    .item-desc {
        font-size: 0.95rem;
    }
    
    .badge {
        padding: 4px 10px;
        font-size: 0.75rem;
        margin-right: 6px;
    }
    
    .metric-bar {
        height: 25px;
        margin-top: 10px;
    }
    
    .metric-value {
        font-size: 0.85rem;
    }
    
    .result-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-card {
        padding: 40px 25px 35px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .alert-box {
        padding: 25px 20px;
    }
    
    .alert-title {
        font-size: 1.5rem;
    }
    
    .waste-item {
        padding: 25px 20px;
    }
    
    .waste-time {
        font-size: 1.5rem;
    }
    
    .waste-desc {
        font-size: 1.05rem;
    }
    
    .conclusion-main {
        font-size: 1.3rem;
    }
    
    .conclusion-result {
        font-size: 1.1rem;
    }
    
    .diagnosis-title {
        font-size: 1.8rem;
    }
    
    .diagnosis-subtitle {
        font-size: 1.05rem;
    }
    
    .interview-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .character-avatar {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .risk-step {
        min-width: 280px;
        font-size: 1.1rem;
        padding: 20px 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-email-input {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .cta-submit-btn {
        padding: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .hero-card {
        padding: 35px 20px 30px;
        border-radius: 25px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle,
    .hero-highlight {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-select {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .share-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .problem-text,
    .diagnosis-content {
        font-size: 1.05rem;
    }
    
    .alert-box {
        padding: 20px 18px;
    }
    
    .alert-title {
        font-size: 1.3rem;
    }
    
    .waste-items {
        gap: 15px;
    }
    
    .waste-item {
        padding: 20px 18px;
    }
    
    .waste-item.urgent {
        padding: 25px 20px;
    }
    
    .waste-time {
        font-size: 1.3rem;
    }
    
    .waste-desc {
        font-size: 0.95rem;
    }
    
    .conclusion-main {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }
    
    .conclusion-result {
        font-size: 1rem;
    }
    
    .diagnosis-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .diagnosis-icon {
        font-size: 2rem;
    }
    
    .diagnosis-subtitle {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-subtitle {
        font-size: 0.9rem;
    }
    
    .checklist-item {
        padding: 18px;
    }
    
    .item-label {
        font-size: 1rem;
    }
    
    .item-desc {
        font-size: 0.9rem;
    }
    
    .highlight-tag {
        font-size: 0.8rem;
    }
    
    .risk-step {
        min-width: 100%;
        font-size: 1rem;
    }
    
    .warning-box {
        padding: 30px 20px;
    }
    
    .warning-text-strong {
        font-size: 1.2rem;
    }
    
    .highlight-red-text {
        font-size: 1.4rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-container {
        max-width: 520px;
    }
}
