:root {
    /* Extracted Brand Colors */
    --brand-green: #00E37C;
    --brand-green-hover: #00c66c;
    --brand-blue: #2A65FF;
    --dark-bg: #ffffff;
    --nav-bg: rgba(15, 23, 42, 0.85);
    --card-dark-bg: #0F172A;
    --border-color: rgba(255, 255, 255, 0.12);
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #0F172A;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content down so fixed header doesn't overlap */
    padding-top: 120px;
}

/* ----------------------------------------------------
   1. FLOATING NAVBAR STYLES
---------------------------------------------------- */
.navbar-container {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    z-index: 1000;
}

.floating-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px; /* Expanded width */
    padding: 14px 32px; /* Increased padding */
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 38px;
    width: auto;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.3px;
}

.brand-text span {
    color: var(--brand-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-green);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%);
    color: #0F172A;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 227, 124, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ----------------------------------------------------
   2. FLOATING FOOTER CARD STYLES
---------------------------------------------------- */
.footer-container {
    display: flex;
    justify-content: center;
    padding: 0 24px 40px 24px;
    width: 100%;
    margin-top: 80px;
}

.floating-footer-card {
    width: 100%;
    max-width: 1280px; /* Expanded width to match navbar */
    background-color: var(--card-dark-bg);
    color: var(--text-light);
    border-radius: 40px;
    padding: 64px 64px 40px 64px; /* Increased internal padding */
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-light);
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 380px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-green);
}

.badge-hiring {
    background-color: rgba(0, 227, 124, 0.15);
    color: var(--brand-green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 227, 124, 0.3);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: var(--brand-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--brand-green);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 36px;
}

.footer-disclaimer {
    color: #64748B;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer a {
    color: var(--text-muted);
    text-decoration: underline;
}

.footer-disclaimer a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding-top: 12px;
}

.flag-icon {
    font-weight: 600;
    color: #E2E8F0;
}

.gh-badge {
    color: var(--brand-green);
    font-weight: 700;
}

/* ----------------------------------------------------
   3. RESPONSIVE BREAKPOINTS
---------------------------------------------------- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 868px) {
    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 28px 0;
        gap: 20px;
        border-radius: 24px;
        border: 1px solid var(--border-color);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .floating-footer-card {
        padding: 40px 28px 28px 28px;
        border-radius: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ----------------------------------------------------
   LANDING PAGE / HERO SECTION STYLES
---------------------------------------------------- */
.hero-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Layout */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0F172A;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-green);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #0F172A 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(42, 101, 255, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0F172A;
    padding: 14px 24px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-secondary:hover {
    color: var(--brand-blue);
}

.play-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748B;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: #E2E8F0;
}

/* Hero Visual Card & Image */
.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.floating-stat-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #FFFFFF;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background-color: var(--brand-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    fill: #0F172A;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 60px 0 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
}

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

.service-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 36px 28px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    border-color: rgba(42, 101, 255, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #0F172A;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--brand-green);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }
}

/* ----------------------------------------------------
   ENDLESS LOGO MARQUEE SECTION
---------------------------------------------------- */
.trusted-marquee-section {
    padding: 30px 0 60px 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.marquee-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 32px;
}

/* Container with Gradient Mask Edge Fading */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    min-width: 100%;
    animation: scroll-marquee 25s linear infinite;
    padding-right: 24px;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Card Styling Matching Reference Screenshot */
.client-logo-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    width: 210px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 101, 255, 0.4);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.client-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.client-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #475569;
}

/* Keyframe for Continuous Smooth Scroll */
@keyframes scroll-marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ----------------------------------------------------
   FAQ SECTION STYLES
---------------------------------------------------- */
.faq-section {
    padding: 80px 0 40px 0;
}

