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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2847 50%, #0d1b2a 100%);
    color: #e0e7ff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 50%, #53b6cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Emphasis Colors */
.emphasis-red {
    color: #ff4757;
    font-weight: 700;
}

.emphasis-yellow {
    color: #ffd93d;
    font-weight: 700;
}

.emphasis-green {
    color: #6bcf7f;
    font-weight: 700;
}

.emphasis-cyan {
    color: #53b6cb;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(83, 182, 203, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109, 213, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(83, 182, 203, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b8c5db;
    margin-bottom: 50px;
    font-weight: 300;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border: 2px solid rgba(255, 71, 87, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.2);
}

.warning-icon {
    font-size: 2rem;
    color: #ff4757;
    margin-bottom: 15px;
    animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e7ff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 100%);
    color: #0a1628;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(83, 182, 203, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83, 182, 203, 0.5);
}

.cta-button-secondary {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb142 100%);
    color: #0a1628;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

.cta-button-secondary:hover {
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.5);
    animation: none;
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 217, 61, 0.5);
    }
}

/* Survey Participation Section */
.survey-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.05) 0%, rgba(255, 177, 66, 0.05) 100%);
}

.survey-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 177, 66, 0.1) 100%);
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.2);
}

.survey-icon {
    font-size: 4rem;
    color: #ffd93d;
    min-width: 80px;
    text-align: center;
}

.survey-content {
    flex: 1;
}

.survey-title {
    font-size: 1.8rem;
    color: #ffd93d;
    margin-bottom: 15px;
    font-weight: 700;
}

.survey-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e7ff;
}

.survey-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb142 100%);
    color: #0a1628;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 217, 61, 0.3);
}

.survey-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.5);
}

/* Strength Analysis Section */
.strength-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.05) 0%, rgba(109, 213, 237, 0.05) 100%);
}

.strength-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
    border: 2px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(83, 182, 203, 0.2);
}

.strength-icon {
    font-size: 4rem;
    color: #53b6cb;
    min-width: 80px;
    text-align: center;
    animation: starPulse 2s ease-in-out infinite;
}

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

.strength-content {
    flex: 1;
}

.strength-title {
    font-size: 1.8rem;
    color: #53b6cb;
    margin-bottom: 15px;
    font-weight: 700;
}

.strength-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e7ff;
}

.strength-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 100%);
    color: #0a1628;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(83, 182, 203, 0.3);
}

.strength-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(83, 182, 203, 0.5);
}

/* Statistics Section */
.stats-section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #b8c5db;
    margin-bottom: 60px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.1) 0%, rgba(26, 40, 71, 0.5) 100%);
    border: 1px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(83, 182, 203, 0.3);
    border-color: rgba(83, 182, 203, 0.6);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #53b6cb;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #6dd5ed;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    color: #b8c5db;
    margin-bottom: 10px;
}

.metric-detail {
    font-size: 0.9rem;
    color: #7d8aa3;
}

/* Charts Row */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.chart-container {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.chart-title {
    font-size: 1.5rem;
    color: #53b6cb;
    margin-bottom: 25px;
    text-align: center;
}

/* Stats Table */
.stats-table-container {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table thead tr {
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.2) 0%, rgba(109, 213, 237, 0.2) 100%);
}

.stats-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #53b6cb;
    border-bottom: 2px solid rgba(83, 182, 203, 0.3);
}

.stats-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(83, 182, 203, 0.1);
}

.stats-table tbody tr:hover {
    background: rgba(83, 182, 203, 0.05);
}

.stats-table tr.high-risk {
    background: rgba(255, 71, 87, 0.05);
}

.stats-table tr.protective {
    background: rgba(107, 207, 127, 0.05);
}

.stats-table tr.separator td {
    padding: 20px;
    border: none;
}

/* Analysis Section */
.analysis-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.05) 0%, rgba(26, 40, 71, 0.3) 100%);
}

.email-input-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #53b6cb;
}

.email-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 1.1rem;
    border: 2px solid rgba(83, 182, 203, 0.3);
    border-radius: 50px;
    background: rgba(26, 40, 71, 0.6);
    color: #e0e7ff;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #53b6cb;
    box-shadow: 0 0 20px rgba(83, 182, 203, 0.3);
}

.email-input::placeholder {
    color: #7d8aa3;
}

.analyze-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 100%);
    color: #0a1628;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(83, 182, 203, 0.3);
}

.analyze-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83, 182, 203, 0.5);
}

.error-message {
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    color: #ff4757;
    text-align: center;
}

/* Results Section */
.results-section {
    padding: 100px 20px;
}

