@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255,255,255,0.7);
    --bg-card-hover: rgba(255,255,255,0.9);
    --glass-border: rgba(0,0,0,0.06);
    --glass-blur: 20px;
    --accent-cyan: #00B4D8;
    --accent-blue: #2563EB;
    --accent-purple: #7C3AED;
    --accent-gradient: linear-gradient(135deg, #00B4D8, #2563EB);
    --accent-gradient-2: linear-gradient(135deg, #2563EB, #7C3AED);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-soft: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-glow: 0 8px 40px rgba(0,180,216,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%; height: 72px;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(15,23,42,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 40px; }
.nav-brand span { font-size: 1.25rem; font-weight: 700; color: #fff; }
.nav-brand .brand-cloud { color: var(--accent-cyan); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.7); font-weight: 500;
    padding: 8px 16px; border-radius: var(--radius-sm);
    transition: var(--transition); font-size: 0.9rem;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
    background: var(--accent-gradient); color: #fff !important; border-radius: var(--radius-xl) !important;
    padding: 8px 24px !important; font-weight: 600 !important;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(0,180,216,0.3); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: #fff;
    margin: 6px 0; transition: var(--transition); border-radius: 2px;
}

/* ── HERO SECTION ────────────────────────────── */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center; padding: 120px 5% 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, var(--bg-secondary) 100%);
    color: var(--text-primary);
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,180,216,0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(37,99,235,0.05), transparent),
        radial-gradient(ellipse 50% 30% at 10% 60%, rgba(124,58,237,0.04), transparent);
    z-index: 0;
}
.hero-content {
    position: relative; z-index: 1; max-width: 820px; width: 100%;
    margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.hero-logo {
    margin-left: auto; margin-right: auto;
    margin-bottom: 2.5rem;
    display: inline-flex; justify-content: center; align-items: center;
    padding: 1.5rem 2.5rem;
    background: #0f172a;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-logo img {
    width: clamp(280px, 40vw, 450px);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,180,216,0.25));
    animation: float-logo 6s ease-in-out infinite;
}
@keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-badge {
    margin-left: auto; margin-right: auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 6px 20px; border-radius: var(--radius-xl);
    background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.25);
    color: var(--accent-cyan); font-size: 0.85rem; font-weight: 600;
    margin-bottom: 2rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-cyan); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; color: var(--text-primary); }
.hero h1 .gradient-text {
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── GRID BACKGROUND ────────────────────────── */
.grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 20%, transparent 100%);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-xl);
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: var(--accent-gradient); color: #fff;
    box-shadow: 0 4px 16px rgba(0,180,216,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,180,216,0.3); }
.btn-outline {
    background: transparent; color: var(--text-primary);
    border: 1.5px solid #e2e8f0;
}
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: rgba(37,99,235,0.04); }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

/* ── SECTIONS ────────────────────────────────── */
.section {
    padding: 100px 5%; position: relative;
}
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header .overline {
    display: inline-block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--accent-blue); margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--text-primary); }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* ── GRADIENT TEXT ────────────────────────────── */
.gradient-text {
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── CARDS ───────────────────────────────────── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0,180,216,0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 1.5rem;
    background: rgba(0,180,216,0.08); color: var(--accent-cyan);
}
.card-icon.purple { background: rgba(124,58,237,0.06); color: var(--accent-purple); }
.card-icon.blue { background: rgba(37,99,235,0.06); color: var(--accent-blue); }
.glass-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.glass-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ── GRID LAYOUTS ────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── STATS ───────────────────────────────────── */
.stats-row {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
    padding: 3rem 0; margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2.5rem; font-weight: 800;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; font-weight: 500; }

/* ── PRODUCT HIGHLIGHT ───────────────────────── */
.product-highlight {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.product-highlight.reverse { direction: rtl; }
.product-highlight.reverse > * { direction: ltr; }
.product-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 3rem;
}
.product-visual::before {
    content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%);
    filter: blur(40px);
}
.product-visual img { position: relative; z-index: 1; max-width: 180px; filter: drop-shadow(0 8px 30px rgba(0,180,216,0.2)); }
.product-info h3 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.product-info p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.8; }

