/* Typography & Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&display=swap');

:root {
    /* Primary Colors - Refined Emerald */
    --primary: #00d285;
    --primary-hover: #00e691;
    --green: #00d285;
    --green-hover: #00e691;
    --green3: rgba(0, 210, 133, 0.08);
    
    /* Midnight Indigo Palette */
    --navy: #1e293b; 
    --navy-light: #334155; 
    --navy-muted: #475569;
    
    /* Typography Tokens */
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Heebo', sans-serif;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-black: 900;
    
    /* Neutrals */
    --white: #ffffff;
    --gray1: #f8fafc; 
    --gray2: #f1f5f9; 
    --gray3: #cbd5e1; 
    --gray4: #64748b; 
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    
    /* Layout */
    --container: 1100px;
    --container-wide: 1650px;
    --container-fluid: 95%;

    /* Aliases */
    --primary-light: rgba(0, 210, 133, 0.1);
    --secondary: #1e293b;
    --accent: #00d285;
    --bg-main: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-light: #f1f5f9;
    --danger: #ef4444;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: var(--weight-black);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
}

p {
    font-weight: var(--weight-regular);
}

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: var(--container-wide);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Standard Page Hero (Centered) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a44 100%);
    color: var(--white);
    padding: 120px 5vw 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 210, 133, 0.15) 0%, transparent 50%);
    animation: pulse 15s infinite alternate;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(5%, 5%); }
}

.page-hero .container, .page-hero .container-wide { position: relative; z-index: 2; }
.page-hero h1 { 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 24px; 
    line-height: 1.1; 
    font-family: var(--font-heading);
    font-weight: var(--weight-black);
    letter-spacing: -0.02em;
    color: var(--white);
}
.page-hero h1 span { 
    background: linear-gradient(90deg, var(--green), #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero p { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.85); 
    max-width: 750px; 
    margin: 0 auto; 
    line-height: 1.7; 
    font-weight: var(--weight-regular);
}


.container-fluid {
    max-width: var(--container-fluid);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button System */
.btn {
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--green);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 194, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--green);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--navy);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Card System */
.card {
    background: var(--white);
    border: 1px solid var(--gray2);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--green), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.card:hover::after {
    opacity: 0.15;
}

