/* ===================================
   ZOOM TEETH WHITENING PAGE STYLES
   =================================== */

/* Hero Section */
.zoom-hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(255, 107, 157, 0.95)),
                url('../images/dental-hero.jpg') center/cover no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 0 100px;
}

.zoom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: white;
    opacity: 0.95;
    font-weight: 500;
}

/* Introduction Section */
.zoom-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.intro-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
    position: relative;
}

.intro-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.intro-icon i {
    font-size: 24px;
    color: white;
}

.intro-quote {
    font-size: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 30px;
    border-left: 4px solid #E91E63;
}

.intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* What is Zoom */
.what-is-zoom {
    padding: 100px 0;
    background: white;
}

.zoom-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.content-text .lead-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.analogy-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.analogy-box i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 5px;
}

.analogy-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.content-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.visual-icon i {
    font-size: 30px;
    color: white;
}

.visual-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.visual-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.step-icon i {
    font-size: 35px;
    color: #E91E63;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.process-result {
    margin-top: 50px;
    text-align: center;
}

.result-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.result-box i {
    font-size: 28px;
}

.result-box p {
    font-size: 17px;
    margin: 0;
}

/* Cost Section */
.zoom-cost {
    padding: 100px 0;
    background: white;
}

.cost-highlight {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.cost-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFE5EC;
    transition: all 0.3s ease;
    position: relative;
}

.cost-box.featured {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-color: #E91E63;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.3);
}

.cost-box:hover {
    transform: scale(1.08);
}

.cost-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cost-box.featured .cost-label {
    color: white;
    opacity: 0.95;
}

