/* ========================================
   LeadMagnet HR Landing Page - Figma Design
   ======================================== */

/* Import RF Dewi Expanded font */
@import url('https://fonts.cdnfonts.com/css/rf-dewi');

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'RF Dewi Expanded', 'RF Dewi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0f;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo__text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo__img {
    height: 28px;
    width: auto;
}

.footer__logo-img {
    height: 24px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: #888888;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: #ffffff;
}

.header__cta {
    background: #D4FF00;
    color: #0a0a0f;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__cta:hover {
    background: #e0ff33;
    transform: translateY(-2px);
}

.header__cta--mobile {
    display: none;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    max-width: 650px;
}

.hero__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero__title .highlight {
    color: #D4FF00;
}

.hero__sup {
    font-size: 0.5em;
    vertical-align: super;
    color: #D4FF00;
    font-weight: 600;
}

.hero__footnotes {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__footnote {
    font-size: 13px;
    color: #888888;
}

.hero__footnote sup {
    color: #D4FF00;
    font-weight: 600;
}

.hero__features {
    margin-bottom: 32px;
}

.hero__feature {
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.hero__feature::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4FF00;
}

.hero__partners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.partner-separator {
    color: #555555;
    font-weight: 300;
}

.hero__cta-btn {
    display: inline-block;
    background: #D4FF00;
    color: #0a0a0f;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__cta-btn:hover {
    background: #e0ff33;
    transform: translateY(-2px);
}

.hero__image {
    flex: 0 0 400px;
}

.hero__img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* ========================================
   Section Titles
   ======================================== */
.section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #ffffff;
}

.section__title--dark {
    color: #1a1a1a;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about__content {
    flex: 1;
}

.about__text {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
}

.about__image {
    flex: 0 0 350px;
}

.about__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ========================================
   Icon Lime (Yellow icons from Figma)
   ======================================== */
.icon-lime-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.icon-purple .icon-img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* ========================================
   Icon Purple (Purple circle icons from Figma)
   ======================================== */
.icon-purple-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ========================================
   Advantages Section
   ======================================== */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0a1a 100%);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.advantage-card__icon {
    margin-bottom: 16px;
}

.advantage-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.advantage-card__text {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* ========================================
   Income Section
   ======================================== */
.income {
    padding: 100px 0;
    background: #ffffff;
}

.income__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.income-card {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.income-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.income-card__number {
    font-size: 56px;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
    margin-bottom: 16px;
}

.income-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.income-card__desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    min-height: 40px;
}

.income-card__price {
    display: inline-block;
    background: #D4FF00;
    color: #0a0a0f;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   Audience Section
   ======================================== */
.audience {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0a1a 100%);
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.audience-card--highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.audience-card__icon {
    margin-bottom: 16px;
}

.audience-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.audience-card__text {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* ========================================
   Offers Section
   ======================================== */
.offers {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.offer-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-card--yellow {
    background: #D4FF00;
    position: relative;
}

.offer-card--white {
    background: #ffffff;
    position: relative;
}

.offer-card__badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #ff4d8d;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 0 0 16px 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.offer-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-card__content {
    padding: 24px;
}

.offer-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0a0a0f;
    text-align: center;
    line-height: 1.3;
}

.offer-card__stats {
    margin-bottom: 20px;
    flex: 1;
}

.stat-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0f;
}

.stat-label {
    font-size: 13px;
    color: #666666;
}

.offer-card__btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease;
    margin-top: auto;
}

.offer-card__btn--white {
    background: #ffffff;
    color: #0a0a0f;
}

.offer-card__btn--white:hover {
    background: #f0f0f0;
}

.offer-card__btn--yellow {
    background: #D4FF00;
    color: #0a0a0f;
}

.offer-card__btn--yellow:hover {
    background: #e0ff33;
}

/* ========================================
   Program Advantages Section
   ======================================== */
.program-advantages {
    padding: 100px 0;
    background: #ffffff;
}

.program-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: #f8f8fa;
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.program-card__icon {
    margin-bottom: 16px;
}

.program-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.program-card__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0a1a 100%);
    text-align: center;
}

.final-cta__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.final-cta__title .highlight {
    color: #D4FF00;
}

.final-cta__subtitle {
    font-size: 18px;
    color: #888888;
    margin-bottom: 40px;
}

.final-cta__steps-wrapper {
    border: 2px solid #D4FF00;
    border-radius: 24px;
    padding: 32px 40px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__steps-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.final-cta__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: left;
}

.step-card__number {
    width: 44px;
    height: 44px;
    background: #D4FF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0f;
    margin-bottom: 16px;
}

.step-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.step-card__text {
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
}