.card-tag {
    background: var(--green3);
    color: var(--green);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* Layout Utilities */
section {
    padding: 80px 5vw;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation (Injected Header) */
.glass-nav {
    position: sticky;
    top: 0;
    height: 80px;
    background: var(--navy);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.glass-nav.sticky-active {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures logo and toggle are at opposite ends */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: var(--weight-black);
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 40px;
    transition: var(--transition);
    direction: ltr;
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo span { 
    color: var(--green);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
}

.nav-links a:hover { 
    color: var(--white); 
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ── Premium Pro Footer ────────────────────────────────────────────────── */
.pro-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 100px 0 40px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.pro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
}

.pro-footer .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    transition: all 0.3s ease;
}

@media (min-width: 1200px) {
    .pro-footer .container {
        max-width: 100%;
        padding: 0 5vw;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: var(--weight-black);
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--green);
}

.footer-desc {
    color: var(--gray3);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-desc-sm {
    color: var(--gray3);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    background: var(--green);
    color: var(--navy);
    border-color: var(--green);
    box-shadow: 0 10px 20px rgba(0, 194, 122, 0.2);
}

.social-btn.wa:hover { background: #25D366; color: white; border-color: #25D366; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
.social-btn.li:hover { background: #0077b5; color: white; border-color: #0077b5; box-shadow: 0 10px 20px rgba(0, 119, 181, 0.2); }
.social-btn.fb:hover { background: #1877F2; color: white; border-color: #1877F2; box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2); }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; border-color: transparent; }

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.footer-newsletter .form-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.footer-newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 194, 122, 0.15);
}

.footer-newsletter button {
    background: var(--green);
    color: var(--navy);
    border: none;
    width: 50px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-newsletter button:hover {
    background: var(--green-hover);
    transform: scale(1.05);
}

.footer-title {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-family: 'Outfit', 'Heebo', sans-serif;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray3);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--green);
    transform: translateX(-5px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    margin: 60px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copy p {
    color: var(--gray4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
    /* Reset any inherited nav styles */
    position: static;
    height: auto;
    background: transparent;
    border: none;
    z-index: auto;
}

.footer-legal a {
    color: var(--gray4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal .sep {
    color: rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    color: var(--gray4);
    font-size: 0.8rem;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.footer-disclaimer i {
    color: var(--green);
    margin-left: 8px;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .pro-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* scroll-to-top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--green);
    color: var(--navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 194, 122, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 2000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--green-hover);
    box-shadow: 0 15px 35px rgba(0, 194, 122, 0.5);
}

/* badge-new pill used in nav links */
.badge-new {
    background: var(--green);
    color: #0b1526;
    font-size: 0.65em;
    padding: 2px 7px;
    border-radius: 99px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 4px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ── Mobile Drawer (always positioned, shown/hidden via transform) ── */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: #0f172a;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    transform: translateX(105%); /* Ensure it's fully off-screen */
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    visibility: hidden; /* Hide from screen readers and layout when closed */
}
.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mobile-drawer__head .logo {
    font-size: 1.45rem;
    margin-left: 0;
}
.mobile-drawer__close {
    width: 38px;
    height: 38px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mobile-drawer__close:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

.mobile-drawer__body {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}
.mobile-drawer__label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 14px 20px 6px;
}
.mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    min-height: 48px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-right: 3px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.mobile-drawer__link:hover,
.mobile-drawer__link.active {
    background: rgba(0,194,122,0.1);
    color: var(--green);
    border-right-color: var(--green);
}
.mobile-drawer__link i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--green);
    flex-shrink: 0;
    transition: background 0.18s;
}
.mobile-drawer__link:hover i,
.mobile-drawer__link.active i {
    background: rgba(0,194,122,0.2);
}
.mobile-drawer__divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 8px 20px;
}
.mobile-drawer__foot {
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mobile-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--green, #00c27a);
    color: #0a1628;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.mobile-drawer__cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ── Responsive Menu ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1200;
        position: relative;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-links {
        display: none !important;
    }

    .logo {
        margin-left: 15px;
    }
}

@media (max-width: 560px) {
}

/* ── AdSense Ad Units (Media Optimized) ─────────────────────────── */
.pratil-ad {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: rgba(100, 116, 139, 0.03); /* Subtle placeholder */
    border-radius: 12px;
    min-height: 100px; /* Prevent total collapse */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pratil-ad::before {
    content: 'ADVERTISEMENT';
    display: block;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(100,116,139,0.4);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.pratil-ad .adsbygoogle {
    width: 100%;
    min-height: 90px;
    background: transparent;
}

/* Sidebar specific ads */
.sidebar-ad {
    margin: 20px 0;
    padding: 0;
    max-width: 100%;
    background: var(--gray1);
    min-height: 250px;
}

.sidebar-ad .adsbygoogle {
    min-height: 250px;
}

@media (max-width: 768px) {
    .pratil-ad { margin: 24px auto; padding: 0 15px; max-width: 100%; min-height: 60px; }
    .pratil-ad .adsbygoogle { min-height: 50px; }
}

/* ── Media Layout System ─────────────────────────────────────────── */
.media-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.media-content {
    min-width: 0; /* Fix flex/grid overflow */
}

.media-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--navy);
    border-bottom: 2px solid var(--green);
    padding-bottom: 10px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .media-wrapper {
        grid-template-columns: 1fr;
    }
    
    .media-sidebar {
        position: static;
        order: 2;
    }
}

/* Forms */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green3);
}

/* Tables */
.data-table-wrap {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray2);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--gray1);
    padding: 15px;
    text-align: right;
    font-weight: 700;
    color: var(--navy);
}

td {
    padding: 15px;
    border-top: 1px solid var(--gray2);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    section { padding: 40px 5vw; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}