.cost-amount {
    font-size: 38px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.cost-box.featured .cost-amount {
    color: white;
}

.cost-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cost-factors {
    max-width: 1000px;
    margin: 60px auto;
}

.cost-factors h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.factor-item {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.factor-item i {
    font-size: 35px;
    color: #E91E63;
    margin-bottom: 15px;
}

.factor-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.factor-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cost-warning {
    max-width: 800px;
    margin: 0 auto;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cost-warning i {
    font-size: 28px;
    color: #856404;
    flex-shrink: 0;
}

.cost-warning p {
    font-size: 16px;
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

/* Safety Section */
.zoom-safety {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.safety-answer {
    text-align: center;
    margin: 40px 0;
}

.answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #28a745;
}

.answer-badge i {
    font-size: 28px;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.safety-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.safety-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #FFE5EC;
}

.safety-list li i {
    font-size: 20px;
    color: #dc3545;
}

.sensitivity-box {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.sensitivity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sensitivity-icon i {
    font-size: 32px;
    color: white;
}

.sensitivity-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.sensitivity-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.sensitivity-box .note {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Duration Section */
.results-duration {
    padding: 100px 0;
    background: white;
}

.duration-timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    flex: 0 1 280px;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-icon.good {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.timeline-icon.moderate {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.timeline-icon.excellent {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
}

.timeline-icon i {
    font-size: 40px;
    color: white;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-item .duration {
    font-size: 28px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
}

.maintenance-tips {
    max-width: 1000px;
    margin: 60px auto 0;
}

.maintenance-tips h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.tip-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.tip-card i {
    font-size: 35px;
    color: #E91E63;
    margin-bottom: 15px;
}

.tip-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.tips-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Capabilities Section */
.zoom-capabilities {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.capability-box {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    border: 2px solid #FFE5EC;
}

.capability-box.works {
    border-color: #28a745;
}

.capability-box.doesnt-work {
    border-color: #dc3545;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFE5EC;
}

.capability-box.works .box-header {
    border-bottom-color: #28a745;
}

.capability-box.doesnt-work .box-header {
    border-bottom-color: #dc3545;
}

.box-header i {
    font-size: 32px;
}

.capability-box.works .box-header i {
    color: #28a745;
}

.capability-box.doesnt-work .box-header i {
    color: #dc3545;
}

.box-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #FFE5EC;
}

.capability-list li:last-child {
    border-bottom: none;
}

.capability-list li i {
    font-size: 22px;
    flex-shrink: 0;
}

.capability-box.works .capability-list li i {
    color: #28a745;
}

.capability-box.doesnt-work .capability-list li i {
    color: #dc3545;
}

.analogy-box-center {
    max-width: 800px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 25px;
    align-items: center;
    text-align: left;
}

.analogy-box-center i {
    font-size: 40px;
    color: #E91E63;
    flex-shrink: 0;
}

.analogy-box-center p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Comparison Section */
.zoom-comparison {
    padding: 100px 0;
    background: white;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
    overflow-x: auto;
}

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

.comparison-table thead {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
}

.comparison-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
}

.comparison-table thead th i {
    margin-right: 8px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #FFF5F8;
}

.comparison-table tbody td {
    padding: 20px 15px;
    font-size: 15px;
    color: #333;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
}

.pro, .con, .neutral {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.pro {
    background: #d4edda;
    color: #155724;
}

.pro::before {
    content: '✓';
    font-weight: 700;
}

.con {
    background: #f8d7da;
    color: #721c24;
}

.con::before {
    content: '✗';
    font-weight: 700;
}

.neutral {
    background: #fff3cd;
    color: #856404;
}

.neutral::before {
    content: '—';
    font-weight: 700;
}

.recommendation-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
}

.recommendation-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.recommendation-box p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Who Should Avoid */
.zoom-avoid {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.avoid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.avoid-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFE5EC;
    transition: all 0.3s ease;
}

.avoid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    border-color: #E91E63;
}

.avoid-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.avoid-icon i {
    font-size: 35px;
    color: white;
}

.avoid-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.avoid-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.avoid-note {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.avoid-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Case Study Section */
.case-study {
    padding: 100px 0;
    background: white;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.case-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #FFE5EC;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.case-card.success {
    border-color: #28a745;
}

.case-card.alternative {
    border-color: #ffc107;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFE5EC;
}

.case-card.success .case-header {
    border-bottom-color: #28a745;
}

.case-card.alternative .case-header {
    border-bottom-color: #ffc107;
}

.case-header i {
    font-size: 32px;
}

.case-card.success .case-header i {
    color: #28a745;
}

.case-card.alternative .case-header i {
    color: #ffc107;
}

.case-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.case-profile,
.case-reason {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.result-item {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
}

.result-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
}

.case-outcome {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-top: 20px;
}

.case-lesson {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.case-lesson i {
    font-size: 24px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 3px;
}

.case-lesson p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Worth It Section */
.worth-it {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.worth-content {
    max-width: 1000px;
    margin: 0 auto;
}

.worth-answer {
    text-align: center;
    margin-bottom: 50px;
}

.answer-main {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.worth-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.worth-column {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid #FFE5EC;
}

.worth-column.paying-for {
    border-color: #28a745;
}

.worth-column.not-paying-for {
    border-color: #ffc107;
}

.worth-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.worth-column.paying-for h3 i {
    color: #28a745;
}

.worth-column.not-paying-for h3 i {
    color: #ffc107;
}

.worth-column ul {
    list-style: none;
    padding: 0;
}

.worth-column ul li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #FFE5EC;
    padding-left: 25px;
    position: relative;
}

.worth-column ul li:last-child {
    border-bottom: none;
}

.worth-column ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E91E63;
    font-size: 24px;
    line-height: 1;
}

.worth-philosophy {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}

.worth-philosophy i {
    font-size: 40px;
    opacity: 0.2;
    position: absolute;
    top: 30px;
    left: 40px;
}

.worth-philosophy p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Before Booking Section */
.before-booking {
    padding: 100px 0;
    background: white;
}

.recommendations-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
}

.recommendations-intro {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.recommendations-list {
    margin-bottom: 30px;
}

.recommendation-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #FFE5EC;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.rec-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.rec-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.rec-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.recommendations-footer {
    text-align: center;
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 968px) {
    .zoom-content-grid,
    .safety-content,
    .capabilities-grid,
    .case-grid,
    .worth-breakdown {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cost-highlight {
        flex-direction: column;
        align-items: center;
    }

    .cost-box.featured {
        transform: scale(1);
    }

    .hero-stats {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .zoom-hero {
        padding: 120px 0 80px;
        min-height: 450px;
    }

    .zoom-intro,
    .what-is-zoom,
    .how-it-works,
    .zoom-cost,
    .zoom-safety,
    .results-duration,
    .zoom-capabilities,
    .zoom-comparison,
    .zoom-avoid,
    .case-study,
    .worth-it,
    .before-booking {
        padding: 60px 0;
    }

    .stat-item {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .intro-box {
        padding: 40px 30px;
    }

    .intro-quote {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .duration-timeline {
        flex-direction: column;
        align-items: center;
    }

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

    .recommendations-box {
        padding: 35px 25px;
    }

    .recommendation-item {
        flex-direction: column;
        gap: 15px;
    }

    .worth-philosophy {
        padding: 30px 25px;
    }

    .worth-philosophy i {
        font-size: 30px;
        top: 20px;
        left: 20px;
    }

    .worth-philosophy p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }

    .intro-quote {
        font-size: 16px;
        padding-left: 20px;
    }

    .analogy-box,
    .analogy-box-center {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
    }

    .cost-amount {
        font-size: 32px;
    }

    .answer-main {
        font-size: 22px;
    }

    .comparison-table-wrapper {
        padding: 20px 15px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .pro, .con, .neutral {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
    }
}