:root {
    --alpine-white: #f8f9fa;
    --slate-blue: #2c3e50;
    --saperavi-burgundy: #722f37;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --alpine-white: #0f172a;
    --slate-blue: #1e293b;
    --text-dark: #f8f9fa;
    --text-light: #0f172a;
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --saperavi-burgundy: #a14550;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--alpine-white);
    color: var(--text-dark);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #722f37;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: #0f172a;
    color: #f8f9fa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.logo {
    display: flex;
    align-items: center;
    width: 200px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 0.88);
}

.nav-menu a.active {
    color: #fff;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    width: 200px;
    /* Fixed width to balance flex */
}

.action-icon {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.action-icon:hover {
    color: rgba(255, 255, 255, 0.88);
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 5% 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition: var(--transition);
}

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

.mobile-menu__panel {
    display: grid;
    gap: 0.35rem;
    max-width: 520px;
    margin-left: auto;
    padding: 1rem;
    background: #722f37;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    color: #fff;
}

[data-theme="dark"] .mobile-menu__panel {
    background: #0f172a;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    border-radius: 6px;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(255, 255, 255, 0.12);
}

/* Custom Dropdown for Language Switcher */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: inherit;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    background: var(--alpine-white);
    min-width: 120px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid var(--glass-border);
}

[data-theme="dark"] .dropdown-menu {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.custom-dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(114, 47, 55, 0.08);
    color: var(--saperavi-burgundy);
}

.fi {
    font-size: 1.2rem;
    border-radius: 2px;
}

/* Layout utilities */
.container-fluid {
    width: 100%;
    padding: 0 5%;
}

.grid-2,
.grid-3,
.stats-row {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.section-padding {
    padding: 3rem 5%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    /* Dummy picture as requested */
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 100%
        ),
        url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: white;
    /* Always white over picture */
}

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

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--saperavi-burgundy);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(114, 47, 55, 0.4);
}

/* 2-column Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--saperavi-burgundy);
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-style: italic;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .image-placeholder {
    background-color: #334155;
    color: #94a3b8;
}

/* Statistics Row */
.stats-container {
    background-color: #722f37;
    background-image: linear-gradient(
        to bottom,
        #722f37 0%,
        #87303b 55%,
        #9a3341 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5rem 5%;
    transition: var(--transition);
}

[data-theme="dark"] .stats-container {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .stat-number {
    color: var(--saperavi-burgundy);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Target Audiences */
.target-audience-card {
    padding: 4rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
}

.target-audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.target-audience-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--saperavi-burgundy);
}

.target-audience-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Industries Section */
.industries-section {
    text-align: center;
    background-color: rgba(44, 62, 80, 0.02);
}

[data-theme="dark"] .industries-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.industries-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
}

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

