/* ===================================
   TARGET PAGE - RESPONSIVE STYLES
   Clean, Modern, Mobile-First Design
   =================================== */

/* === Container === */
.hero-section .container,
.feature-section .container,
.stats-section .container,
.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* === Hero Section === */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-section.hero-premium::before {
    display: none;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0A1F44;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF7A00 0%, #E66D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: #FF7A00;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-hero-primary:hover {
    background: #E66D00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.btn-hero-secondary {
    background: #FFFFFF;
    color: #0A1F44;
    border: 2px solid #E8E8E8;
}

.btn-hero-secondary:hover {
    background: #FAFAFA;
    border-color: #D4D4D4;
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.875rem;
    color: #525252;
    padding: 4px 0;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* === Feature Sections === */
.feature-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.feature-section:nth-child(even) {
    background: #FAFAFA;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section-reverse .feature-visual {
    order: -1;
}

.feature-content {
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0A1F44;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 12px;
    color: #FF7A00;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 1rem;
    color: #525252;
    line-height: 1.6;
}

.feature-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* === Stats Section === */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card-modern {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-value-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.stat-suffix-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #FF7A00;
    line-height: 1;
}

.stat-title-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stat-desc-modern {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #525252;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Tablet - 1024px and below */
@media screen and (max-width: 1024px) {
    .hero-section .container,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta,
    .hero-badges {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-section-reverse .feature-visual {
        order: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile - 768px and below */
@media screen and (max-width: 768px) {
    .hero-section,
    .feature-section,
    .cta-section {
        padding: 60px 0 40px;
    }
    
    .hero-section .container,
    .feature-section .container,
    .cta-section .container {
        padding: 0 16px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .section-description,
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .stat-suffix-modern {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Small Mobile - 480px and below */
@media screen and (max-width: 480px) {
    .hero-section,
    .feature-section,
    .stats-section,
    .cta-section{
        padding: 40px 20px 30px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title,
    .cta-title {
        font-size: 1.5rem;
    }
    
    .eyebrow {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .stat-card-modern {
        padding: 24px 16px;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .stat-suffix-modern {
        font-size: 1.5rem;
    }
}

/* Ultra-wide screens - 1440px and above */
@media screen and (min-width: 1440px) {
    .hero-section .container,
    .feature-section .container,
    .stats-section .container,
    .cta-section .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}

