/* Dimal Asia Pacific – dimal.com.my */
:root {
    --brand: #DF2B2A;
    --brand-dark: #B82221;
    --brand-light: #F4BFBE;
    --brand-lighter: #FBE9E9;
    --dark: #26292C;
    --dark-2: #3a3d40;
    --bg: #fff;
    --bg-alt: #F5F5F5;
    --bg-cream: #FAF8F6;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-light: #999;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-brand: 0 4px 16px rgba(223, 43, 42, 0.25);
    --max: 1200px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: ui-serif, Georgia, 'Times New Roman', Times, serif;
    --radius: 8px;
    --radius-lg: 12px;
    --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { border: none; outline: none; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
img, picture { max-width: 100%; height: auto; display: block; }
picture img { width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, a, input, select, textarea { font-family: inherit; }

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p { font-size: 1.0625rem; line-height: 1.75; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 0;
    background: var(--brand);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
}
.skip-link:focus {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
}

/* Focus */
*:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 2rem; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.875rem 1.75rem; border-radius: 4px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: background 0.2s ease; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--brand); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-menu a { font-weight: 500; color: var(--text); transition: color 0.2s; position: relative; }
.nav-menu a:hover { color: var(--brand); }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--brand); transition: width 0.3s cubic-bezier(0.4,0,0.2,1); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 0.75rem 1.5rem !important; border-radius: 4px; transition: background 0.2s; }
.nav-cta:hover { background: var(--brand-dark) !important; }
.nav-cta::after { display: none !important; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-toggle span { width: 24px; height: 3px; background: var(--text); transition: transform 0.2s; }
.mobile-menu-toggle:hover span { background: var(--brand); }

/* Lang switcher */
#lang-switcher { position: relative; margin-left: 1rem; }
#lang-switcher .lang-trigger {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.65rem; font-size: 0.875rem; font-weight: 500;
    color: var(--text); background: none; border: 1px solid var(--border);
    border-radius: 4px; cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
#lang-switcher .lang-trigger:hover { border-color: var(--brand); color: var(--brand); }
#lang-switcher .lang-trigger::after {
    content: ''; width: 0; height: 0;
    border: 4px solid transparent;
    border-top-color: currentColor;
    margin-left: 0.25rem; margin-top: 3px;
}
#lang-switcher .lang-menu {
    position: absolute; top: calc(100% + 4px); left: 0; min-width: 100%;
    background: #fff; border: 1px solid var(--border); border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); padding: 0.25rem 0;
    display: none; z-index: 100;
}
#lang-switcher.open .lang-menu { display: block; }
#lang-switcher .lang-menu button {
    display: block; width: 100%; padding: 0.5rem 0.75rem;
    font-size: 0.875rem; text-align: left; background: none;
    border: none; cursor: pointer; color: var(--text); transition: background 0.15s;
}
#lang-switcher .lang-menu button:hover { background: var(--bg-alt); }
#lang-switcher .lang-menu button[aria-current="true"] { color: var(--brand); font-weight: 600; }

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + 5rem) 2rem 6rem;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    min-height: 85vh; overflow: hidden; text-align: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover; background-position: center;
    filter: brightness(0.35);
}
.hero-center { position: relative; z-index: 1; max-width: 800px; }
.hero-logo { margin: 0 auto 2rem; height: 80px; width: auto; filter: brightness(0) invert(1); }
.hero h1 { color: #fff; font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero-center p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.25rem; line-height: 1.6; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-badge { display: inline-block; background: var(--brand); color: #fff; padding: 0.35rem 0.9rem; border-radius: 4px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Value props (3 cards) */
.value-section { background: var(--bg-alt); }
.value-section h2 { text-align: center; margin-bottom: 0.5rem; }
.value-section > .container > p { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.125rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.value-card { background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card img { width: 100%; height: 200px; object-fit: cover; }
.value-card-body { padding: 1.5rem; }
.value-card-body h3 { color: var(--brand); margin-bottom: 0.5rem; font-size: 1.25rem; }
.value-card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* Industries grid */
.industries-section { background: var(--bg); }
.industries-section h2 { text-align: center; margin-bottom: 0.5rem; }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.industry-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 3/4;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.industry-card:hover img { transform: scale(1.06); }
.industry-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(38,41,44,0.92) 0%, rgba(38,41,44,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.industry-card-overlay h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.4rem; }
.industry-card-overlay p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.5; }
.industry-card-overlay a { color: var(--brand-light); font-size: 0.875rem; font-weight: 600; margin-top: 0.75rem; display: inline-block; }

/* CTA banner */
.cta-section {
    position: relative; overflow: hidden;
    background: var(--brand); padding: 5rem 2rem;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('images/home-cta.jpg');
    background-size: cover; background-position: center;
    opacity: 0.15;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.125rem; line-height: 1.7; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 3.5rem 2rem 2rem; }
.footer-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start;
}
.footer-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer-details p { margin-bottom: 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.footer-details a { color: var(--brand-light); }
.footer-details a:hover { text-decoration: underline; }
.footer-bottom {
    grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem; padding-top: 2rem; margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    background: var(--dark); color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 1.125rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Breadcrumb */
.breadcrumb { padding: 1rem 2rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: var(--max); margin: 0 auto; font-size: 0.875rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--brand); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.5rem; }

/* Content prose */
.prose h2 { color: var(--brand); margin-bottom: 1rem; margin-top: 2rem; }
.prose h3 { margin-bottom: 0.5rem; margin-top: 1.5rem; color: var(--text); }
.prose p { color: var(--text-muted); margin-bottom: 1rem; }
.prose ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.prose ul li { margin: 0.35rem 0; }

/* About page */
.about-section { background: var(--bg); }
.about-narrow { max-width: 860px; }
.about-h2 { color: var(--brand); font-size: 2rem; margin-bottom: 1rem; }
.about-p { color: var(--text-muted); margin-bottom: 1rem; }
.about-bullets { list-style: none; margin: 1rem 0; }
.about-bullets li { position: relative; padding-left: 1.75rem; margin: 0.65rem 0; color: var(--text-muted); }
.about-bullets li::before { content: "•"; position: absolute; left: 0; top: -0.05rem; color: var(--brand); font-size: 1.4rem; line-height: 1; }

.capabilities-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem; }
.cap-item { background: var(--bg-alt); border-radius: var(--radius); padding: 1rem 1.25rem; border-left: 3px solid var(--brand); color: var(--text-muted); font-size: 0.95rem; }

.testing-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.9rem; }
.testing-table th { background: var(--brand); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.testing-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.testing-table tr:nth-child(even) td { background: var(--bg-alt); }
.testing-table-wrapper { overflow-x: auto; margin-top: 1.5rem; }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 2rem 0; }
.stat-card { text-align: center; padding: 2rem 1.5rem; background: var(--brand); border-radius: var(--radius-lg); }
.stat-card .stat-num { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-card .stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.5rem; }

