/* HeadRoom Landing Page Styles */

.headroom-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 160px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.headroom-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.headroom-hero__badge {
    display: inline-block;
    background: rgba(225, 75, 95, 0.2);
    color: #e14b5f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.headroom-hero__content {
    max-width: 600px;
}

.headroom-hero h1 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.headroom-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.headroom-hero__stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.headroom-stat {
    display: flex;
    flex-direction: column;
}

.headroom-stat__number {
    font-family: "Poppins-Medium", "Poppins", monospace;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.headroom-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.headroom-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Phone mockup in hero */
.headroom-hero__phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.headroom-phone-img {
    max-width: 320px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #e14b5f;
    color: #fff;
    border: 2px solid #e14b5f;
}

.btn-primary:hover {
    background: #c9384d;
    border-color: #c9384d;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #fff;
}

/* Video Section */
.headroom-video {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.headroom-video h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.headroom-video__intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 40px;
}

.headroom-video__wrapper {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid #333;
    background: #000;
}

.headroom-video__player {
    width: 100%;
    max-height: 720px;
    display: block;
    border-radius: 28px;
    object-fit: contain;
}

/* Screenshots Section */
.headroom-screenshots {
    padding: 80px 0;
    background: #0d0d1a;
    color: #fff;
}

.headroom-section-label {
    display: block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.headroom-screenshots h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #fff;
}

.headroom-screenshots__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.headroom-screenshot {
    text-align: center;
}

.headroom-screenshot img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.headroom-screenshot h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.headroom-screenshot p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 240px;
    margin: 0 auto;
}

/* Why HeadRoom / Features */
.headroom-why {
    padding: 80px 0;
    background: #fff;
}

.headroom-why h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-align: center;
}

.headroom-why__intro {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.headroom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.headroom-feature {
    padding: 32px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.headroom-feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.headroom-feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Comparison Table */
.headroom-compare {
    padding: 80px 0;
    background: #f8f9fa;
}

.headroom-compare h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
    text-align: center;
}

.headroom-compare__table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.headroom-compare__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.headroom-compare__table th,
.headroom-compare__table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.headroom-compare__table th {
    background: #1a1a2e;
    color: #fff;
    font-weight: 600;
}

.headroom-compare__table th:first-child,
.headroom-compare__table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.headroom-compare__table td.yes {
    color: #27ae60;
    font-weight: 600;
}

.headroom-compare__table td.no {
    color: #ccc;
}

.headroom-compare__table tr:last-child td {
    border-bottom: none;
}

/* FAQ */
.headroom-faq {
    padding: 80px 0;
    background: #fff;
}

.headroom-faq h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 32px;
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    margin: 0;
    padding-right: 30px;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #e14b5f;
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-top: 12px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* CTA Section */
.headroom-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    text-align: center;
}

.headroom-cta h2 {
    font-family: "Poppins-Medium", "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.headroom-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.headroom-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .headroom-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .headroom-hero__content {
        max-width: 100%;
    }

    .headroom-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .headroom-hero__stats {
        justify-content: center;
    }

    .headroom-hero__cta {
        justify-content: center;
    }

    .headroom-phone-img {
        max-width: 260px;
    }

    .headroom-screenshots__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .headroom-hero {
        padding: 120px 0 60px;
    }

    .headroom-hero h1 {
        font-size: 32px;
    }

    .headroom-hero__stats {
        gap: 24px;
    }

    .headroom-stat__number {
        font-size: 24px;
    }

    .headroom-features {
        grid-template-columns: 1fr;
    }

    .headroom-screenshots__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .headroom-compare__table {
        font-size: 13px;
    }

    .headroom-compare__table th,
    .headroom-compare__table td {
        padding: 10px 12px;
    }

    .headroom-hero__phone {
        display: none;
    }
}