.faq-subtitle {
    color: #64748B;
    font-size: 1.05rem;
    margin-top: 8px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 20px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item[open] {
    background-color: #FFFFFF;
    border-color: rgba(42, 101, 255, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default arrow */
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide Chrome/Safari marker */
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Turns "+" into "x" when expanded */
    color: #EF4444;
}

.faq-answer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .faq-item {
        padding: 16px 20px;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* ----------------------------------------------------
   TESTIMONIALS TWO-ROW MARQUEE
---------------------------------------------------- */
.testimonials-section {
    padding: 80px 0 20px 0;
    overflow: hidden;
    width: 100%;
}

.testimonials-subtitle {
    color: #64748B;
    font-size: 1.05rem;
    margin-top: 8px;
}

.testimonials-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonial-marquee-track {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    gap: 24px;
    min-width: 100%;
}

.track-left {
    animation: scroll-left 32s linear infinite;
}

.track-right {
    animation: scroll-right 32s linear infinite;
}

.testimonial-marquee-wrapper:hover .testimonial-marquee-track {
    animation-play-state: paused;
}

/* Card layout based on reference image */
.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    width: 380px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 101, 255, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: #0F3254;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 26px;
    height: 26px;
    fill: #FFFFFF;
}

.author-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: #64748B;
    display: block;
}

/* Keyframe Animations */
@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        width: 300px;
        padding: 20px;
    }
}

/* ----------------------------------------------------
   WHY PARTNER WITH US SECTION
---------------------------------------------------- */
.partner-section {
    padding: 60px 0;
    width: 100%;
}

.partner-card {
    background: linear-gradient(145deg, #F0FDF4 0%, #E6F4EA 100%);
    border: 1px solid rgba(0, 227, 124, 0.25);
    border-radius: 36px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
}

.partner-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F6B42;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.partner-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0B2B1D;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.partner-description {
    font-size: 1rem;
    color: #2D4A3E;
    line-height: 1.65;
    margin-bottom: 36px;
}

/* CTA Button */
.btn-partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #0B4F32;
    color: #FFFFFF;
    padding: 12px 24px 12px 14px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25 ease;
    box-shadow: 0 8px 20px rgba(11, 79, 50, 0.2);
}

.btn-partner-cta:hover {
    background-color: #073823;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 79, 50, 0.3);
}

.play-badge {
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-badge svg {
    width: 16px;
    height: 16px;
    fill: #0B4F32;
    margin-left: 2px;
}

/* 2x2 Feature Grid */
.partner-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
}

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

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #C6F6D5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B4F32;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.partner-feature-item:hover .feature-icon-wrapper {
    transform: scale(1.08);
    background-color: var(--brand-green);
}

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

.feature-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B2B1D;
    margin-bottom: 8px;
}

.feature-body p {
    font-size: 0.92rem;
    color: #2D4A3E;
    line-height: 1.55;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .partner-card {
        grid-template-columns: 1fr;
        padding: 44px 32px;
        gap: 40px;
    }

    .partner-title {
        font-size: 2rem;
    }
}

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

    .partner-card {
        padding: 32px 20px;
        border-radius: 24px;
    }
}

/* ----------------------------------------------------
   ABOUT HERO SECTION (CLEAN TEXT-FIRST LAYOUT)
---------------------------------------------------- */
.about-hero-section {
    padding: 60px 0 80px 0;
    width: 100%;
    background: transparent;
}

.about-hero-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge Header */
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0F172A;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

/* Dynamic Gradient Highlight matching Hero */
.about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    letter-spacing: -1px;
    max-width: 860px;
    margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 60px;
}

/* Clean 3-Column Pillar Feature Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    text-align: left;
}

.pillar-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 36px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 101, 255, 0.3);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.pillar-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-blue);
    background: rgba(42, 101, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 2.1rem;
    }
    .about-hero-subtitle {
        font-size: 1rem;
    }
    .pillar-card {
        padding: 28px 20px;
    }
}

/* ----------------------------------------------------
   VISION & MISSION SECTION STYLES
---------------------------------------------------- */
.vision-mission-section {
    padding: 80px 0;
    width: 100%;
    background: transparent;
}

.vm-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.vm-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
}

.vm-tag {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.vm-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.vm-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

/* Grid Layout */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: stretch;
}

/* Card General Base */
.vm-card {
    border-radius: 32px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-4px);
}

.vm-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: block;
}

/* Mission Card (Light) */
.card-mission {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
}

