:root {
    --blue-600: #0072CE;
    --blue-700: #005FAD;
    --blue-800: #004A8A;
    --blue-900: #003366;
    --blue-50: #EBF5FF;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #7C8CA0;
    --slate-500: #546378;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --white: #FFFFFF;
    --accent: #0072CE;
    --accent-hover: #005FAD;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--slate-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--slate-900);
    line-height: 1.2;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-600);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}
.logo-icon svg { position: relative; z-index: 1; }
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}
.logo-text span { color: var(--blue-600); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links a.active { color: var(--blue-600); }
.nav-cta {
    background: var(--blue-600) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    margin: 6px 0;
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 40%, var(--slate-900) 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: var(--blue-600);
    border-radius: 0 50% 50% 0;
    opacity: 0.35;
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-text h1 em {
    font-style: normal;
    color: #60B5FF;
}
.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--blue-700);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-primary-blue {
    background: var(--blue-600);
    color: var(--white);
}
.btn-primary-blue:hover {
    background: var(--blue-700);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}
.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    margin-top: 4px;
    font-weight: 500;
}

/* ── SECTIONS ── */
.services { padding: 100px 24px; background: var(--white); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.section-header p {
    font-size: 17px;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--blue-600);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon svg { color: var(--blue-600); }
.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.65;
}
.service-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 4px 12px;
    border-radius: 6px;
}

/* ── PROCESS ── */
.process { padding: 100px 24px; background: var(--slate-50); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}
.process-step { text-align: center; position: relative; }
.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--blue-600);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 18px;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ── WHY ── */
.why { padding: 100px 24px; background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-text h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }
.why-text > p { font-size: 17px; color: var(--slate-500); margin-bottom: 36px; line-height: 1.7; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--blue-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-point h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--slate-500); line-height: 1.55; }

.why-visual {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    border-radius: 20px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
}
.why-visual::before {
    content: '';
    position: absolute;
    top: -20%; right: -20%;
    width: 50%; height: 80%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}
.value-item:last-child { border-bottom: none; }
.value-check {
    width: 28px; height: 28px; min-width: 28px;
    background: rgba(96,181,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-item span { color: rgba(255,255,255,0.95); font-size: 15px; font-weight: 500; }

/* ── INDUSTRIES ── */
.industries { padding: 80px 24px; background: var(--slate-50); }
.industries-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}
.industry-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.industry-icon {
    width: 64px; height: 64px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}
.industry-icon:hover { transform: translateY(-4px); }
.industry-item span { font-size: 14px; font-weight: 600; color: var(--slate-600); }

/* ── CTA ── */
.cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 120%; height: 80%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; }
.cta p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 36px; line-height: 1.7; }
.cta .btn-primary { font-size: 16px; padding: 16px 36px; }

/* ── FOOTER ── */
.footer { background: var(--slate-900); padding: 60px 24px 36px; }
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--slate-400); line-height: 1.7; max-width: 320px; }
.footer h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #A8B8CC; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1140px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 13px; color: #8899AB; }

/* ── BLOG ── */
.page-header {
    margin-top: 72px;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 40%, var(--slate-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 60%; height: 160%;
    background: var(--blue-600);
    border-radius: 0 50% 50% 0;
    opacity: 0.2;
}
.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}
.page-header p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-list {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}
.blog-card {
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    background: var(--white);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.blog-card-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-400);
}
.blog-card-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 2px 10px;
    border-radius: 12px;
}
.blog-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.blog-card h2 a {
    text-decoration: none;
    color: var(--slate-900);
    transition: color 0.2s;
}
.blog-card h2 a:hover { color: var(--blue-600); }
.blog-card p {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}
.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    transition: gap 0.2s;
}
.blog-card .read-more:hover { gap: 10px; }

/* ── BLOG POST ── */
.blog-post {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}
.blog-post-header { margin-bottom: 40px; }
.blog-post-header h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--slate-900);
}
.blog-post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
    color: var(--slate-400);
}
.blog-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-700);
}
.blog-post-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}
.blog-post-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content blockquote {
    border-left: 4px solid var(--blue-600);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--blue-50);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--slate-600);
}
.blog-post-content code {
    background: var(--slate-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 15px;
}
.blog-post-content pre {
    background: var(--slate-900);
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}
.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}
.blog-post-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}
.blog-post-content a { color: var(--blue-600); }
.blog-post-content a:hover { color: var(--blue-700); }

.blog-post-nav {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
    display: flex;
    justify-content: space-between;
}
.blog-post-nav a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}
.blog-post-nav a:hover { color: var(--blue-700); }

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

/* ── PAGINATION ── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.pagination a {
    color: var(--slate-600);
    border: 1px solid var(--slate-200);
}
.pagination a:hover {
    background: var(--blue-50);
    color: var(--blue-600);
    border-color: var(--blue-600);
}
.pagination .active {
    background: var(--blue-600);
    color: var(--white);
    border: 1px solid var(--blue-600);
}

/* ── ACCESSIBILITY ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 200;
    padding: 12px 24px;
    background: var(--blue-600);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Focus indicators - visible on all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--blue-600);
    outline-offset: 2px;
    border-radius: 4px;
}
/* Higher contrast focus for dark backgrounds */
.hero a:focus-visible,
.cta a:focus-visible,
.why-visual a:focus-visible,
.footer a:focus-visible,
.page-header a:focus-visible,
.nav-cta:focus-visible {
    outline-color: #60B5FF;
}

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

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stat-card,
    .service-card,
    .industry-icon,
    .btn-primary,
    .btn-outline,
    .nav-cta,
    .blog-card,
    .read-more {
        transition: none !important;
        transform: none !important;
    }
    .service-card::before { transition: none; }
    html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { max-width: 400px; margin: 40px auto 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        padding: 24px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
    }
    .hero-text h1 { font-size: 34px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-number { font-size: 28px; }
    .section-header h2, .why-text h2, .cta h2 { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .industries-row { gap: 28px; }
    .page-header h1 { font-size: 32px; }
    .blog-post-header h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
}
