/* ===== XCFREIGHT v3 - Modern Design ===== */
:root {
  --primary: #0a2e5c;
  --primary-light: #144785;
  --primary-dark: #061e3d;
  --accent: #e8a838;
  --accent-hover: #d4952e;
  --accent-light: rgba(232,168,56,0.1);
  --success: #22c55e;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --text-muted: #8a8aaa;
  --bg: #fafbfc;
  --bg-card: #ffffff;
  --bg-light: #f3f4f8;
  --border: #e8eaf0;
  --border-light: #f0f1f5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  --max-w: 1200px;
  --nav-h: 64px;
}
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; font-size: 15px; background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== Top Bar ===== */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.75); font-size: 13px; padding: 6px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--accent); }
.top-bar .contact-info { display: flex; align-items: center; gap: 20px; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 5px; }
.top-bar .contact-info svg { width: 13px; height: 13px; opacity: 0.7; }

/* ===== Language Switcher ===== */
.lang-switcher { position: relative; display: inline-flex; align-items: center; }
.lang-current { padding: 3px 10px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,255,255,0.25); border-radius: 4px; color: rgba(255,255,255,0.85); cursor: pointer; user-select: none; letter-spacing: 0.5px; transition: all 0.2s; background: none; font-family: inherit; line-height: 1.4; }
.lang-current:hover { border-color: var(--accent); color: var(--accent); }
.lang-current::after { content: " ▾"; font-size: 9px; }
.lang-dropdown { display: none; position: absolute; top: 100%; right: 0; background: #fff; min-width: 120px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); border-radius: var(--radius); z-index: 999; overflow: hidden; padding: 4px; margin-top: 4px; }
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a, .lang-dropdown button { display: block; width: 100%; padding: 8px 14px; font-size: 13px; color: var(--text) !important; border-radius: 4px; transition: all 0.15s; cursor: pointer; background: none; border: none; text-align: left; font-family: inherit; }
.lang-dropdown a:hover { background: var(--bg-light); color: var(--primary) !important; }
.lang-dropdown a.active { background: var(--accent-light); color: var(--accent) !important; font-weight: 600; }
.top-bar .container > div:last-child { display: flex; align-items: center; gap: 12px; }

/* ===== Header / Nav ===== */
header { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
header .container { display: flex; justify-content: space-between; align-items: center; height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--primary); }
.logo span { color: var(--accent); }
.logo .tagline { font-size: 10px; font-weight: 500; color: var(--text-muted); display: block; letter-spacing: 0.5px; text-transform: uppercase; }
.logo svg { width: 36px; height: 36px; flex-shrink: 0; }
nav { display: flex; align-items: center; }
nav ul { display: flex; gap: 2px; }
nav ul li a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--text-light); border-radius: 6px; transition: all 0.2s; }
nav ul li a:hover { background: var(--bg-light); color: var(--primary); }
nav ul li a.active { background: var(--primary); color: #fff; }
nav ul li { position: relative; }
nav ul li .dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--bg-card); min-width: 180px; box-shadow: var(--shadow-lg); border-radius: var(--radius); z-index: 100; padding: 6px; border: 1px solid var(--border); margin-top: 4px; }
nav ul li:hover .dropdown { display: block; }
nav ul li .dropdown li a { padding: 8px 14px; border-radius: 4px; color: var(--text-light); font-size: 13px; }
nav ul li .dropdown li a:hover { background: var(--bg-light); color: var(--primary); }
.menu-toggle { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; cursor: pointer; border-radius: 6px; transition: background 0.2s; }
.menu-toggle:hover { background: var(--bg-light); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== Hero ===== */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a5a9e 100%); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 25% 50%, rgba(232,168,56,0.08) 0%, transparent 50%), radial-gradient(circle at 75% 50%, rgba(232,168,56,0.05) 0%, transparent 50%); }
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; max-width: 640px; }
.hero-content h1 { font-size: 44px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 16px; line-height: 1.7; opacity: 0.85; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat .num { font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-stats .stat .label { font-size: 12px; opacity: 0.75; margin-top: 2px; }
.hero-visual { flex: 0 0 380px; position: relative; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 28px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,168,56,0.35); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-secondary { background: var(--primary); color: #fff; }
.btn-secondary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,46,92,0.3); }
.btn-lg { padding: 14px 34px; font-size: 15px; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 8px; letter-spacing: -0.3px; }
.section-title p { font-size: 15px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.divider { width: 48px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }
.section-alt { background: var(--bg-light); }

/* ===== Stats Bar ===== */
.stats-highlight { background: var(--primary); color: #fff; padding: 48px 0; }
.stats-highlight .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .num { font-size: 34px; font-weight: 800; color: var(--accent); }
.stat-item .label { font-size: 13px; opacity: 0.8; margin-top: 4px; }

/* ===== Service Cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card .icon-wrap { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); transition: all 0.25s; }
.service-card:hover .icon-wrap { background: var(--accent); color: #fff; }
.service-card .icon-wrap svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.service-card .tags { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; }
.service-card .tags span { padding: 2px 10px; background: var(--bg-light); border-radius: 12px; font-size: 11px; color: var(--text-muted); }

/* ===== About Preview ===== */
.about-preview { background: var(--bg-light); }
.about-preview .container { display: flex; align-items: center; gap: 60px; }
.about-preview .about-image { flex: 0 0 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-image svg { width: 100%; height: auto; display: block; }
.about-preview .about-text { flex: 1; }
.about-text h3 { font-size: 26px; color: var(--primary); margin-bottom: 14px; }
.about-text p { color: var(--text-light); line-height: 1.7; margin-bottom: 14px; font-size: 14px; }
.about-text .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.about-text .about-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.about-text .about-features li svg { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Features Grid ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-item { text-align: center; padding: 28px 16px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.2s; }
.feature-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.feature-item .num { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.feature-item h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--accent); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px 20px; background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text); text-align: left; transition: color 0.2s; gap: 12px; font-family: inherit; }
.faq-question:hover { color: var(--primary); }
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-muted); transition: transform 0.3s; }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s; padding: 0 20px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 20px 16px; }
.faq-answer p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars { color: var(--accent); font-size: 14px; margin-bottom: 10px; }
.testimonial-card blockquote { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .author .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 700; font-size: 13px; }
.testimonial-card .author .name { font-weight: 600; font-size: 13px; color: var(--primary); }
.testimonial-card .author .company { font-size: 11px; color: var(--text-muted); }

