:root {
  --navy: #06213A;
  --navy-dark: #03111F;
  --navy-sidebar: #041B30;
  --blue: #0B5CAD;
  --yellow: #F5B400;
  --yellow-hover: #D99A00;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --border: #E1E7EF;
  --text-dark: #14213D;
  --text-muted: #6B7280;
  --success: #22C55E;
  --danger: #EF4444;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(6,33,58,0.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s; border: none; letter-spacing: .5px; text-transform: uppercase; }
.btn-yellow { background: var(--yellow); color: var(--navy-dark); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* Top Bar */
.top-bar { background: var(--navy-dark); color: #aab3c0; font-size: 13px; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: #aab3c0; transition: color .2s; }
.top-bar a:hover { color: var(--yellow); }
.top-bar i { margin-right: 4px; }
.top-bar-badge { display: flex; align-items: center; gap: 5px; color: #aab3c0; }
.top-bar-badge i { color: var(--yellow); }

/* Header */
.main-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 50px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 8px; }
.logo-icon { background: var(--yellow); color: var(--navy-dark); width: 40px; height: 40px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; }
.logo-name { color: var(--white); font-weight: 700; font-size: 18px; line-height: 1.2; }
.logo-name small { display: block; font-size: 10px; font-weight: 400; letter-spacing: 2px; color: var(--yellow); }
.logo-text.white .logo-name { color: var(--white); }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a { color: rgba(255,255,255,.85); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all .2s; display: block; white-space: nowrap; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--white); background: rgba(255,255,255,.1); }
.main-nav ul li a i { font-size: 10px; margin-left: 4px; }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border-radius: var(--radius); min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,.15); border: 1px solid var(--border); z-index: 200; }
.dropdown li a { color: var(--text-dark) !important; padding: 10px 18px !important; background: transparent !important; border-radius: 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-bg) !important; color: var(--blue) !important; }
.has-dropdown.js-open .dropdown { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0a3a6e 100%); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.hero::before { content:''; position: absolute; inset: 0; background: url('/assets/images/hero-bg.jpg') center/cover no-repeat; opacity: .25; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge { background: var(--yellow); color: var(--navy-dark); padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }
.hero p { font-size: 16px; opacity: .85; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge-item { display: flex; align-items: center; gap: 8px; }
.hero-badge-item i { color: var(--yellow); font-size: 18px; }
.hero-badge-item span { font-size: 13px; opacity: .85; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label { color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 15px; }
.section-header.left { text-align: left; }
.section-header.left p { margin: 0; }

/* Stats Bar */
.stats-bar { background: var(--yellow); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--navy-dark); }
.stat-item p { font-size: 13px; font-weight: 600; color: var(--navy); }

/* Services Section */
.services-section { padding: 80px 0; background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(6,33,58,.15); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 22px; }
.service-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.service-card-body a { color: var(--blue); font-size: 13px; font-weight: 600; }
.service-card-body a:hover { text-decoration: underline; }

/* Why Choose Us */
.why-section { padding: 80px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.why-card { background: var(--light-bg); border-radius: 12px; padding: 28px; border: 1px solid var(--border); text-align: center; }
.why-card .icon { width: 60px; height: 60px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.why-card .icon i { font-size: 22px; color: var(--navy-dark); }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); }

/* Projects */
.projects-section { padding: 80px 0; background: var(--light-bg); }
.projects-filter { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 30px; border: 1px solid var(--border); background: var(--white); color: var(--text-dark); font-size: 13px; cursor: pointer; transition: .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.project-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.project-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .3s; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,33,58,.9) 40%, transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: .3s; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h3 { color: var(--white); font-size: 16px; font-weight: 700; }
.project-overlay p { color: rgba(255,255,255,.7); font-size: 13px; }
.project-overlay .badge { background: var(--yellow); color: var(--navy-dark); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 8px; }

/* Testimonials */
.testimonials-section { padding: 80px 0; background: var(--navy); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-label { color: var(--yellow); }
.testimonials-section .section-header p { color: rgba(255,255,255,.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 28px; }
.testimonial-text { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author-info h5 { color: var(--white); font-size: 14px; font-weight: 700; }
.testimonial-author-info span { color: var(--yellow); font-size: 12px; }
.stars { color: var(--yellow); font-size: 13px; margin-bottom: 12px; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); padding: 70px 0; color: var(--white); text-align: center; }
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-section p { opacity: .8; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Blog */
.blog-section { padding: 80px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(6,33,58,.12); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; }
.blog-card-body a.read-more { color: var(--blue); font-size: 13px; font-weight: 600; }
.blog-tag { background: var(--light-bg); color: var(--blue); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--light-bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.faq-question { padding: 20px 24px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.faq-question i { color: var(--blue); transition: transform .2s; font-size: 13px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* Contact */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon i { color: var(--navy-dark); font-size: 16px; }
.contact-item h5 { font-size: 13px; color: var(--text-muted); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--navy); font-weight: 600; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--text-dark); background: var(--white); transition: border-color .2s; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,92,173,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 60px 0; color: var(--white); }
.page-hero h1 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* About */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-images img { border-radius: 12px; }
.about-images .main-img { width: 100%; }
.about-images .badge-years { position: absolute; bottom: 24px; left: -20px; background: var(--yellow); padding: 18px 22px; border-radius: 10px; text-align: center; }
.badge-years h3 { font-size: 2rem; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.badge-years p { font-size: 12px; font-weight: 600; color: var(--navy-dark); }
.about-content h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.about-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; line-height: 1.8; }
.value-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-item i { color: var(--yellow); margin-top: 3px; font-size: 16px; }
.value-item strong { display: block; color: var(--navy); font-size: 14px; }
.value-item p { color: var(--text-muted); font-size: 13px; }

/* Service Detail */
.service-detail { padding: 70px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.service-detail-content h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; line-height: 1.8; }
.feature-list { margin: 20px 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-dark); }
.feature-list li i { color: var(--yellow); }
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--light-bg); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.sidebar-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sidebar-services li a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); font-size: 14px; transition: .2s; }
.sidebar-services li a:hover { color: var(--blue); padding-left: 8px; }
.sidebar-services li:last-child a { border-bottom: none; }
.cta-card { background: var(--navy); color: var(--white); border-radius: 12px; padding: 28px; text-align: center; }
.cta-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.cta-card p { font-size: 13px; opacity: .8; margin-bottom: 18px; }
.cta-card .phone { font-size: 20px; font-weight: 700; color: var(--yellow); margin-bottom: 18px; display: block; }

/* Service Areas */
.areas-section { padding: 80px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: .2s; box-shadow: var(--shadow); }
.area-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.area-card i { color: var(--yellow); font-size: 24px; margin-bottom: 10px; }
.area-card h4 { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.area-card p { color: var(--text-muted); font-size: 12px; }

/* Footer */
.site-footer { background: var(--navy); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-desc { color: rgba(255,255,255,.6); font-size: 14px; margin: 16px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 14px; transition: .2s; }
.footer-social a:hover { background: var(--yellow); color: var(--navy-dark); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: .2s; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 6px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 12px; }
.contact-list li i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,.6); }
.contact-list li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; transition: .2s; }
.footer-links a:hover { color: var(--yellow); }

/* Blog single */
.blog-single { padding: 70px 0; }
.blog-single-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.blog-single-content h1 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.blog-single-content p { color: var(--text-muted); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.blog-single-content h2, .blog-single-content h3 { color: var(--navy); margin: 24px 0 12px; }
.blog-sidebar .sidebar-card { margin-bottom: 24px; }
.blog-sidebar .recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.blog-sidebar .recent-post img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.blog-sidebar .recent-post h5 { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.blog-sidebar .recent-post span { font-size: 11px; color: var(--text-muted); }

/* Process Steps */
.process-section { padding: 80px 0; background: var(--light-bg); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.process-step { background: var(--white); border-radius: 12px; padding: 28px 22px; text-align: center; border: 1px solid var(--border); position: relative; }
.step-number { width: 50px; height: 50px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--navy-dark); margin: 0 auto 14px; }
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); }
.view-all-wrap { text-align: center; margin-top: 36px; }

/* Map */
.map-section { height: 380px; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .blog-single-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); flex-direction: column; padding: 80px 24px 24px; z-index: 999; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; }
  .main-nav ul li a { color: var(--white); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); }
  .dropdown li a { color: rgba(255,255,255,.7) !important; border-bottom: 1px solid rgba(255,255,255,.05) !important; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 16px; }
  .main-header .btn { display: none; }
  .top-bar-right .top-bar-badge { display: none; }
  .hero { padding: 60px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 1.5rem; }
}