/* Products index */
.products-index-section { background: var(--bg-alt); }
.products-index-section h1 { margin-bottom: 1rem; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.prod-index-card {
    background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
}
.prod-index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prod-index-card-img { height: 160px; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.prod-index-card-img span { font-size: 3rem; }
.prod-index-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prod-index-card-body h3 { color: var(--brand); margin-bottom: 0.5rem; }
.prod-index-card-body p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 1rem; }
.prod-index-card-body a { color: var(--brand); font-weight: 600; font-size: 0.9rem; }
.prod-index-card-body a:hover { text-decoration: underline; }

/* Product sub-page */
.product-detail-section { background: var(--bg); }
.product-intro { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.75; max-width: 800px; }
.category-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin: 2rem 0; }
.category-card { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 1.5rem 2rem; border-top: 4px solid var(--brand); }
.category-card h3 { color: var(--brand); margin-bottom: 0.5rem; font-size: 1.1rem; }
.category-card .cat-name { font-weight: 700; margin-bottom: 0.25rem; }
.category-card .cat-detail { color: var(--text-muted); font-size: 0.9rem; }

.benefits-list { list-style: none; margin: 1.5rem 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.benefits-list li { background: var(--bg-alt); padding: 0.75rem 1rem; border-radius: var(--radius); color: var(--text-muted); font-size: 0.95rem; position: relative; padding-left: 2rem; }
.benefits-list li::before { content: '✓'; position: absolute; left: 0.75rem; color: var(--brand); font-weight: 700; }

.apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.5rem 0; }
.app-tag { background: var(--brand); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; text-align: center; }