.card-mission:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(42, 101, 255, 0.3);
}

.card-mission .icon-green {
    background-color: rgba(0, 227, 124, 0.15);
    color: #0B4F32;
}

.card-mission .card-label {
    color: #0B4F32;
}

.card-mission h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0F172A;
}

.card-mission p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.card-highlights {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-highlights li {
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--brand-green-hover);
    font-weight: 800;
}

/* Vision Card (Dark - High-Impact Focal Card) */
.card-vision {
    background-color: var(--card-dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.card-vision:hover {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    border-color: rgba(0, 227, 124, 0.3);
}

.card-vision .icon-blue {
    background-color: rgba(42, 101, 255, 0.2);
    color: var(--brand-blue);
}

.card-vision .label-bright {
    color: var(--brand-green);
}

.card-vision h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.card-vision p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.vision-subtext {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 0 !important;
    font-style: italic;
    color: #CBD5E1 !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vm-card {
        padding: 36px 28px;
    }

    .vm-title {
        font-size: 2.1rem;
    }
}

/* ----------------------------------------------------
   OUR PROCESS SECTION STYLES
---------------------------------------------------- */
.process-section {
    padding: 80px 0;
    width: 100%;
    background: transparent;
}

.process-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.process-tag {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.process-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

/* 4-Column Responsive Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Card Styling */
.process-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    background-color: #FFFFFF;
    border-color: rgba(42, 101, 255, 0.3);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-badge {
    width: 44px;
    height: 44px;
    background-color: #0F172A;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.8px;
    background-color: #E2E8F0;
    padding: 4px 10px;
    border-radius: 12px;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 28px;
}

.process-footer-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-blue);
    background-color: rgba(42, 101, 255, 0.08);
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
    margin-top: auto;
}

/* Featured 4th Step (Deployment Accent) */
.highlight-step {
    background-color: #FFFFFF;
    border-color: rgba(0, 227, 124, 0.4);
    box-shadow: 0 10px 25px rgba(0, 227, 124, 0.08);
}

.badge-green {
    background-color: var(--brand-green) !important;
    color: #0F172A !important;
}

.phase-green {
    background-color: rgba(0, 227, 124, 0.15) !important;
    color: #0B4F32 !important;
}

.tag-green {
    background-color: rgba(0, 227, 124, 0.15) !important;
    color: #0B4F32 !important;
}

/* Breakpoints */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .process-title {
        font-size: 2.1rem;
    }

    .process-card {
        padding: 28px 20px;
    }
}

/* ----------------------------------------------------
   CONTACT / CONSULTATION PAGE STYLES
---------------------------------------------------- */
.contact-page-section {
    padding: 40px 0 80px 0;
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
}

/* Left Column Styling */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0F172A;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-value-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

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

.value-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(42, 101, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-blue);
}

.value-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
}

/* Direct Contact Details Block */
.direct-contact-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.direct-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.direct-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94A3B8;
    letter-spacing: 0.5px;
}

.direct-val {
    font-size: 0.98rem;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.direct-val:hover {
    color: var(--brand-blue);
}

/* Right Column: Form Container Card */
.contact-form-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.95rem;
    color: #64748B;
}

/* Form Group & Controls */
.project-intake-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #0F172A;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: #FFFFFF;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(42, 101, 255, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0F172A;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    cursor: pointer;
}

/* CTA Submit Button */
.btn-submit-form {
    width: 100%;
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 16px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    margin-top: 8px;
}

.btn-submit-form svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.btn-submit-form:hover {
    background-color: var(--brand-blue);
    box-shadow: 0 12px 30px rgba(42, 101, 255, 0.3);
    transform: translateY(-2px);
}

.btn-submit-form:hover svg {
    transform: translateX(4px);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Floating Global Notification Toasts */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 360px;
}

.toast ul {
    margin: 0;
    padding-left: 16px;
}

.toast-error {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #991b1b;
}

.toast-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

@keyframes slideIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ----------------------------------------------------
   PRIVACY POLICY PAGE STYLES
---------------------------------------------------- */
.policy-section {
    padding: 60px 0 100px 0;
    width: 100%;
}

