:root {
    --primary: #0D5C2E;
    --primary-dark: #083D1E;
    --primary-light: #1A8C4A;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #A07D2E;
    --bg: #FAFAFA;
    --card: #FFFFFF;
    --text: #1A1A2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Readex Pro', -apple-system, sans-serif;
    --font-display: 'Readex Pro', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 72px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo img { display: block; height: 36px; width: auto; }
.site-header.scrolled .logo-white { display: none !important; }
.site-header.scrolled .logo-dark { display: block !important; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: 8px;
    flex-direction: column; gap: 5px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-menu { display: flex; gap: 0; align-items: center; }
.nav-menu li a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.site-header:not(.scrolled) .nav-menu li a { color: rgba(255,255,255,0.85); }
.site-header:not(.scrolled) .nav-menu li a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.nav-menu li a:hover {
    color: var(--primary);
    background: rgba(13,92,46,0.06);
}
.nav-menu li a.active {
    color: var(--primary);
    background: rgba(13,92,46,0.08);
    font-weight: 600;
}
.nav-menu li a i { font-size: 13px; opacity: 0.7; }
.btn-reserve {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
}
.btn-reserve:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #0A3D1F 0%, #0D5C2E 40%, #1A8C4A 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; }
.hero-logo { margin-bottom: 32px; }
.hero-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}
.hero-ayat {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.15);
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}
.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}
.btn-green {
    background: var(--primary);
    color: #fff;
}
.btn-green:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,92,46,0.2);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--card); }
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.section-title h2 i { color: var(--gold); margin-left: 8px; }
.section-title p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.section-divider {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto;
    border-radius: 3px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card .icon {
    width: 56px;
    height: 56px;
    background: rgba(13,92,46,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.service-card:hover .icon {
    background: var(--primary);
    color: #fff;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.service-card span[style*="color: var(--primary)"] {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ===== PACKAGE CARDS ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.package-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.package-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}
.package-card.featured .package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
}
.package-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 28px 24px;
    text-align: center;
}
.package-header .package-icon { font-size: 32px; margin-bottom: 8px; display: block; opacity: 0.9; }
.package-header h3 { font-size: 18px; font-weight: 700; }
.package-price { font-size: 13px; opacity: 0.8; margin-top: 4px; }
.package-price strong { font-size: 28px; color: var(--gold-light); display: block; margin: 4px 0; }
.package-body { padding: 24px; }
.package-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.package-body ul li:last-child { border-bottom: none; }
.package-body ul li i { color: var(--primary); flex-shrink: 0; font-size: 13px; }
.package-footer { padding: 0 24px 24px; text-align: center; }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 56px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { padding: 12px; }
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    display: block;
    letter-spacing: -1px;
}
.stat-label { font-size: 14px; opacity: 0.75; margin-top: 4px; }

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card .blog-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255,255,255,0.2);
    position: relative;
}
.blog-card .blog-image .blog-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
}
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.blog-card .blog-body h3 a:hover { color: var(--primary); }
.blog-card .blog-body p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
.blog-card .blog-body .btn-read {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card .blog-body .btn-read:hover { color: var(--gold); }

/* ===== PAGE HEADER ===== */
.page-header {
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}
.page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.page-header p { font-size: 15px; opacity: 0.85; max-width: 450px; margin: 0 auto; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { margin-top: 12px; font-size: 12px; }
.breadcrumbs ol { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li::before { content: '/'; margin-left: 6px; color: rgba(255,255,255,0.4); }
.breadcrumbs li:first-child::before { display: none; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li:last-child { color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
}
.footer-top { padding: 56px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-col img { margin-bottom: 16px; height: 32px; }
.footer-col p { font-size: 13px; line-height: 1.8; opacity: 0.7; }
.footer-col h4 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a {
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px;
    transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--primary-dark); }
.contact-info li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; opacity: 0.7; padding: 4px 0;
}
.contact-info li i { color: var(--gold); width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float, .call-float {
    position: fixed;
    width: 52px; height: 52px;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transition: all 0.3s ease;
}
.whatsapp-float {
    bottom: 24px; left: 24px;
    background: #25D366;
}
.call-float {
    bottom: 88px; left: 24px;
    background: var(--gold);
    color: var(--primary-dark);
}
.whatsapp-float:hover, .call-float:hover { transform: scale(1.1); }

/* ===== SCROLL TOP ===== */
#scrollTop {
    position: fixed;
    bottom: 156px; left: 24px;
    width: 40px; height: 40px;
    background: var(--primary);
    color: #fff;
    border: none; border-radius: 50%;
    font-size: 14px; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 100px 20px; }
.error-page h1 { font-size: 72px; color: var(--primary); font-weight: 800; }
.error-page h2 { font-size: 24px; color: var(--text); margin-bottom: 12px; }
.error-page p { color: var(--text-secondary); margin-bottom: 24px; }

/* ===== ALERTS ===== */
.alert {
    padding: 14px 18px; border-radius: 10px;
    margin-bottom: 16px; font-size: 14px;
    display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.page-banner i { font-size: 40px; color: var(--gold); margin-bottom: 12px; display: block; }
.page-banner h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.page-banner p { opacity: 0.85; max-width: 480px; margin: 0 auto; }

/* ===== FORMS ===== */
.contact-form {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-weight: 600;
    font-size: 13px; color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.2s;
    background: var(--bg);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,92,46,0.08);
    background: #fff;
}
.form-group textarea { height: 120px; resize: vertical; }

/* ===== FAQ ===== */
.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}
.faq-question:hover { background: rgba(13,92,46,0.02); }
.faq-question i { color: var(--primary); transition: all 0.3s; font-size: 13px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.faq-item.active .faq-answer { padding: 0 20px 16px; max-height: 400px; }

/* ===== INCLUDES/EXCLUDES ===== */
.includes-box, .excludes-box {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}
.includes-box h3 { color: var(--primary); font-size: 18px; margin-bottom: 16px; }
.excludes-box h3 { color: #DC2626; font-size: 18px; margin-bottom: 16px; }
.includes-box ul li, .excludes-box ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== NOTE BOX ===== */
.note-box {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 13px;
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== FEATURE ITEMS ===== */
.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.feature-item i {
    width: 40px; height: 40px;
    background: rgba(13,92,46,0.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.feature-item span { font-size: 14px; font-weight: 500; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.gallery-item {
    border-radius: var(--radius);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 36px;
    position: relative;
    overflow: hidden;
}

/* ===== BOOKING ===== */
.booking-badges {
    display: flex; justify-content: center;
    gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
.booking-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
}
.booking-badge i { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-item .contact-icon {
    width: 44px; height: 44px;
    background: rgba(13,92,46,0.06);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-item .contact-text h4 { font-size: 14px; color: var(--text); font-weight: 600; }
.contact-item .contact-text p { font-size: 13px; margin-bottom: 0; color: var(--text-secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    body { padding-top: 64px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0; left: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        gap: 4px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li a {
        padding: 12px 16px;
        border-radius: 10px;
        color: var(--text) !important;
    }
    .nav-menu li a:hover { background: rgba(13,92,46,0.06); }

    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .hero-logo img { height: 60px; }
    .hero-ayat { font-size: 14px; }

    .section { padding: 50px 0; }
    .section-title h2 { font-size: 22px; }
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom .container { flex-direction: column; gap: 6px; }
    .page-header h1 { font-size: 24px; }
    .page-banner h2 { font-size: 22px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}