.industry-card {
    padding: 3rem 2rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.industry-card i {
    color: var(--saperavi-burgundy);
    transition: var(--transition);
}

.industry-card:hover {
    background-color: var(--saperavi-burgundy);
    color: #fff;
    transform: translateY(-5px);
}

.industry-card:hover i {
    color: #fff;
}

.industry-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Companies page */
.company-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 5% 4rem;
    background:
        linear-gradient(
            to right,
            rgba(18, 27, 38, 0.9) 0%,
            rgba(18, 27, 38, 0.62) 48%,
            rgba(18, 27, 38, 0.3) 100%
        ),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.applicant-hero {
    background:
        linear-gradient(
            to right,
            rgba(20, 32, 42, 0.92) 0%,
            rgba(20, 32, 42, 0.64) 50%,
            rgba(20, 32, 42, 0.28) 100%
        ),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.company-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--saperavi-burgundy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-hero .eyebrow,
.section-heading--light .eyebrow {
    color: #f0c8ce;
}

.company-hero h1 {
    max-width: 850px;
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
}

.company-hero p {
    max-width: 700px;
    color: #e6edf2;
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: #fff;
    color: #722f37;
}

.company-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin-top: 3rem;
}

.company-hero__stats div {
    min-height: 118px;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.company-hero__stats strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.company-hero__stats span {
    color: #dbe6ee;
    font-size: 0.95rem;
}

.company-section,
.company-band {
    padding: 5rem 5%;
}

.company-section > *,
.company-band > * {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.company-band {
    background: #722f37;
    color: #fff;
}

.applicant-band {
    background: #315f54;
}

.company-band--compact {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.company-band--light {
    background: #f2f5f7;
    color: var(--text-dark);
}

[data-theme="dark"] .company-band--light {
    background: rgba(255, 255, 255, 0.04);
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    text-align: center;
}

.company-logos span {
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    font-size: 0.9rem;
}

.company-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.company-intro h2,
.section-heading h2,
.company-split h2,
.company-proof h2,
.contact-section h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.08;
    color: var(--saperavi-burgundy);
}

.company-intro__copy p,
.company-split p,
.contact-section p {
    color: color-mix(in srgb, var(--text-dark) 82%, transparent);
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.section-heading {
    max-width: 760px;
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading--light h2 {
    color: #fff;
}

.feature-grid,
.package-grid,
.compliance-grid,
.testimonial-grid,
.proof-grid {
    display: grid;
    gap: 1.2rem;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.package-card,
.compliance-grid article,
.testimonial-grid article,
.industry-list article,
.proof-grid article,
.readiness-panel {
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card,
.compliance-grid article,
.industry-list article,
.readiness-panel {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 35px rgba(19, 29, 45, 0.06);
}

.feature-card:hover,
.industry-list article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(19, 29, 45, 0.1);
}

.feature-card i,
.industry-list i {
    color: var(--saperavi-burgundy);
    font-size: 2rem;
    margin-bottom: 1.4rem;
}

.feature-card h3,
.package-card h3,
.timeline-item h3,
.industry-list h3,
.readiness-panel h3,
.compliance-grid h3 {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}

.feature-card p,
.package-card p,
.timeline-item p,
.industry-list p,
.compliance-grid p,
.faq-section p {
    color: color-mix(in srgb, var(--text-dark) 78%, transparent);
}

.package-grid {
    grid-template-columns: repeat(3, 1fr);
}

.package-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.package-card--featured {
    background: #fff;
    color: #1a1a1a;
}

.package-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #f0c8ce;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-card--featured span {
    color: var(--saperavi-burgundy);
}

.package-card p {
    color: inherit;
    opacity: 0.8;
}

.package-card ul {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.4rem;
    padding-left: 1.1rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.timeline-item {
    position: relative;
    padding: 1.6rem;
    border-left: 3px solid var(--saperavi-burgundy);
    background: rgba(114, 47, 55, 0.055);
    border-radius: 0 8px 8px 0;
}

.timeline-item span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--saperavi-burgundy);
    font-weight: 800;
}

.company-split,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 4rem;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.check-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.check-list i {
    color: #2f8f6b;
    margin-top: 0.25rem;
}

.readiness-panel {
    background:
        linear-gradient(145deg, rgba(114, 47, 55, 0.08), rgba(47, 143, 107, 0.08)),
        var(--glass-bg);
}

.score-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem 0 0.45rem;
    font-size: 0.95rem;
}

.score-bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(44, 62, 80, 0.12);
}

.score-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(to right, var(--saperavi-burgundy), #2f8f6b);
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.applicant-pathways article:nth-child(2n) i {
    color: #315f54;
}

.applicant-readiness .score-bar span {
    background: linear-gradient(to right, #315f54, var(--saperavi-burgundy));
}

.applicant-language-grid article {
    border-top: 3px solid #315f54;
}

.company-proof {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: rgba(44, 62, 80, 0.035);
}

.applicant-proof {
    background:
        linear-gradient(135deg, rgba(49, 95, 84, 0.08), rgba(114, 47, 55, 0.055)),
        rgba(44, 62, 80, 0.025);
}

.proof-grid {
    grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

[data-theme="dark"] .proof-grid article {
    background: rgba(255, 255, 255, 0.06);
}

.proof-grid strong {
    display: block;
    color: var(--saperavi-burgundy);
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.proof-grid span {
    color: color-mix(in srgb, var(--text-dark) 76%, transparent);
    font-size: 0.95rem;
}

.compliance-grid {
    grid-template-columns: repeat(4, 1fr);
}

.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

.testimonial-grid article {
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

[data-theme="dark"] .testimonial-grid article {
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-grid p {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.testimonial-grid span {
    color: var(--saperavi-burgundy);
    font-weight: 700;
}

.faq-section details {
    max-width: 840px;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.16);
}

.faq-section summary {
    cursor: pointer;
    color: var(--saperavi-burgundy);
    font-weight: 800;
    font-size: 1.05rem;
}

.faq-section details p {
    margin-top: 0.8rem;
}

.company-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 18px 55px rgba(19, 29, 45, 0.1);
}

[data-theme="dark"] .company-form {
    background: rgba(255, 255, 255, 0.06);
}

.company-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.company-form input,
.company-form select,
.company-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(44, 62, 80, 0.18);
    border-radius: 6px;
    background: var(--alpine-white);
    color: var(--text-dark);
    font: inherit;
}

.company-form textarea {
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .grid-2 {
        gap: 3rem;
    }

    .target-audience-card {
        padding: 2.5rem;
    }

    .nav-menu {
        position: static;
        transform: none;
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Revert centering on mobile */
    .logo {
        width: auto;
    }

    .nav-right {
        width: auto;
        gap: 1rem;
    }

    .feature-grid,
    .timeline,
    .package-grid,
    .compliance-grid,
    .industry-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-intro,
    .company-split,
    .company-proof,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .company-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .image-placeholder {
        height: 300px;
    }

    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .company-hero {
        min-height: auto;
        padding-top: 7rem;
    }

    .company-hero h1 {
        font-size: 2.8rem;
    }

    .company-hero__stats,
    .feature-grid,
    .timeline,
    .package-grid,
    .industry-list,
    .proof-grid,
    .compliance-grid,
    .testimonial-grid,
    .company-form {
        grid-template-columns: 1fr;
    }

    .company-section,
    .company-band {
        padding: 4rem 5%;
    }

    .company-band--compact {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .company-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar {
        padding: 0 4%;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .mobile-menu {
        padding: 0 4% 1rem;
    }

    .mobile-menu__panel {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .company-hero h1 {
        font-size: 2.35rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .company-logos {
        grid-template-columns: 1fr;
    }

    .company-intro h2,
    .section-heading h2,
    .company-split h2,
    .company-proof h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .logo-img {
        height: 38px;
    }

    .action-icon[title="Login"] {
        display: none;
    }

    .dropdown-toggle {
        padding: 0.35rem 0.55rem;
    }
}