.policy-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0F172A;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-blue, #2A65FF);
    border-radius: 50%;
}

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.policy-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
}

.policy-meta svg {
    width: 16px;
    height: 16px;
    fill: #64748B;
}

/* Content Card Container */
.policy-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 56px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

/* Typography Styling for Database HTML Content */
.prose {
    color: #334155;
    font-size: 1.025rem;
    line-height: 1.8;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prose h2 {
    font-size: 1.5rem;
    padding-bottom: 12px;
    border-bottom: 1px solid #F1F5F9;
}

.prose h3 {
    font-size: 1.25rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--brand-blue, #2A65FF);
    text-decoration: underline;
    font-weight: 500;
}

.prose a:hover {
    color: #0F172A;
}

.prose strong {
    color: #0F172A;
}

/* Empty State Styling */
.policy-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748B;
}

.policy-empty svg {
    width: 48px;
    height: 48px;
    fill: #94A3B8;
    margin-bottom: 16px;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .policy-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .policy-title {
        font-size: 2.2rem;
    }
}

/* ----------------------------------------------------
   CAREERS PAGE STYLES
---------------------------------------------------- */
.careers-page-section {
    padding: 40px 0 100px 0;
    width: 100%;
}

.careers-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.careers-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 227, 124, 0.12);
    border: 1px solid rgba(0, 227, 124, 0.3);
    color: #0B4F32;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: #00E37C;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 227, 124, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 227, 124, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(0, 227, 124, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 227, 124, 0); }
}

.careers-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.careers-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

/* Image Gallery */
.careers-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Perks Section */
.perks-section {
    margin-bottom: 90px;
    text-align: center;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue, #2A65FF);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 40px;
}

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

.perk-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-6px);
    border-color: rgba(42, 101, 255, 0.3);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.perk-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.perk-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.perk-card p {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.6;
}

/* Open Positions */
.jobs-section {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    padding: 48px;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-desc {
    color: #64748B;
    font-size: 0.95rem;
    margin-top: 4px;
}

.open-count {
    background: #0F172A;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease;
}

.job-card:hover {
    border-color: var(--brand-blue, #2A65FF);
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.tag-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    background: #F1F5F9;
    color: #475569;
}

.tag-remote {
    background: rgba(0, 227, 124, 0.15);
    color: #0B4F32;
}

.job-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.job-info p {
    font-size: 0.9rem;
    color: #64748B;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-apply svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-apply:hover {
    background-color: var(--brand-blue, #2A65FF);
    transform: translateX(2px);
}

/* Responsive Breakdown */
@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 240px;
    }
}

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

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .jobs-section {
        padding: 28px 20px;
    }

    .careers-title {
        font-size: 2.2rem;
    }
}

/* Application Modal Overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFFFFF;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: #64748B;
    margin-top: 2px;
}

.modal-close-btn {
    background: #F1F5F9;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #64748B;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form input[type="file"] {
    font-size: 0.85rem;
    padding: 8px 12px;
}

.no-jobs-card {
    text-align: center;
    padding: 32px;
    color: #64748B;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px dashed #CBD5E1;
}

/* Job Wrapper & Card */
.job-card-wrapper {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.job-card-wrapper:hover {
    border-color: var(--brand-blue, #2A65FF);
}

.job-card {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* View Details Button */
.btn-toggle-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F1F5F9;
    color: #334155;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-toggle-details:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.chevron-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.btn-toggle-details.active .chevron-icon {
    transform: rotate(180deg);
}

/* Expandable Drawer & Formatted Description Content */
.job-details-drawer {
    max-height: 0;
    overflow: hidden;
    background: #F8FAFC;
    border-top: 0px solid #E2E8F0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.job-details-drawer.open {
    max-height: 1200px;
    border-top-width: 1px;
    padding: 28px 32px;
}

.job-description-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

/* Responsive Rule Adjustment */
@media (max-width: 600px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .job-actions {
        width: 100%;
        flex-direction: column-reverse;
    }

    .btn-toggle-details,
    .btn-apply {
        width: 100%;
        justify-content: center;
    }
}