.result-card {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.result-header {
    border-bottom: 2px solid rgba(83, 182, 203, 0.3);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.result-title {
    font-size: 2rem;
    color: #53b6cb;
    margin-bottom: 10px;
}

.result-subtitle {
    font-size: 1.1rem;
    color: #b8c5db;
}

.risk-factors {
    margin: 30px 0;
}

.risk-item {
    background: rgba(255, 71, 87, 0.05);
    border-left: 4px solid #ff4757;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.protective-item {
    background: rgba(107, 207, 127, 0.05);
    border-left: 4px solid #6bcf7f;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.4) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.info-box, .daeun-info-box {
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
    border: 2px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    backdrop-filter: blur(10px);
}

.info-title {
    font-size: 1.8rem;
    color: #53b6cb;
    margin-bottom: 20px;
    text-align: center;
}

.info-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Packages */
.packages-container {
    margin: 60px 0;
}

.packages-title {
    font-size: 2rem;
    color: #53b6cb;
    text-align: center;
    margin-bottom: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 2px solid rgba(83, 182, 203, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(83, 182, 203, 0.3);
    border-color: rgba(83, 182, 203, 0.6);
}

.package-card.featured {
    border-color: rgba(255, 217, 61, 0.6);
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.2);
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 100%);
    color: #0a1628;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-badge.deluxe {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb142 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.package-name {
    font-size: 1.8rem;
    color: #6dd5ed;
    margin-bottom: 30px;
}

.package-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #6bcf7f;
}

.package-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #53b6cb 0%, #6dd5ed 100%);
    color: #0a1628;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.package-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(83, 182, 203, 0.4);
}

/* Promo Container */
.promo-container {
    margin-top: 60px;
}

.promo-box {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 177, 66, 0.1) 100%);
    border: 2px solid rgba(255, 217, 61, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.promo-header i {
    font-size: 2.5rem;
    color: #ffd93d;
}

.promo-header h3 {
    font-size: 2rem;
    color: #ffd93d;
}

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

.promo-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.discount-box {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(26, 40, 71, 0.6) 100%);
    border: 2px solid rgba(255, 217, 61, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 400px;
}

.discount-label {
    font-size: 1rem;
    color: #b8c5db;
    margin-bottom: 10px;
}

.discount-code {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd93d;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.discount-value {
    font-size: 1.5rem;
    color: #ff4757;
    font-weight: 700;
}

.countdown-container {
    margin: 30px 0;
}

.countdown-label {
    font-size: 1.2rem;
    color: #b8c5db;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(26, 40, 71, 0.6) 100%);
    border: 2px solid rgba(255, 71, 87, 0.5);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4757;
    display: block;
}

.countdown-label-text {
    font-size: 0.9rem;
    color: #b8c5db;
    display: block;
    margin-top: 5px;
}

.limited-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.limited-slots i {
    color: #ffd93d;
}

/* Footer */
.footer {
    background: rgba(10, 22, 40, 0.9);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(83, 182, 203, 0.3);
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #7d8aa3;
    margin-top: 15px;
}

/* Result Styles */
.result-section {
    margin-bottom: 40px;
}

.profile-info {
    background: rgba(83, 182, 203, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-label {
    font-weight: 700;
    color: #53b6cb;
    min-width: 120px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.info-description {
    color: #b8c5db;
    font-size: 0.95rem;
}

.risk-level-box {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border: 2px solid rgba(255, 71, 87, 0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.risk-level-box.high-risk-level {
    border-color: rgba(255, 71, 87, 0.6);
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(255, 71, 87, 0.05) 100%);
}

.risk-level-box.medium-high-risk-level {
    border-color: rgba(255, 217, 61, 0.6);
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15) 0%, rgba(255, 217, 61, 0.05) 100%);
}

.risk-level-box.medium-risk-level {
    border-color: rgba(83, 182, 203, 0.6);
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.15) 0%, rgba(83, 182, 203, 0.05) 100%);
}

.risk-level-box.low-risk-level {
    border-color: rgba(107, 207, 127, 0.6);
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.15) 0%, rgba(107, 207, 127, 0.05) 100%);
}

.risk-level-label {
    font-size: 1.2rem;
    color: #b8c5db;
    margin-bottom: 10px;
}

.risk-level-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4757;
    margin-bottom: 15px;
}

.risk-level-box.low-risk-level .risk-level-value {
    color: #6bcf7f;
}

.risk-level-box.medium-risk-level .risk-level-value {
    color: #53b6cb;
}

.risk-level-box.medium-high-risk-level .risk-level-value {
    color: #ffd93d;
}

.risk-level-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e7ff;
}

.cause-analysis {
    background: rgba(10, 22, 40, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.cause-title {
    font-size: 1.5rem;
    color: #ffd93d;
    margin-bottom: 20px;
}

.strategy-card {
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.1) 0%, rgba(26, 40, 71, 0.3) 100%);
    border: 1px solid rgba(83, 182, 203, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.strategy-card.urgent {
    border-color: rgba(255, 71, 87, 0.5);
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(26, 40, 71, 0.3) 100%);
}

.strategy-title {
    font-size: 1.3rem;
    color: #53b6cb;
    margin-bottom: 15px;
}

.strategy-content {
    line-height: 1.8;
}

.strategy-content p {
    margin-bottom: 10px;
}

.success-formula {
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.1) 0%, rgba(83, 182, 203, 0.1) 100%);
    border: 2px solid rgba(107, 207, 127, 0.4);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.consultation-cta {
    background: linear-gradient(135deg, rgba(83, 182, 203, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
    border: 2px solid rgba(83, 182, 203, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .charts-row {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-label {
        min-width: auto;
    }
    
    /* Survey and Strength sections responsive */
    .survey-banner,
    .strength-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .survey-icon,
    .strength-icon {
        font-size: 3rem;
    }
    
    .survey-title,
    .strength-title {
        font-size: 1.4rem;
    }
    
    .survey-text,
    .strength-text {
        font-size: 1rem;
    }
    
    .survey-button,
    .strength-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