/* ===== News/Blog ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card .img { height: 160px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; }
.news-card .img svg { width: 36px; height: 36px; color: rgba(255,255,255,0.2); }
.news-card .body { padding: 20px; }
.news-card .body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.news-card .body h4 { font-size: 15px; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.news-card .body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; padding: 72px 0; }
.cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.cta p { font-size: 15px; opacity: 0.85; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== Contact ===== */
.contact-section { background: var(--bg-light); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-box { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-item .ico { width: 44px; height: 44px; min-width: 44px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.info-item .ico svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 14px; color: var(--primary); margin-bottom: 2px; }
.info-item p { font-size: 13px; color: var(--text-light); }
.contact-form { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg); transition: all 0.2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,46,92,0.08); }
.contact-form textarea { resize: vertical; min-height: 100px; margin-bottom: 14px; }
.contact-form select { margin-bottom: 14px; }
.contact-form button { width: 100%; }
.contact-form button .btn { width: 100%; justify-content: center; }

/* ===== Page Header ===== */
.page-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 56px 0; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.3px; }
.page-header p { font-size: 15px; opacity: 0.8; }

/* ===== Breadcrumbs ===== */
.breadcrumbs { display: flex; align-items: center; gap: 6px; padding: 12px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }

/* ===== About Page ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-grid h3 { font-size: 26px; color: var(--primary); margin-bottom: 14px; }
.about-grid p { color: var(--text-light); line-height: 1.7; margin-bottom: 14px; font-size: 14px; }
.about-image-box { height: 300px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-image-box svg { width: 160px; height: 160px; color: rgba(255,255,255,0.12); }

/* ===== Timeline ===== */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ""; position: absolute; left: 13px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 24px; padding-left: 16px; }
.timeline-item::before { content: ""; position: absolute; left: -23px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--primary); }
.timeline-item .year { font-weight: 800; color: var(--primary); font-size: 16px; margin-bottom: 2px; }
.timeline-item p { color: var(--text-light); font-size: 13px; }

/* ===== Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 32px 20px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.25s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.value-card .icon-wrap { width: 56px; height: 56px; margin: 0 auto 14px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.value-card .icon-wrap svg { width: 26px; height: 26px; }
.value-card h4 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-light); }

/* ===== WhatsApp Float ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,0.3); transition: all 0.25s; cursor: pointer; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.4); color: #fff; }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ===== Footer ===== */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); padding: 56px 0 0; }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
footer .footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
footer .footer-logo span { color: var(--accent); }
footer p { font-size: 13px; line-height: 1.7; }
footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 13px; }
footer ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; margin-top: 36px; }
.footer-bottom .container { display: flex; justify-content: space-between; grid-template-columns: none; gap: 0; }
.footer-bottom p { font-size: 12px; }
.social-links { display: flex; gap: 8px; margin-top: 14px; }
.social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-links a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; }

/* ===== Blog List ===== */
.blog-post { display: flex; gap: 28px; padding: 28px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 20px; transition: all 0.25s; }
.blog-post:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-post .thumb { width: 220px; min-width: 220px; height: 150px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.blog-post .thumb svg { width: 40px; height: 40px; color: rgba(255,255,255,0.15); }
.blog-post .body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-post .body .meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; display: flex; gap: 12px; }
.blog-post .body .meta .cat { color: var(--accent); font-weight: 600; }
.blog-post .body h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.blog-post .body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.blog-post .body .read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--accent); }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.pagination a { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 13px; transition: all 0.2s; }
.pagination a:hover, .pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-list { max-width: 860px; margin: 0 auto; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; }
  .hero-visual { display: none; }
  .hero-content h1 { font-size: 34px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: repeat(2, 1fr); }
  .about-preview .container { flex-direction: column; }
  .about-preview .about-image { flex: none; width: 100%; }
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .blog-post { flex-direction: column; }
  .blog-post .thumb { width: 100%; min-width: auto; height: 140px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav ul { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg-card); flex-direction: column; padding: 12px; box-shadow: var(--shadow-lg); z-index: 99; border-bottom: 1px solid var(--border); }
  nav ul.active { display: flex; }
  nav ul li .dropdown { position: static; box-shadow: none; border: none; padding-left: 16px; margin-top: 0; }
  .hero { padding: 64px 0; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stats .stat { flex: 1; min-width: 70px; }
  .hero-stats .stat .num { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
  .stats-highlight .container { grid-template-columns: repeat(2, 1fr); }
  .section-title h2 { font-size: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .top-bar .contact-info span:not(:first-child) { display: none; }
  .page-header h1 { font-size: 24px; }
  .about-image-box { height: 200px; }
  .section { padding: 48px 0; }
  .cta { padding: 48px 0; }
  .cta h2 { font-size: 22px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { gap: 8px; }
  .hero-stats .stat .num { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-highlight .container { grid-template-columns: 1fr 1fr; }
}