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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Armenian', -apple-system, Roboto, Helvetica, sans-serif;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Mobile-first responsive improvements */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, #4B52EB 70%, #0F0D20 100%);
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(75, 82, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 82, 235, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(75, 82, 235, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    width: 100%;
}

.course-dates {
    color: #FFFFFF;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.4;
}

.hero-title {
    color: #FFFFFF;
    font-size: clamp(48px, 10vw, 72px);
    font-family: 'Inter';
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: clamp(2px, 3vw, 4px);
    word-break: break-word;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-description {
    text-align: center;
    font-size: clamp(16px, 4vw, 20px);
    font-family: 'Noto Sans Armenian';
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
}

.description-text {
    color: #FFFFFF;
    font-weight: 700;
}

.description-highlight {
    color: #F9C20A;
    font-weight: 700;
}

.hero-cta-button {
    width: min(200px, 80vw);
    height: 56px;
    padding: 16px 32px;
    background: #F9C20A;
    border-radius: 28px;
    border: none;
    color: #FFFFFF;
    font-size: clamp(16px, 4vw, 18px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(249, 194, 10, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    background: #e6af09;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 194, 10, 0.4);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 194, 10, 0.3);
}

.hero-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(18px, 4.5vw, 22px);
    font-family: 'Noto Sans Armenian';
    font-weight: 600;
    line-height: 1.4;
    /* text-align: center; */
    padding: 0 20px;
    margin-top: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0 0 60px;
}

.benefits-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    width: 100%;
    min-height: 160px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(249, 194, 10, 0.5);
}

.benefit-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(15px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 500;
    line-height: 1.5;
}

.content-highlight {
    color: #FFFFFF;
}

.benefit-button {
    width: 100%;
    padding: 5px 5px;
    background: #FFFFFF;
    border-radius: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 36px;
    font-size: clamp(14px, 3.5vw, 16px);
}

.benefit-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.benefit-button:active {
    transform: translateY(0);
}

.benefit-text {
    color: #000000;
    font-size: 16px;
    font-family: 'Noto Sans Armenian';
    font-weight: 600;
    line-height: 1.4;
}

/* About Section */
.about-section {
    width: 100%;
    background: #0F0D20;
    padding: 60px 0;
}

.section-title {
    color: #FFFFFF;
    font-size: clamp(24px, 6vw, 28px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    word-break: break-word;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-description {
    font-size: clamp(16px, 4.5vw, 18px);
    font-family: 'Noto Sans Armenian';
    font-weight: 500;
    line-height: 1.6;
}

.description-highlight {
    color: #F9C20A;
}

.description-normal {
    color: rgba(255, 255, 255, 0.70);
}

.about-additional {
    color: rgba(255, 255, 255, 0.70);
    font-size: clamp(16px, 4.5vw, 18px);
    font-family: 'Noto Sans Armenian';
    font-weight: 500;
    line-height: 1.6;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    min-height: 140px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(249, 194, 10, 0.5);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    color: #FFFFFF;
    font-size: clamp(14px, 3.5vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 500;
    line-height: 1.5;
}

/* Author Section */
.author-section {
    width: 100%;
    background: #FFFFFF;
    padding: 60px 0;
}

.author-section .section-title {
    color: #000000;
    margin-bottom: 40px;
}

.author-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #F8F8F8;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-name {
    color: #000000;
    font-size: clamp(20px, 5vw, 24px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
    line-height: 1.2;
}

.author-description {
    color: #000000;
    font-size: clamp(16px, 4.5vw, 18px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.6;
}

.author-highlight {
    color: #000000;
    font-size: clamp(16px, 4.5vw, 18px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.6;
}

.highlight-text {
    color: #F9C20A;
}

.author-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto;
}

.author-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* Tools Section */
.tools-section {
    width: 100%;
    background: #4B52EB;
    padding: 60px 0;
}

.tools-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tools-section .section-title {
    color: #F0F7FE;
    font-size: clamp(24px, 6vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: break-word;
}

.tools-description {
    color: #E5E7EB;
    text-align: center;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tools-description-margin {
    margin-bottom: 10px;
}

.tools-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tools-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Desktop tool tag style */
.tool-tag {
    height: 40px;
    padding: 5px 20px;
    border-radius: 24px;
    border: 1px solid;
    font-size: clamp(14px, 3.5vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    white-space: nowrap;
    margin-right: 40px;
}

.tool-tag.white {
    background: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

.tool-tag.black {
    background: #000000;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.tool-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



.register-button {
    width: min(179px, 80vw);
    height: 48px;
    padding: 12px 24px;
    background: #F9C20A;
    border-radius: 24px;
    border: none;
    color: #000000;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    min-width: 120px;
}

.register-button:hover {
    background: #e6af09;
    transform: translateY(-2px);
}

/* Audience Section */
.audience-section {
    width: 100%;
    background: #0F0D20;
    padding: 60px 0;
}

.audience-section .section-title {
    text-align: center;
}

.audience-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.audience-image {
    width: 100%;
    height: 200px;
    background: #FFFFFF;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.audience-image .image-placeholder,
.audience-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.audience-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-text {
    color: #FFFFFF;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.6;
}

.text-bold {
    font-weight: 700;
}

/* Reviews Section */
.reviews-section {
    width: 100%;
    background: #4B52EB;
    padding: 60px 0;
}

.reviews-section .section-title {
    color: #F0F7FE;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.reviews-grid {
    display: contents;
}

.review-card {
    box-sizing: border-box;
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards with 24px gaps */
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.24) 100%);
    border-radius: 16px;
    border: 1px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: #D9D9D9;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviewer-name {
    color: #FFFFFF;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.4;
}

.review-text {
    color: #FFFFFF;
    font-size: clamp(13px, 3.5vw, 14px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.4;
}

.reviews-nav {
    width: 48px;
    height: 48px;
    padding: 0;
    background: #8C8CF0;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #F9C20A;
    font-size: 20px;
    font-weight: bold;
}

.reviews-nav:hover {
    transform: translateY(-50%) scale(1.05);
}

.nav-prev { left: -5px; }
.nav-next { right: -5px; }

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 cards */
    }
    .nav-prev { left: -5px; }
    .nav-next { right: -5px; }
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 100%; /* 1 card */
    }
    .nav-prev { left: 8px; }
    .nav-next { right: 8px; }
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    background: #0F0D20;
    padding: 60px 0;
}

.pricing-section .section-title {
    color: #F0F7FE;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.24) 100%);
    border-radius: 24px;
    border: 2px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.pricing-label {
    color: #F9C20A;
    font-size: clamp(24px, 6vw, 28px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
}

.pricing-amounts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.old-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.price-number {
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: clamp(28px, 7vw, 32px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
}

.price-line {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
}

.current-price {
    color: #FFFFFF;
    font-size: clamp(28px, 7vw, 32px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
    line-height: 1.2;
}

.pricing-deadline {
    color: #F0F7FE;
    text-align: center;
    font-size: clamp(18px, 5vw, 20px);
    font-family: 'Noto Sans Armenian';
    font-weight: 700;
    line-height: 1.4;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-bullet {
    width: 15px;
    height: 15px;
    background: #D9D9D9;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-feature .feature-text {
    color: #FFFFFF;
    font-size: clamp(13px, 3.5vw, 14px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.6;
}

.pricing-button {
    width: min(180px, 80vw);
    height: 48px;
    padding: 12px 24px;
    background: #F9C20A;
    border-radius: 24px;
    border: none;
    color: #FFFFFF;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.pricing-button:hover {
    background: #e6af09;
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    width: 100%;
    background: #4B52EB;
    padding: 40px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-social, .footer-text {
    color: #FFFFFF;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Noto Sans Armenian';
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Design for Tablets */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 60px;
        letter-spacing: 3px;
    }
    
    .course-dates {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 400px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-description,
    .about-additional {
        font-size: 20px;
    }
    
    .course-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .author-content {
        flex-direction: row;
        align-items: center;
        padding: 40px;
    }
    
    .author-info {
        flex: 1;
        padding-right: 40px;
    }
    
    .author-image {
        width: 400px;
        height: 300px;
    }
    
    .author-name {
        font-size: 26px;
    }
    
    .audience-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .audience-image {
        width: 50%;
        height: 300px;
    }
    
    .audience-list {
        width: 50%;
    }
    
    .audience-text {
        font-size: 18px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Responsive Design for Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 80px;
        letter-spacing: 4px;
    }
    
    .course-dates {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 500px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 60px 0 60px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr 2fr;
        gap: 80px;
    }
    
    .about-sidebar {
        gap: 40px;
    }
    
    .course-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .author-content {
        padding: 60px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .reviews-grid {
        flex: 1;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {    
    .hero-title {
        font-size: 90px;
    }
    
    .hero-section {
        min-height: 798px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
.tool-tag:focus {
    outline: 2px solid #F9C20A;
    outline-offset: 2px;
}

/* Mobile-specific improvements */
@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        gap: 16px;
    }
    
    .benefits-grid {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 16px;
        min-height: 120px;
    }
    
    .about-section,
    .author-section,
    .tools-section,
    .audience-section,
    .reviews-section,
    .pricing-section {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .about-text {
        gap: 20px;
    }
    
    .course-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        min-height: 120px;
        padding: 16px;
    }
    
    .audience-content {
        padding: 0 16px;
        gap: 30px;
    }
    
    .author-content {
        padding: 20px;
        gap: 20px;
    }
    
    .tools-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        gap: 16px;
    }
    
    .tools-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .tool-tag {
        font-size: clamp(12px, 3vw, 14px);
        padding: 8px 16px;
        height: 36px;
        min-height: 36px;
        border: 1px solid;
        font-weight: 500;
        min-width: 90px;
        margin-right: 0;
    }

    .tool-tag.white {
        background: #FFFFFF;
        color: #000000;
        border-color: #000000;
    }
    
    .tool-tag.black {
        background: #000000;
        color: #FFFFFF;
        border-color: #FFFFFF;
    }
    
    .reviews-container {
        padding: 0 16px;
    }
    
    .pricing-card {
        padding: 20px 16px;
        margin: 0 16px;
    }
    
    .footer-content {
        padding: 0 16px;
    }
    
    /* Improve touch targets */
    .benefit-button,
    .hero-cta-button,
    .register-button,
    .pricing-button,
    .tool-tag {
        min-width: 48px;
    }
    
    /* Better spacing for mobile */
    .section-title {
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        margin-top: 30px;
        padding: 0 16px;
    }
}

/* Print styles */
@media print {
    .hero-section,
    .tools-section,
    .reviews-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-cta-button,
    .register-button,
    .pricing-button {
        background: #000000 !important;
        color: white !important;
    }
}