.final-cta__text {
    font-size: 15px;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.final-cta__btn {
    display: inline-block;
    background: #D4FF00;
    color: #0a0a0f;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.final-cta__btn:hover {
    background: #e0ff33;
    transform: translateY(-2px);
}

.final-cta__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.final-cta__image {
    max-width: 350px;
    flex-shrink: 0;
}

.final-cta__img {
    width: 100%;
    height: auto;
}


/* ========================================
   Updated Footer Styles
   ======================================== */
.footer {
    padding: 48px 0 32px;
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Footer Top */
.footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Company Section */
.footer__company {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo-img {
    height: 28px;
    width: auto;
}

.footer__company-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__company-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.footer__company-reg {
    font-size: 13px;
    color: #888888;
}

/* Contacts Section */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer__contact-label {
    font-size: 13px;
    color: #888888;
}

.footer__contact-link {
    font-size: 14px;
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer__contact-link:hover {
    color: #D4FF00;
}

.footer__contact-item--support {
    align-items: center;
}

.footer__tg-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer__tg-link:hover {
    color: #D4FF00;
}

.footer__tg-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Policies Section */
.footer__policies {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer__policy-link {
    font-size: 13px;
    color: #888888;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__policy-link:hover {
    color: #ffffff;
}

/* Cookie Notice */
.footer__cookie-notice {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #D4FF00;
}

.footer__cookie-notice p {
    font-size: 12px;
    line-height: 1.6;
    color: #888888;
    margin: 0;
}

/* Footer Bottom */
.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__disclaimer {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.footer__copyright {
    font-size: 13px;
    color: #444444;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__policies {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__policies {
        flex-direction: column;
        gap: 10px;
    }

    .footer__cookie-notice {
        padding: 14px 16px;
    }
}

/* ========================================
   Policy Pages
   ======================================== */
.policy-page {
    padding: 140px 0 80px;
    background: #0a0a0f;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.policy-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
}

.policy-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #D4FF00;
}

.policy-intro a {
    color: #D4FF00;
    text-decoration: underline;
}

.policy-intro a:hover {
    color: #e0ff33;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #cccccc;
    margin: 24px 0 12px;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.policy-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #D4FF00;
    border-radius: 50%;
}

.policy-section a {
    color: #D4FF00;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #e0ff33;
}

.policy-company-info {
    margin-top: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.policy-company-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #888888;
}

.policy-company-info p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__image {
        flex: 0 0 auto;
        max-width: 400px;
    }
    

    
    .about__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .about__image {
        flex: 0 0 auto;
        max-width: 350px;
    }
    
    .advantages__grid,
    .audience__grid {
        grid-template-columns: 1fr;
    }
    
    .offers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .income__grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta__steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .final-cta__steps-wrapper {
        padding: 24px;
    }
    
    .step-card {
        text-align: center;
    }
    
    .step-card__number {
        margin: 0 auto 16px;
    }
    
    .final-cta__image {
        max-width: 300px;
    }
}

/* Tablet: 768px */
@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 80px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav__link {
        font-size: 20px;
        padding: 12px 24px;
    }
    
    .header__cta--desktop {
        display: none;
    }
    
    .header__cta--mobile {
        display: inline-block;
        margin-top: 16px;
    }
    
    .burger {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__partners {
        padding: 16px 20px;
    }
    
    .partner {
        font-size: 14px;
    }
    
    .section__title {
        font-size: 28px;
    }
    
    .about,
    .income,
    .audience,
    .offers,
    .program-advantages,
    .final-cta {
        padding: 60px 0;
    }
    
    .offers__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .program-advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid,
    .audience__grid {
        grid-template-columns: 1fr;
    }
    
    .income__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .final-cta__steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .final-cta__steps-wrapper {
        padding: 24px 20px;
    }
    
    .hero__image,
    .about__image {
        display: none;
    }
    
    .hero__inner,
    .about__inner {
        text-align: center;
    }
    
    .hero__features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 24px;
    }
    
    .final-cta__title {
        font-size: 28px;
    }
    
    .final-cta__bottom {
        flex-direction: column;
        gap: 24px;
    }
    
    .final-cta__image {
        max-width: 280px;
    }
    
    .footer__main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__links {
        justify-content: center;
        gap: 20px;
    }
    
    .hero__footnotes {
        flex-direction: column;
        gap: 8px;
    }
    
    .policy-title {
        font-size: 24px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header__cta {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero__title {
        font-size: 24px;
    }
    
    .hero__cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section__title {
        font-size: 24px;
    }
    
    .advantage-card,
    .audience-card,
    .program-card {
        padding: 24px;
    }
    
    .final-cta__btn {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .final-cta__bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-cta__image {
        max-width: 250px;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer__link {
        font-size: 13px;
    }
    
    .policy-page {
        padding: 120px 0 60px;
    }
    
    .policy-title {
        font-size: 22px;
    }
    
    .policy-intro {
        padding: 16px;
        font-size: 14px;
    }
    
    .policy-section h2 {
        font-size: 18px;
    }
    
    .policy-section h3 {
        font-size: 16px;
    }
    
    .policy-section p,
    .policy-section ul li {
        font-size: 14px;
    }
}

/* Large Desktop: 1400px+ */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero__title {
        font-size: 48px;
    }
}

/* Small Mobile: 375px */
@media (max-width: 375px) {
    .hero__title {
        font-size: 22px;
    }
    
    .section__title {
        font-size: 22px;
    }
    
    .final-cta__title {
        font-size: 24px;
    }
    
    .offer-card__title {
        font-size: 15px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .advantage-card__title,
    .audience-card__title,
    .program-card__title {
        font-size: 16px;
    }
    
    .final-cta__btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .step-card__title {
        font-size: 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .advantage-card:hover,
    .audience-card:hover,
    .program-card:hover,
    .offer-card:hover,
    .income-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .header__cta:hover,
    .hero__cta-btn:hover,
    .final-cta__btn:hover,
    .offer-card__btn:hover {
        transform: none;
    }
}
