/* Meridian Logistics — профессиональный синий стиль */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f5f7fa; --bg2: #ffffff; --bg3: #edf0f5;
  --border: #d8dfe8; --text: #334155; --text-muted: #64748b;
  --accent: #1e40af; --accent2: #0ea5e9; --heading: #0f172a;
  --card-bg: #ffffff; --radius: 8px; --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: -apple-system,'Segoe UI',sans-serif; font-size: 16px; line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo { font-size: 20px; font-weight: 800; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; list-style: none; gap: 4px; }
.nav-link { display: block; padding: 8px 14px; color: var(--text-muted); border-radius: var(--radius); font-size: 15px; transition: color .2s, background .2s; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--accent); background: #eff6ff; }
.arrow { font-size: 11px; }
.btn-cta { padding: 10px 20px; background: var(--accent); color: #fff; border-radius: var(--radius); font-weight: 700; font-size: 14px; margin-left: 12px; transition: background .2s; }
.btn-cta:hover { background: #1e3a8a; color: #fff; }
.burger { display: none; background: none; border: none; font-size: 22px; color: var(--text); cursor: pointer; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); min-width: 220px; padding: 8px 0; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 10px 18px; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: background .15s, color .15s; }
.dropdown-menu a:hover { background: #eff6ff; color: var(--accent); }
.hero { padding: 80px 0 60px; background: linear-gradient(135deg,#1e3a8a 0%,#1e40af 60%,#0369a1 100%); }
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-content { color: #fff; }
.hero-tag { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: #93c5fd; margin-bottom: 16px; display: block; }
.hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-sub { color: #bfdbfe; font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { padding: 14px 28px; background: #fff; color: var(--accent); border-radius: var(--radius); font-weight: 700; transition: background .2s; }
.btn-primary:hover { background: #dbeafe; color: var(--accent); }
.btn-ghost { padding: 14px 28px; border: 2px solid rgba(255,255,255,.4); border-radius: var(--radius); color: #fff; font-weight: 600; transition: border-color .2s; }
.btn-ghost:hover { border-color: #fff; }
.hero-badges { display: flex; flex-direction: column; gap: 12px; }
.badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 12px 16px; color: #fff; font-size: 14px; font-weight: 500; }
.stats { padding: 40px 0; background: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat { padding: 20px; }
.stat-num { display: block; font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat span:last-child { color: #93c5fd; font-size: 14px; }
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent2); display: block; margin-bottom: 12px; font-weight: 600; }
.section-head h2 { font-size: 2rem; color: var(--heading); font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 8px 24px rgba(30,64,175,.1); transform: translateY(-3px); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { color: var(--heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.card-link { font-size: 14px; color: var(--accent); font-weight: 700; }
.cta-section { padding: 80px 0; }
.cta-box { background: linear-gradient(135deg,#1e40af,#0369a1); border-radius: 16px; padding: 60px; text-align: center; color: #fff; }
.cta-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: #bfdbfe; margin-bottom: 28px; }
.footer { background: #0f172a; border-top: 1px solid #1e293b; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; display: inline-flex; }
.footer-brand p { color: #64748b; font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #e2e8f0; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col p { color: #64748b; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; color: #475569; font-size: 13px; text-align: center; }
.page-hero { padding: 60px 0 40px; background: linear-gradient(135deg,#1e3a8a,#1e40af); text-align: center; color: #fff; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: #bfdbfe; max-width: 580px; margin: 0 auto; }
.service-block { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-block:nth-child(even) { background: var(--bg3); }
.service-block .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent2); margin-bottom: 12px; display: block; font-weight: 600; }
.service-block h2 { font-size: 1.7rem; color: var(--heading); font-weight: 800; margin-bottom: 16px; }
.service-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.service-list { list-style: none; }
.service-list li { color: var(--text-muted); font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.service-list li::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.service-visual { background: linear-gradient(135deg,#eff6ff,#dbeafe); border: 1px solid #bfdbfe; border-radius: 12px; padding: 32px; text-align: center; font-size: 72px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; color: var(--text); font-size: 14px; font-family: inherit; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit { padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: #1e3a8a; }
.contact-info h3 { color: var(--heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-text p:first-child { color: var(--heading); font-weight: 700; margin-bottom: 2px; }
.ci-text p:last-child { color: var(--text-muted); font-size: 14px; }
.map-placeholder { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; height: 200px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; margin-top: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.team-card h3 { color: var(--heading); font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 13px; }
@media (max-width: 900px) {
  .hero .container, .service-block .container, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .cards-grid, .stats-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { display: none; }
}
@media (max-width: 600px) {
  .nav-list, .btn-cta { display: none; }
  .nav.open .nav-list { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .burger { display: block; }
  .cards-grid, .stats-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 32px 20px; }
}
