:root {
    --brand-blue: #0f4c81;
    --brand-green: #2ecc71;
    --brand-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --card-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.01);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6%;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    padding: 5px 0;
}

.nav-links a:not(.cta-btn):hover { color: var(--brand-green); }

.cta-btn {
    background: var(--brand-blue);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: stretch;
    position: relative;
    background: #060e1e;
    color: white;
    overflow: hidden;
}

/* Thin horizontal ruled lines — technical/blueprint feel */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 47px,
        rgba(255,255,255,0.022) 47px,
        rgba(255,255,255,0.022) 48px
    );
    pointer-events: none;
    z-index: 0;
}

/* Green left-edge accent bar */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: var(--brand-green);
    border-radius: 0 2px 2px 0;
    z-index: 3;
    pointer-events: none;
}

/* Left column */
.hero-left {
    flex: 0 0 54%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 6% 60px 8%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--brand-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -2px;
}

/* Green stamp on accent phrase */
.hero-accent {
    background: var(--brand-green);
    color: var(--brand-dark);
    padding: 2px 10px 5px;
    display: inline;
    font-weight: 800;
}

.hero p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.8rem;
    font-weight: 400;
    line-height: 1.75;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-outline {
    background: transparent;
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.hero-btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

/* Trust strip below buttons */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.5);
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-item i {
    color: var(--brand-green);
    font-size: 0.82rem;
}

/* Right column — photo */
.hero-right {
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 9s ease;
}

.hero:hover .hero-image-frame img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6,14,30,0.55) 0%, transparent 35%),
        linear-gradient(to top, rgba(6,14,30,0.65) 0%, transparent 45%);
}

/* Floating stat badge on image */
.hero-image-badge {
    position: absolute;
    bottom: 2.8rem;
    left: 5rem;
    background: var(--brand-green);
    color: var(--brand-dark);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 8px 28px rgba(46,204,113,0.4);
}

.hib-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.hib-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    border-left: 2px solid rgba(15,23,42,0.25);
    padding-left: 1rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--brand-dark);
    padding: 2.5rem 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
    text-align: center;
    padding: 1.2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-item i {
    font-size: 1.6rem;
    color: var(--brand-green);
    margin-bottom: 0.6rem;
    display: block;
}

.stat-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section { padding: 7rem 8% 5rem; }

.section-tag {
    color: var(--brand-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 4rem;
    line-height: 1.7;
}

/* About / Philosophy */
#about { background: var(--bg-light); }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--brand-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.about-card:hover::before { transform: scaleX(1); }

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 2.2rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    background: rgba(15,76,129,0.1);
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--brand-dark);
}

.about-card p { color: var(--text-light); }

/* Services */
#services { background: var(--white); }

.service-item {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 8rem;
}

.service-item:last-child { margin-bottom: 0; }

.service-content { flex: 1; min-width: 300px; }

.service-image {
    flex: 1;
    min-width: 300px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.22);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.service-item:hover .service-image img { transform: scale(1.07); }

.service-tag {
    display: inline-block;
    background: rgba(15,76,129,0.1);
    color: var(--brand-blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.service-content h3 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-dark);
}

.feature-item i { color: var(--brand-green); font-size: 0.9rem; flex-shrink: 0; }

.service-link {
    color: var(--brand-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover { gap: 14px; color: var(--brand-green); }

/* Operational Strengths */
#strengths { background: var(--bg-light); }

.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.strength-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.strength-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--brand-blue), #1a6aaf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.strength-icon i { color: white; font-size: 1.3rem; }

.strength-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
}

.strength-card p { color: var(--text-light); font-size: 0.92rem; }

/* HSE Section */
#hse {
    background: #0c2a4a;
    color: white;
    padding: 7rem 8%;
}

.hse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

#hse .section-tag { color: var(--brand-green); }
#hse .section-title { color: white; margin-bottom: 1.5rem; }

.hse-intro {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    font-size: 1.02rem;
}

.hse-objectives {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hse-objectives li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
}

