/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0573b2;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 640px;
    line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    line-height: 1.4;
}
.btn-primary {
    background: #0573b2;
    color: #fff;
    box-shadow: 0 4px 14px rgba(5,115,178,0.35);
}
.btn-primary:hover {
    background: #045d91;
    box-shadow: 0 6px 20px rgba(5,115,178,0.45);
    transform: translateY(-2px);
}
.btn-accent {
    background: #dc1b48;
    color: #fff;
    box-shadow: 0 4px 14px rgba(220,27,72,0.35);
}
.btn-accent:hover {
    background: #b8163c;
    box-shadow: 0 6px 20px rgba(220,27,72,0.45);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #0573b2;
    border: 2px solid #0573b2;
}
.btn-outline:hover {
    background: #0573b2;
    color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: #0573b2;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 38px;
    width: auto;
}
.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
}
.nav-links a:hover { color: #0573b2; }
.nav-cta {
    padding: 10px 24px !important;
    font-size: 14px !important;
    color: #fff !important;
}

/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.lang-switch a {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
}
.lang-switch a.active {
    background: #0573b2;
    color: #fff;
}
.lang-switch a:hover:not(.active) {
    background: #e2e8f0;
}

/* Mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #1a1a2e;
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-menu .lang-switch { margin-top: 16px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f8ff 0%, #e1f0fa 40%, #d0e8f5 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(5,115,178,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,27,72,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    position: relative;
}
.hero .container {
    position: relative;
    z-index: 3;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.hero-content {
    max-width: 580px;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-left: auto;
    margin-right: 48px;
}

/* Hero Visual — right column, bleeds to right edge */
.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
#heroCanvas {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Floating Data Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(5,115,178,0.12);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(5,115,178,0.1);
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
}
.float-card-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #e1f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-card-text {
    display: flex;
    flex-direction: column;
}
.float-card-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}
.float-card-label {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.float-card-1 { top: 18%; right: 10%; animation-delay: 0s; }
.float-card-2 { top: 50%; left: 10%; animation-delay: -2s; }
.float-card-3 { bottom: 15%; right: 15%; animation-delay: -4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,115,178,0.1);
    color: #0573b2;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: #dc1b48;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #0573b2, #0899e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p.hero-desc {
    font-size: clamp(17px, 2vw, 20px);
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(5,115,178,0.15);
}
.hero-stat-number { font-size: 32px; font-weight: 800; color: #0573b2; }
.hero-stat-label { font-size: 14px; color: #94a3b8; font-weight: 500; margin-top: 4px; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-card {
    background: linear-gradient(160deg, #f0f8ff, #e1f0fa);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0573b2, #dc1b48);
}
.timeline { display: flex; flex-direction: column; gap: 28px; }
.timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.timeline-dot {
    width: 12px; height: 12px;
    background: #0573b2;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
.timeline-dot.accent { background: #dc1b48; }
.timeline-year { font-size: 13px; font-weight: 700; color: #0573b2; margin-bottom: 4px; }
.timeline-text { font-size: 15px; color: #475569; line-height: 1.6; }
.about-text h3 {
    font-size: 20px; font-weight: 700; color: #1a1a2e;
    margin-bottom: 16px; margin-top: 28px;
}
.about-text h3:first-of-type { margin-top: 0; }
.about-text p { font-size: 16px; color: #64748b; line-height: 1.8; }

/* ===== SERVICES ===== */
.services { background: #f8fafc; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: #d0e8f5;
    box-shadow: 0 12px 40px rgba(5,115,178,0.08);
    transform: translateY(-4px);
}
.service-card-primary {
    background: linear-gradient(160deg, #0573b2, #045d91);
    border: none;
}
.service-card-primary .service-icon { background: rgba(255,255,255,0.2); }
.service-card-primary .service-name { color: #fff; }
.service-card-primary .service-desc { color: rgba(255,255,255,0.85); }
.service-card-primary .service-features li { color: rgba(255,255,255,0.8); }
.service-card-primary .service-features li::before { color: rgba(255,255,255,0.6); }
.service-card-wide { grid-column: span 3; }
.service-card-wide .service-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: flex-start;
}
.service-card-wide .service-icon { margin-bottom: 0; }
.service-card-wide .service-features { min-width: 220px; }
.service-card-wide .service-desc { max-width: 600px; }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: #e1f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    flex-shrink: 0;
}
.service-name { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.service-desc { font-size: 15px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li {
    font-size: 14px; color: #64748b; padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: '\2192'; color: #0573b2; font-weight: 600; }

/* ===== NOTICE ===== */
.notice-section { background: #fff; padding: 60px 0; }
.notice-banner {
    background: linear-gradient(135deg, #fef2f4, #fde8ec);
    border: 1px solid #f5c2cb;
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.notice-icon {
    width: 52px; height: 52px;
    background: #dc1b48;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.notice-content h4 { font-size: 18px; font-weight: 700; color: #9b1133; margin-bottom: 4px; }
.notice-content p { font-size: 15px; color: #b5153d; line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { background: #0a2540; color: #fff; }
.why-us .section-label { color: #5bb8e8; }
.why-us .section-title { color: #fff; }
.why-us .section-subtitle { color: #94a3b8; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(5,115,178,0.4);
    transform: translateY(-4px);
}
.why-icon {
    width: 48px; height: 48px;
    background: rgba(5,115,178,0.25);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.why-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: 15px; color: #94a3b8; line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.industries { background: #f8fafc; }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.industry-card:hover {
    border-color: #d0e8f5;
    box-shadow: 0 8px 30px rgba(5,115,178,0.08);
    transform: translateY(-4px);
}
.industry-icon {
    width: 64px; height: 64px;
    background: #e1f0fa;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
}
.industry-name { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.industry-desc { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(160deg, #0573b2 0%, #045d91 50%, #034a74 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(220,27,72,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; color: #fff;
    margin-bottom: 20px; line-height: 1.2;
}
.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #061a2e;
    color: #94a3b8;
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; color: #64748b; }
.footer-heading {
    font-size: 14px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #64748b; transition: color 0.2s; }
.footer-links a:hover { color: #5bb8e8; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 13px; color: #475569; }
.footer-tagline { font-size: 13px; color: #64748b; font-style: italic; }

/* ===== FORMS (Contact & Quote pages) ===== */
.page-header {
    background: linear-gradient(160deg, #f0f8ff 0%, #e1f0fa 40%, #d0e8f5 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(5,115,178,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.page-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.form-section { padding: 80px 0 100px; }
.form-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: flex-start;
}
.form-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1a1a2e;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0573b2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(5,115,178,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-submit { width: 100%; padding: 16px; font-size: 16px; margin-top: 8px; transition: opacity 0.2s; }
.form-submit:disabled { cursor: not-allowed; }
@keyframes spin { to { transform: rotate(360deg); } }

.info-sidebar { position: sticky; top: 100px; }
.info-card {
    background: #0a2540;
    border-radius: 24px;
    padding: 40px;
    color: #fff;
}
.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
    width: 44px; height: 44px;
    background: rgba(5,115,178,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-label { font-size: 13px; color: #94a3b8; margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: #fff; }
.info-value a { color: #5bb8e8; transition: color 0.2s; }
.info-value a:hover { color: #fff; }

.form-success {
    display: none;
    text-align: center;
    padding: 48px 32px;
}
.form-success.active { display: block; }
.form-success-icon {
    width: 72px; height: 72px;
    background: #e6f7ee;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.form-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.form-success p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-wide { grid-column: span 2; }
    .service-card-wide .service-inner { grid-template-columns: auto 1fr; }
    .service-card-wide .service-features { grid-column: span 2; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .form-layout { grid-template-columns: 1fr; }
    .info-sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-wide { grid-column: span 1; }
    .service-card-wide .service-inner { grid-template-columns: 1fr; }
    .service-card-wide .service-features { grid-column: span 1; }
    .why-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { flex-direction: column; }
    .hero .container { flex: none; max-width: 100%; }
    .hero-visual { display: none; }
    .hero-content { margin-right: 0; max-width: 100%; padding-top: 100px; padding-bottom: 20px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .notice-banner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-card { padding: 32px 24px; }
    .info-card { padding: 32px 24px; }
    .page-header { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
    .industries-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; justify-content: center; }
}
