/* Hero Section - Final Brand Design */

/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #0891B2;
    --primary-dark: #0779A0;
    --primary-light: rgba(8, 145, 178, 0.08);
    
    --accent: #EA580C;
    --accent-light: rgba(234, 88, 12, 0.08);
    
    /* Neutrals */
    --bg-white: #ffffff;
    --bg-light: #F9FAFB;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    
    /* WhatsApp */
    --whatsapp: #25D366;
    
    /* Footer */
    --footer-bg: #414b59;
}

/* ==================== BASE TYPOGRAPHY ==================== */
.hero-new,
.how-it-works,
.testimonials-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-new *,
.how-it-works *,
.testimonials-section * {
    font-family: inherit;
}

/* ==================== HERO SECTION ==================== */
.hero-new {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

/* ==================== TRUST BADGE ==================== */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 8px 16px 8px 10px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.trust-badge-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.trust-badge-text span {
    color: var(--primary);
}

/* ==================== TAGLINE ==================== */
.founder-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

/* ==================== HEADLINE ==================== */
.hero-headline {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-headline .highlight {
    color: var(--accent);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-light);
    z-index: -1;
    border-radius: 3px;
}

/* ==================== SUBHEADLINE ==================== */
.hero-subheadline {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 28px;
}

/* ==================== SERVICE PILLS ==================== */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
    line-height: 1.5;
}

.service-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.service-pill i {
    font-size: 11px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.service-pill:hover i {
    color: var(--primary);
}

/* ==================== CTA BUTTONS ==================== */
.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

/* Primary Button - Solid */
.hero-new .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
    border: 2px solid var(--primary);
    height: 52px;
    line-height: 1.5;
}

.hero-new .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
    color: white;
}

.hero-new .btn-primary i {
    font-size: 13px;
}

/* Secondary Button - Outlined */
.hero-new .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--text-body);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--border-medium);
    height: 52px;
    line-height: 1.5;
}

.hero-new .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==================== STATS ==================== */
.hero-stats {
    display: flex;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.stat-number span {
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== COUNTRIES ROW ==================== */
.countries-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.countries-row span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
}

.country-flags {
    display: flex;
    gap: 3px;
    font-size: 16px;
}

/* ==================== FEATURED IN ==================== */
.featured-in {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.featured-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
    line-height: 1.5;
}

.featured-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.featured-logo {
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.featured-logo:hover { 
    opacity: 1; 
}

.featured-logo .forbes-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #222;
}

.featured-logo .logo-text {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #444;
}

.featured-logo.hackernoon .logo-text {
    color: #00d084;
    background: #0d1117;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.featured-logo.boldjourney .logo-text {
    font-style: italic;
    font-size: 17px;
    color: #6B5344;
}

.featured-logo.nafsa .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.featured-logo.nafsa .badge-member {
    font-size: 9px;
    background: #333;
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.featured-logo.ultra .logo-text {
    font-size: 14px;
    color: #555;
}

.featured-logo.ultra .logo-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ==================== HERO VISUAL ==================== */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

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

/* ==================== FLOATING CARDS ==================== */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 2px 10px rgba(0,0,0,0.08);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 { top: 20px; right: -20px; animation-delay: 0s; }
.floating-card-2 { bottom: 80px; left: -30px; animation-delay: 2s; }
.floating-card-3 { bottom: 0px; right: 30px; animation-delay: 4s; }

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 14px;
    background: var(--primary-light);
    color: var(--primary);
}

.card-icon.orange {
    background: var(--accent-light);
    color: var(--accent);
}

.card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.5;
}

.card-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== PARTNERS BAR ==================== */
.partners-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 48px 0;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.partners-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    line-height: 1.5;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 48px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    background: var(--bg-white);
    padding: 80px 24px;
    border-top: 1px solid var(--border-light);
}

.how-it-works-container {
    max-width: 1100px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.how-it-works-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.step-number i {
    font-size: 28px;
    color: var(--primary);
}

.step-card:hover .step-number {
    background: var(--primary);
    border-color: var(--primary);
}

.step-card:hover .step-number i {
    color: white;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 24px;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonials-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.testimonial-headline {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.author-detail {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ==================== FOUNDER SECTION ==================== */
.founder-section {
    background: var(--bg-white);
    padding: 80px 24px;
    border-top: 1px solid var(--border-light);
}

.founder-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.founder-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.founder-content {
    max-width: 600px;
}

.founder-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.founder-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.founder-bio {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-partners {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.legal-partners-icon {
    color: var(--primary);
    font-size: 16px;
}

.legal-partners-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.5;
}

.legal-partners-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px 60px;
    }
    .hero-content { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    .hero-cta { 
        justify-content: center; 
        flex-wrap: wrap; 
    }
    .hero-stats { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    .stat-item { 
        text-align: center; 
    }
    .countries-row { 
        justify-content: center; 
        flex-wrap: wrap; 
    }
    .service-pills { 
        justify-content: center; 
    }
    .featured-logos { 
        justify-content: center; 
    }
    .hero-visual { 
        display: none; 
    }
    
    /* Partner logos - 2 columns on tablet */
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 32px;
    }
    
    .partner-logo img {
        height: 48px;
        max-width: 140px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps-container::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-image {
        margin: 0 auto;
    }
    .legal-partners {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta { 
        flex-direction: column; 
    }
    .hero-new .btn-primary, 
    .hero-new .btn-secondary { 
        width: 100%; 
        justify-content: center; 
    }
    
    /* Partner logos - 2 columns on mobile, smaller */
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 24px;
    }
    
    .partner-logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .partners-bar {
        padding: 36px 0;
    }
    
    /* Featured logos smaller on mobile */
    .featured-logos {
        gap: 20px;
    }
    
    .featured-logo .forbes-text {
        font-size: 22px;
    }
    
    .featured-logo .logo-text {
        font-size: 13px;
    }
    
    .how-it-works,
    .testimonials-section,
    .founder-section {
        padding: 60px 20px;
    }
}