.hse-objectives li i {
    color: var(--brand-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.hse-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hse-pillar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.2rem;
}

.hse-pillar i {
    color: var(--brand-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hse-pillar span {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hse-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 560px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    position: relative;
}

.hse-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hse-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--brand-green);
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Target Sectors */
#sectors { background: var(--white); }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.sector-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.sector-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(15,76,129,0.12);
}

.sector-card:hover .sector-icon { background: var(--brand-blue); }
.sector-card:hover .sector-icon i { color: white; }

.sector-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.sector-icon i {
    font-size: 1.5rem;
    color: var(--brand-blue);
    transition: var(--transition);
}

.sector-card h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.4;
}

/* Contact Form */
#contact {
    background: var(--brand-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#2ecc71 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

#contact .section-title { color: white; }
#contact .section-subtitle { color: rgba(255,255,255,0.6); }

.form-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

#joofda-sheet-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: inherit;
    background: #f8fafc;
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
}

.full-width { grid-column: span 2; }

.form-submit-wrap { grid-column: span 2; margin-top: 0.5rem; }

/* Footer */
footer {
    background: #050a14;
    color: #94a3b8;
    padding: 6rem 8% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h4 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand h4 span { color: var(--brand-green); }

.footer-brand p { line-height: 1.7; opacity: 0.75; margin-bottom: 1.5rem; font-size: 0.95rem; }

.footer-col h5 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.92rem;
}
.footer-links a:hover { color: var(--brand-green); padding-left: 5px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.footer-contact-item i { color: var(--brand-green); margin-top: 3px; flex-shrink: 0; }

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-item a:hover { color: var(--brand-green); }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
    color: white;
    background: rgba(255,255,255,0.08);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.social-links a:hover { background: var(--brand-blue); transform: translateY(-3px); }

.copyright { text-align: center; padding-top: 2rem; font-size: 0.85rem; opacity: 0.6; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white;
    padding: 15px 25px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-weight: 700;
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
    z-index: 999; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 15px 25px rgba(37,211,102,0.4); }

/* Success Modal */
#success-modal {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,0.95); z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: white; padding: 3rem;
    border-radius: 20px; text-align: center;
    max-width: 450px; width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Responsive */
@media (max-width: 1100px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .hse-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hse-image-wrap { height: 380px; }
    .hero-left { flex: 0 0 56%; padding: 100px 4% 60px 7%; }
    .hero-image-frame { clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%); }
}

@media (max-width: 1024px) {
    nav { padding: 1rem 5%; }
    section { padding: 5rem 5% 4rem; }
    #hse { padding: 5rem 5%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .hero-left {
        flex: none;
        width: 100%;
        padding: 120px 6% 50px;
        text-align: center;
    }
    .hero p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-right { flex: none; height: 320px; width: 100%; }
    .hero-image-frame { clip-path: none; position: relative; height: 100%; }
    .hero-image-badge { left: 2rem; bottom: 1.5rem; }
    .brand-logo { height: 50px; }
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: #0f172a;
        flex-direction: column; align-items: flex-start;
        padding: 6rem 2.5rem; gap: 2rem;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.15rem; display: block; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
    .nav-links .cta-btn { text-align: center; border: none; padding-bottom: 12px; }
    .service-item { gap: 2.5rem; }
    .service-image { height: 360px; }
    .hse-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-left { padding: 110px 5% 45px; }
    .hero h1 { font-size: 2.6rem; letter-spacing: -1px; }
    .hero-right { height: 260px; }
    .hero-image-badge { left: 1.5rem; bottom: 1rem; padding: 0.8rem 1.1rem; }
    .hib-number { font-size: 2.2rem; }
    .hib-text { font-size: 0.72rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 5%; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    #joofda-sheet-form { grid-template-columns: 1fr; }
    #joofda-sheet-form .full-width { grid-column: 1; }
    .form-submit-wrap { grid-column: 1; }
    .form-container { padding: 2.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; width: 60px; height: 60px; justify-content: center; }
    .hse-pillars { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .brand-logo { height: 45px; }
    .hero h1 { font-size: 2.1rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }
    .sectors-grid { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
}