/* ── FEATURE LIST ────────────────────────────── */
.feature-list { list-style: none; display: grid; gap: 12px; margin-bottom: 2rem; }
.feature-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-secondary); font-size: 0.95rem;
}
.feature-list li::before {
    content: '✓'; display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(0,180,216,0.08); color: var(--accent-cyan);
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

/* ── MODULES GRID (Sijil page) ───────────────── */
.module-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition); position: relative; overflow: hidden;
}
.module-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--accent-gradient); opacity: 0; transition: var(--transition);
}
.module-card:hover { transform: translateY(-4px); border-color: rgba(0,180,216,0.15); box-shadow: var(--shadow-glow); }
.module-card:hover::after { opacity: 1; }
.module-icon { font-size: 2rem; margin-bottom: 1rem; }
.module-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.module-card p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; }

/* ── TECH BADGES ─────────────────────────────── */
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.tech-badge {
    padding: 6px 16px; border-radius: var(--radius-xl);
    background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.1);
    color: var(--accent-blue); font-size: 0.8rem; font-weight: 500;
}

/* ── PLATFORM STRIP ──────────────────────────── */
.platform-strip {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    padding: 2rem 0; margin-top: 2rem;
}
.platform-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
    transition: var(--transition);
}
.platform-item:hover { color: var(--accent-blue); }
.platform-item .icon { font-size: 2rem; }

/* ── ABOUT / VALUES ──────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.8; }
.value-card {
    display: flex; gap: 1rem; padding: 1.5rem;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.value-card:hover { border-color: rgba(0,180,216,0.12); box-shadow: var(--shadow-card); }
.value-card .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.value-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-card {
    display: flex; gap: 1rem; padding: 1.5rem;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(0,180,216,0.12); box-shadow: var(--shadow-card); }
.contact-info-card .icon { font-size: 1.25rem; color: var(--accent-blue); flex-shrink: 0; margin-top: 4px; }
.contact-info-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-info-card a { color: var(--accent-blue); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 16px;
    background: var(--bg-secondary); border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    transition: var(--transition); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
    background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
    padding: 60px 5% 30px;
    border-top: none;
    background: #0f172a;
    color: #e2e8f0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 300px; line-height: 1.7; }
.footer h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-cyan); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4); font-size: 0.85rem;
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.4); font-size: 1.1rem; transition: var(--transition); }
.social-links a:hover { color: var(--accent-cyan); }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
    text-align: center; padding: 80px 5%;
    background: linear-gradient(135deg, rgba(0,180,216,0.04), rgba(37,99,235,0.04));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); }
.cta-banner p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (Inner pages) ─────────────────── */
.page-hero {
    padding: 140px 5% 60px; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(180deg, #f0f9ff, var(--bg-primary));
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0,180,216,0.06), transparent);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; position: relative;
    margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--text-primary);
}
.page-hero p { color: var(--text-secondary); font-size: 1.15rem; max-width: 600px; margin: 0 auto; position: relative; }

/* ── ARCHITECTURE DIAGRAM ────────────────────── */
.arch-diagram {
    display: flex; justify-content: center; align-items: center;
    gap: 2rem; flex-wrap: wrap; padding: 2rem 0;
}
.arch-layer {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 1.5rem 2rem; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--glass-border);
    min-width: 160px; text-align: center; box-shadow: var(--shadow-soft);
}
.arch-layer .layer-name { font-weight: 700; font-size: 0.95rem; }
.arch-layer .layer-desc { color: var(--text-muted); font-size: 0.8rem; }
.arch-arrow { color: var(--accent-blue); font-size: 1.5rem; font-weight: 700; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fade-in-up 0.6s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ── FLOATING PARTICLES (hero bg) ────────────── */
.particles {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.particle {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent-cyan); opacity: 0.2;
    animation: float-particle linear infinite;
}
@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ── SERVICES PAGE ───────────────────────────── */
.service-detail-card {
    display: grid; grid-template-columns: auto 1fr; gap: 2rem;
    padding: 2.5rem; margin-bottom: 2rem;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.service-detail-card:hover { border-color: rgba(0,180,216,0.12); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.service-detail-card .service-icon { font-size: 2.5rem; }
.service-detail-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.service-detail-card p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
    padding: 4px 12px; border-radius: var(--radius-xl); font-size: 0.78rem;
    background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.1);
    color: var(--accent-blue); font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .product-highlight, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .product-highlight.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        flex-direction: column; background: rgba(15,23,42,0.98);
        backdrop-filter: blur(20px); padding: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; }
    .nav-toggle { display: block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-row { gap: 2rem; }
    .stat-value { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .service-detail-card { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .section { padding: 60px 5%; }
    .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}
