/* ==========================================================================
   SUITABLE EDGE - HOME PAGE CSS (PREMIUM TYPOGRAPHY EDITION)
   ========================================================================== */

:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --primary-dark: #091527;
    --primary-blue: #1E3A8A;
    --orange-main: #FF6B00;
    --orange-hover: #E56000;
    --orange-light: #FFF0E6;
    --orange-bg: #FFF8F3;
    --text-dark: #0F172A;
    --text-mid: #475569;
    --gray-light: #F8FAFC;
    --gray-border: #E2E8F0;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(9, 21, 39, 0.07);
    --shadow-lg: 0 24px 48px rgba(9, 21, 39, 0.12);
    --shadow-orange: 0 8px 24px rgba(255, 107, 0, 0.32);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, 
.logo-text, 
.btn-primary, 
.btn-secondary, 
.btn-nav,
.nav-links a {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orange { color: var(--orange-main); }
.text-orange { color: var(--orange-main); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--orange-main);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-orange);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.42);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--primary-dark);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gray-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange-main);
    color: var(--orange-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-nav {
    background: var(--orange-main);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-orange);
}

.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-mid);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-main);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
    color: var(--orange-main);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 75px 0 90px;
    background: #FFFFFF !important;
    position: relative;
    border-bottom: 1px solid var(--gray-border);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    border: 1px solid var(--orange-light);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 22px;
    letter-spacing: -1.2px;
}

.hero-title .highlight {
    color: var(--orange-main);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 38px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.trust-indicators {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.trust-indicators i {
    color: var(--orange-main);
    font-size: 1rem;
    margin-right: 4px;
}

/* ===== HERO IMAGE - NO BACKGROUND, NO BOX ===== */
.hero-image-wrapper {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-glow-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 50%;
    filter: blur(65px);
    z-index: 1;
}

.hero-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    /* NO border, NO border-radius, NO box-shadow */
    background: transparent !important;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Floating Badges */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--gray-border);
    text-align: left;
    z-index: 3;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.card-top { 
    top: 25px; 
    left: -25px; 
}

.card-bottom { 
    bottom: 25px; 
    right: -15px; 
    animation-delay: 2s; 
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-orange {
    background: var(--orange-bg);
    color: var(--orange-main);
}

.icon-blue {
    background: #EBF3FE;
    color: var(--primary-blue);
}

.floating-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    color: var(--primary-dark);
}

.floating-card p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-mid);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 48px 0;
    border-bottom: 4px solid var(--orange-main);
}

.grid-4-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--orange-main);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== SECTIONS & CARDS ===== */
.section-padding {
    padding: 95px 0;
    background-color: #FFFFFF !important;
}

.bg-alt {
    background-color: #FAFBFC !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto 55px;
    font-size: 1.08rem;
    font-weight: 400;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 38px 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.3);
}

.card-icon {
    width: 62px;
    height: 62px;
    background: var(--orange-bg);
    color: var(--orange-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text-mid);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* ===== FEATURED INTERNSHIPS ===== */
.domain-card {
    position: relative;
}

.domain-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--orange-bg);
    color: var(--orange-main);
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 1px solid var(--orange-light);
}

.domain-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.domain-list li {
    font-size: 0.94rem;
    color: var(--text-mid);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.domain-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-main);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-top: 10px;
}

.domain-btn:hover {
    gap: 14px;
}

/* ===== HOW IT WORKS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.process-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--orange-main);
}

.process-number {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--orange-main);
    opacity: 0.35;
    margin-bottom: 14px;
    line-height: 1;
}

.process-card h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.process-card p {
    font-size: 0.94rem;
    color: var(--text-mid);
}

/* ===== TESTIMONIALS ===== */
.rating-stars {
    color: #FFB800;
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-mid);
    font-size: 0.98rem;
    margin-bottom: 26px;
    line-height: 1.65;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.user-info h5 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 800;
}

.user-role {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-box {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 32px 42px;
    box-shadow: var(--shadow-sm);
}

.faq-item {
    border-bottom: 1px solid var(--gray-border);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .q {
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.12rem;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.faq-item .q i {
    color: var(--orange-main);
}

.faq-item .a {
    color: var(--text-mid);
    font-size: 1rem;
    padding-left: 32px;
    line-height: 1.65;
}

/* ===== ECOSYSTEM ===== */
.ecosystem-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.ecosystem-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ecosystem-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-card {
    border-color: var(--orange-main);
    background: var(--orange-bg);
}

.ecosystem-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-bg);
    color: var(--orange-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.highlight-card .ecosystem-icon {
    background: var(--orange-main);
    color: var(--white);
}

.ecosystem-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.ecosystem-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

.ecosystem-footer-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--primary-dark);
    border-radius: 16px;
    flex-wrap: wrap;
}

.ecosystem-pill {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecosystem-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--primary-dark);
    color: var(--white);
    padding: 90px 0;
    border-top: 4px solid var(--orange-main);
}

.cta-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    max-width: 700px;
    margin: 0 auto 38px;
    font-weight: 400;
}

.btn-cta {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background: #060D19;
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 55px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
}

.footer-brand h3 span { color: var(--orange-main); }
.footer-brand .tagline { 
    font-size: 0.72rem; 
    font-weight: 800; 
    font-family: var(--font-heading); 
    color: var(--orange-main); 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
}
.footer-brand p { 
    color: rgba(255, 255, 255, 0.68); 
    font-size: 0.94rem; 
    max-width: 350px; 
    margin-bottom: 26px; 
}

.social-links { 
    display: flex; 
    gap: 12px; 
}
.social-links a {
    width: 42px; 
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover { 
    background: var(--orange-main); 
    transform: translateY(-3px);
}

.footer-links h4 { 
    font-size: 1.12rem; 
    font-weight: 800; 
    margin-bottom: 24px; 
    color: var(--white); 
}
.footer-links a { 
    display: block; 
    color: rgba(255, 255, 255, 0.68); 
    margin-bottom: 12px; 
    font-size: 0.94rem; 
}
.footer-links a:hover { 
    color: var(--orange-main); 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links { 
    display: flex; 
    gap: 24px; 
}
.legal-links a { 
    color: rgba(255, 255, 255, 0.6); 
}
.legal-links a:hover { 
    color: var(--orange-main); 
}

/* ===== UTILITY ===== */
.margin-top-40 { margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 45px; 
    }
    .hero-title { font-size: 2.8rem; }
    .hero-cta-group, .trust-indicators { 
        justify-content: center; 
    }
    .hero-img { max-width: 480px; }
    .floating-card { display: none; }
}

@media (max-width: 768px) {
    .mobile-toggle { 
        display: block; 
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--gray-border);
        gap: 18px;
    }

    .nav-links.active { 
        display: flex; 
    }
    
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1.02rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 36px; 
        text-align: center;
    }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }
    .faq-box { 
        padding: 22px; 
    }
    .social-links { 
        justify-content: center; 
    }
    .ecosystem-footer-bar {
        flex-direction: column;
        gap: 12px;
    }
    .ecosystem-divider {
        width: 60%;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .cta-title { 
        font-size: 2rem; 
    }
}

@media (max-width: 480px) {
    .hero-title { 
        font-size: 1.8rem; 
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .stats-bar {
        padding: 30px 0;
    }
    .stat-number {
        font-size: 2rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}