/* ============================================
   PUNE HOME SERVICE - Premium Design System
   ============================================ */

:root {
    --primary: #0A5CFF;
    --primary-dark: #0043CC;
    --primary-light: #3D7FFF;
    --accent: #00B4D8;
    --success: #25D366;
    --success-dark: #1DA851;
    --warning: #FF8C00;
    --danger: #FF3B30;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --bg-body: #FFFFFF;
    --bg-section: #F1F5F9;
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --shadow-xs: 0 1px 3px rgba(10,92,255,0.06);
    --shadow-sm: 0 2px 8px rgba(10,92,255,0.08);
    --shadow-md: 0 4px 20px rgba(10,92,255,0.12);
    --shadow-lg: 0 8px 40px rgba(10,92,255,0.16);
    --shadow-xl: 0 12px 48px rgba(10,92,255,0.20);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 15px; border: none; cursor: pointer;
    transition: var(--transition); font-family: inherit; white-space: nowrap;
    text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: var(--success); color: #fff; box-shadow: var(--shadow-md); }
.btn-whatsapp:hover { background: var(--success-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-submit { width: 100%; justify-content: center; padding: 18px; font-size: 17px; }
.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: var(--shadow-sm); animation: slideDown 0.5s ease; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.header-top {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; padding: 8px 0; font-size: 13px;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.header-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.header-contact a { color: #fff; display: flex; align-items: center; gap: 6px; transition: opacity 0.3s; font-weight: 500; }
.header-contact a:hover { opacity: 0.85; }
.header-hours { font-size: 12px; opacity: 0.9; display: flex; align-items: center; gap: 6px; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; color: var(--primary); display: flex; flex-direction: column; line-height: 1.1; }
.logo-sub { font-size: 11px; font-weight: 500; color: var(--text-secondary); font-family: 'DM Sans', sans-serif; letter-spacing: 0.3px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 14px; color: var(--text-secondary); transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.header-cta { display: flex; gap: 10px; }

.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--text-primary); cursor: pointer; }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 100px 0 80px; overflow: hidden;
    background: linear-gradient(135deg, #0A5CFF 0%, #0043CC 50%, #002D8A 100%);
    color: #fff;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,180,216,0.15) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { animation: fadeInUp 0.8s ease; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 100px; font-size: 13px;
    font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge i { color: #FFD700; }
.hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(34px, 5vw, 54px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(17px, 2.5vw, 21px); opacity: 0.92; font-weight: 400; margin-bottom: 32px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn { font-size: 16px; padding: 16px 32px; }

.hero-image { animation: fadeInRight 0.8s ease 0.2s both; position: relative; }
.hero-image img { border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-image::after {
    content: ''; position: absolute; inset: -6px; border-radius: calc(var(--radius-xl) + 6px);
    border: 2px solid rgba(255,255,255,0.15); pointer-events: none;
}

.trust-strip {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-icon { font-size: 28px; opacity: 0.9; }
.trust-label { font-size: 14px; font-weight: 700; }
.trust-sublabel { font-size: 11px; opacity: 0.7; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ===== SECTION COMMONS ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
    color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-label::before, .section-label::after { content: ''; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; color: var(--text-primary); margin-bottom: 16px; line-height: 1.15;
}
.section-subtitle { color: var(--text-secondary); font-size: 17px; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--bg-body); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition); position: relative;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0);
    transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-image { width: 100%; height: 220px; overflow: hidden; position: relative; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-image .service-tag {
    position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff;
    padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600;
}

.service-card-body { padding: 28px; }
.service-card-body h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.service-card-body p { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.service-issues { list-style: none; }
.service-issues li {
    padding: 7px 0; color: var(--text-secondary); display: flex; align-items: center;
    gap: 10px; font-size: 14px;
}
.service-issues li i { color: var(--success); font-size: 12px; flex-shrink: 0; }
.service-card-footer { padding: 0 28px 24px; }
.service-card-footer a { font-size: 14px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.service-card-footer a:hover { gap: 10px; }

/* ===== WHY CHOOSE ===== */
.why-choose { padding: 100px 0; background: var(--bg-section); }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-card); padding: 36px 24px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-xs); transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px; font-size: 30px; color: var(--primary);
    background: linear-gradient(135deg, rgba(10,92,255,0.08), rgba(0,180,216,0.08));
}
.feature-card h3 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }

/* ===== IMAGE GALLERY STRIP ===== */
.gallery-strip { padding: 80px 0; background: var(--bg-body); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 14px; }

/* ===== SERVICE AREAS ===== */
.service-areas { padding: 80px 0; background: var(--bg-section); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.area-tag {
    background: var(--bg-card); padding: 18px 16px; border-radius: var(--radius-md);
    text-align: center; font-weight: 600; font-size: 14px; color: var(--text-primary);
    box-shadow: var(--shadow-xs); transition: var(--transition); border: 2px solid transparent;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.area-tag i { color: var(--primary); font-size: 14px; }
.area-tag:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== BOOKING ===== */
.booking { padding: 100px 0; background: var(--bg-body); }
.booking-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1000px; margin: 0 auto;
}
.booking-info h3 { font-family: 'Outfit', sans-serif; font-size: 28px; margin-bottom: 16px; }
.booking-info p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.booking-benefits { list-style: none; }
.booking-benefits li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-weight: 500; font-size: 15px; }
.booking-benefits li i { color: var(--success); font-size: 18px; }

.booking-form {
    background: var(--bg-section); padding: 40px; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: 15px; font-family: inherit; transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,92,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg-card); padding: 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs); position: relative; border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote-icon { font-size: 48px; color: var(--primary); opacity: 0.08; position: absolute; top: 20px; right: 20px; }
.testimonial-stars { color: #FFA500; font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 18px; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.author-info h4 { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.author-info p { font-size: 13px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg-body); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-section); border-radius: var(--radius-md); margin-bottom: 14px;
    overflow: hidden; border: 2px solid transparent; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(10,92,255,0.2); }
.faq-item.active { border-color: var(--primary); background: rgba(10,92,255,0.02); }
.faq-question {
    padding: 22px 24px; font-weight: 600; font-size: 16px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; user-select: none;
}
.faq-question i { color: var(--primary); transition: transform 0.3s ease; font-size: 14px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 24px 22px; color: var(--text-secondary); line-height: 1.8; font-size: 15px; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 100px 0; background: var(--bg-section); }
.seo-wrapper {
    max-width: 900px; margin: 0 auto; background: var(--bg-card); padding: 48px;
    border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.seo-wrapper h2 { font-family: 'Outfit', sans-serif; font-size: 28px; margin-bottom: 20px; color: var(--text-primary); }
.seo-wrapper h3 { font-family: 'Outfit', sans-serif; font-size: 22px; margin: 32px 0 14px; color: var(--text-primary); }
.seo-wrapper p { color: var(--text-secondary); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.seo-wrapper ul { margin: 16px 0; padding-left: 24px; }
.seo-wrapper li { color: var(--text-secondary); font-size: 15px; margin-bottom: 8px; line-height: 1.7; }

/* ===== BUSINESS VERIFICATION ===== */
.verification { padding: 80px 0; background: var(--bg-body); }
.verification-card {
    max-width: 900px; margin: 0 auto; background: var(--bg-card); padding: 40px;
    border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.verification-card-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
    padding-bottom: 20px; border-bottom: 2px solid var(--bg-section);
}
.verification-card-header .v-icon {
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.verification-card-header h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; }
.verification-card-header p { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.verification-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.verification-item {
    padding: 20px; background: var(--bg-section); border-radius: var(--radius-md);
    border-left: 4px solid var(--primary); transition: var(--transition);
}
.verification-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.verification-item .v-label {
    font-size: 12px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.8px; font-weight: 600; margin-bottom: 6px;
}
.verification-item .v-value { font-size: 15px; font-weight: 700; color: var(--text-primary); }

/* ===== MAP ===== */
.map-section { padding: 0; background: var(--bg-body); }
.map-section iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
    background: linear-gradient(135deg, #FFF8E1, #FFF3CD); padding: 24px 0;
    border-top: 3px solid #FFD54F; border-bottom: 3px solid #FFD54F;
}
.disclaimer-banner .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.disclaimer-banner i { color: #F57C00; font-size: 24px; flex-shrink: 0; }
.disclaimer-banner p { font-size: 14px; color: #5D4037; line-height: 1.6; }
.disclaimer-banner strong { color: #E65100; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #0F172A, #1E293B); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 14px; line-height: 1.7; }
.footer h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    text-align: center; color: rgba(255,255,255,0.45); font-size: 13px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 14px; z-index: 9999; }
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    transition: var(--transition); position: relative;
}
.floating-btn.call-btn { background: var(--primary); }
.floating-btn.wa-btn { background: var(--success); }
.floating-btn:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(0,0,0,0.35); }
.floating-btn .pulse-ring {
    position: absolute; inset: -4px; border-radius: 50%; border: 2px solid currentColor;
    animation: pulseRing 2s infinite; opacity: 0;
}
.floating-btn.call-btn .pulse-ring { border-color: var(--primary); }
.floating-btn.wa-btn .pulse-ring { border-color: var(--success); }
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .header-top { font-size: 11px; }
    .header-cta { display: none; }
    .hero { padding: 60px 0 50px; }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero-cta { justify-content: center; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .booking-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .seo-wrapper { padding: 28px 20px; }
    .trust-strip { gap: 20px; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .floating-btn { width: 52px; height: 52px; font-size: 22px; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .hero .btn { width: 100%; justify-content: center; }
}