.downloads-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.downloads-section h2 { margin-bottom: 1.5rem; }
.downloads-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.download-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 0.75rem 1.25rem;
    font-size: 0.9rem; font-weight: 600; color: var(--text);
    transition: background 0.2s, border-color 0.2s;
}
.download-btn:hover { background: var(--brand-lighter); border-color: var(--brand); color: var(--brand); }
.download-btn .dl-icon { width: 20px; height: 20px; }

/* Industries index */
.industries-index-section { background: var(--bg-alt); }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.ind-index-card {
    background: var(--bg); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
}
.ind-index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ind-index-card img { width: 100%; height: 180px; object-fit: cover; }
.ind-index-card-body { padding: 1.25rem; }
.ind-index-card-body h3 { color: var(--brand); margin-bottom: 0.4rem; font-size: 1.05rem; }
.ind-index-card-body p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.55; margin-bottom: 0.75rem; }
.ind-index-card-body a { color: var(--brand); font-size: 0.875rem; font-weight: 600; }

/* Industry sub-page */
.industry-detail-section { background: var(--bg); }
.client-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.client-region h4 { color: var(--brand); font-size: 1rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--brand-light); }
.client-region ul { list-style: none; }
.client-region ul li { padding: 0.3rem 0; color: var(--text-muted); font-size: 0.9rem; border-bottom: 1px solid var(--border-light); }
.client-region ul li:last-child { border-bottom: 0; }

/* Contact */
.contact-hero-section { background: var(--dark); padding: calc(var(--nav-h) + 4rem) 2rem 4rem; text-align: center; }
.contact-hero-section h1 { color: #fff; }
.contact-hero-section p { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 1.125rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.contact-details-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-hq h2 { color: var(--brand); margin-bottom: 1.25rem; }
.contact-hq p { color: var(--text-muted); margin-bottom: 0.65rem; font-size: 0.9625rem; }
.contact-hq a { color: var(--brand); }
.contact-hq a:hover { text-decoration: underline; }

.agents-section { background: var(--bg-alt); }
.agents-section h2 { margin-bottom: 0.5rem; }
.agents-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.agent-card { background: var(--bg); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.agent-card h4 { color: var(--brand); margin-bottom: 0.5rem; }
.agent-card p { color: var(--text-muted); font-size: 0.9rem; }

.contact-form-section { background: var(--bg-alt); }
.contact-section-title { color: var(--brand); margin-bottom: 1.5rem; font-size: 2rem; text-align: center; }
.form-intro { text-align: center; color: var(--text-muted); margin: 0 auto 2.5rem; max-width: 600px; }
.enquiry-steps { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.step-item { text-align: center; flex: 1; min-width: 140px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.step-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.step-item p { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow { align-self: center; font-size: 1.5rem; color: var(--border); padding-top: 0.5rem; }

.quote-form { max-width: 640px; margin: 0 auto; background: var(--bg); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.875rem; border: 1px solid var(--border);
    border-radius: var(--radius); font: inherit; transition: all 0.2s; background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--brand); outline: none;
    box-shadow: 0 0 0 3px rgba(223,43,42,0.1);
}
.quote-form button { width: 100%; padding: 1rem; margin-top: 0.5rem; font-size: 1.0625rem; }
.form-message { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); display: none; }
.form-message.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Responsive */
@media (max-width: 1024px) {
    .value-grid { grid-template-columns: repeat(2,1fr); }
    .industries-grid { grid-template-columns: repeat(2,1fr); }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .ind-grid { grid-template-columns: repeat(2,1fr); }
    .client-grid { grid-template-columns: repeat(2,1fr); }
    .agents-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat-row { grid-template-columns: repeat(3,1fr); }
    .category-grid { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 1rem; }
    .nav-menu {
        position: fixed; top: var(--nav-h); left: -100%; width: 100%;
        flex-direction: column; background: var(--bg); padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: left 0.3s; gap: 1rem;
    }
    .nav-menu.active { left: 0; }
    .mobile-menu-toggle { display: flex; }
    .hero { min-height: 70vh; padding: calc(var(--nav-h) + 3rem) 1rem 3rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero-center p { font-size: 1rem; }
    .value-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .client-grid { grid-template-columns: 1fr; }
    .agents-grid { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: 1fr; gap: 1rem; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .benefits-list { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-inner > .footer-logo { justify-self: center; }
    .footer-bottom { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .container { padding: 0 1rem; }
    .section { padding: 2.5rem 1rem; }
    .enquiry-steps { flex-direction: column; align-items: center; }
    .step-arrow { display: none; }
}
