/* Page specific variables - matching main style.css */
:root {
    --color-primary-dark: #15324b;
    --color-primary-darker: #102a43;
    --color-primary-cta: #20405c;
    --color-accent-start: #25A7A3;
    --color-accent-end: #259EBC;
    --color-background-light: #f8fafc;
    --color-white: #ffffff;
    --color-text-dark: #1e293b;
    --color-text-light: #e2e8f0;
    --color-text-medium: #64748b;
    --color-text-soft: #94a3b8;
    --color-icon-bg: #eff6ff;
    --color-icon-fg: #3b82f6;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Page specific hero section */
.page-header-section {
    background: linear-gradient(135deg, hsl(210 65% 20%) 0%, hsl(205 70% 35%) 100%);
    padding-top: 5rem;
    padding-bottom: 10rem;
}

.page-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding-top: 5rem;
}

.page-hero-content {
    flex: 1;
    max-width: 55%;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 9999px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.page-hero-tag .tag-icon-wrapper {

    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-tag .tag-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #00d9ff;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 1.25rem 0;
    letter-spacing: -2px;
}

.page-hero-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 90%;
}

.page-hero-buttons {
    display: flex;
    gap: 12px;
}

.page-hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40%;
}

.page-hero-image-placeholder {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-hero-image-placeholder svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10rem;
    height: 10rem;
    color: rgba(255, 255, 255, 0.5);
    animation: floatAnchor 3s ease-in-out infinite;
}

@keyframes floatAnchor {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, calc(-50% - 12px));
    }
}

/* Page button styles - matching homepage gradient exactly */
.btn-page-primary {
    background: linear-gradient(90deg, #25A7A3 0%, #259EBC 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-page-primary:hover {
    box-shadow: 0 4px 15px rgba(37, 167, 163, 0.4);
}

.btn-page-primary svg {
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
}

.btn-page-primary:hover svg {
    transform: translateX(5px);
}

.btn-page-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-page-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* General Section Styling - matching homepage */
.section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Verdict Section */
.quick-verdict-section {
    text-align: center;
}

.quick-verdict-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.quick-verdict-section p {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Top Options Section */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.option-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.option-card:hover .option-card-icon svg {
    color: #23A89D;
    transition: color 0.3s ease;
}

.option-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: var(--color-icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem auto;
}

.option-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-icon-fg);
}

.option-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: #1e293b;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.option-card li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.option-card li::before {
    content: '•';
    color: #25A7A3;
    font-size: 1.5rem;
    line-height: 1;
}

/* Deeper Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.insight-card:hover .insight-card-icon svg {
    color: #23A89D;
    transition: color 0.3s ease;
}

.insight-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: var(--color-icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.insight-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-icon-fg);
}

.insight-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1e293b;
}

.insight-card-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* CTA Section */
.cta-section-wrapper {
    padding: 0 0 80px 0;
}

.cta-section {
    background-color: #15385C;
    border-radius: var(--border-radius-xl);
    padding: 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 9999px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.cta-tag svg {
    width: 16px;
    height: 16px;
    color: #00d9ff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 550px;
    margin: 0 auto 2rem auto;
}

/* FAQ Section - Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question p {
    margin: 0;
    font-weight: 500;
    color: #1e293b;
    font-size: 16px;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    color: #3b82f6;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 20px 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 40px 0 80px 0;
}

.final-cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.final-cta-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-icon-fg);
}

.final-cta-text {
    flex: 1;
}

.final-cta-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1e293b;
    letter-spacing: 0;
}

.final-cta-text p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-hero {
        flex-direction: column;
        text-align: center;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .page-hero-content p {
        max-width: 100%;
    }

    .page-hero-buttons {
        justify-content: center;
    }

    .page-hero-image-container {
        max-width: 50%;
        margin-top: 2rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding-bottom: 3rem;
    }

    .page-hero {
        padding-top: 3rem;
    }

    .page-hero-content h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .page-hero-content p {
        font-size: 18px;
        font-weight: 500;
    }

    .page-hero-image-container {
        max-width: 70%;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

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

    .quick-verdict-section h2 {
        font-size: 24px;
    }

    .cta-section {
        padding: 24px 16px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .final-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }

    .final-cta-text h3 {
        font-size: 16px;
    }

    .cta-section-wrapper {
        padding: 0 0 40px 0;
    }

    .final-cta-section {
        padding: 20px 0 40px 0;
    }

    .btn-page-primary,
    .btn-page-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .page-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .page-hero-buttons a {
        width: 100%;
        justify-content: center;
    }
}
