/* ============================================================
   EPC NETWORK — Cybersecurity & AI Consultancy
   Production CSS
   ============================================================ */

:root {
  --bg:           #060b14;
  --bg2:          #090f1c;
  --bg3:          #0d1424;
  --card:         #0f1929;
  --card-hover:   #142030;
  --border:       #1a2840;
  --cyber:        #00ff88;
  --ai:           #7c3aed;
  --research:     #0ea5e9;
  --latest:       #f59e0b;
  --text:         #e8f0ff;
  --text-muted:   #6b85aa;
  --text-dim:     #2d4060;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--cyber); color: #000; }
.btn-primary:hover { background: #33ffaa; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,255,136,0.25); }
.btn-outline { background: transparent; color: var(--cyber); border: 1.5px solid var(--cyber); }
.btn-outline:hover { background: rgba(0,255,136,0.08); transform: translateY(-1px); }
.btn-nav { background: rgba(0,255,136,0.08); color: var(--cyber); border: 1px solid rgba(0,255,136,0.25); padding: 8px 18px; font-size: 0.85rem; }
.btn-nav:hover { background: rgba(0,255,136,0.16); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- LABELS / TITLES ---- */
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
  padding: 4px 12px; border-radius: 20px;
  color: var(--cyber); border: 1px solid rgba(0,255,136,0.2); background: rgba(0,255,136,0.05);
}
.cyber-label { color: var(--cyber); border-color: rgba(0,255,136,0.2); background: rgba(0,255,136,0.05); }
.ai-label { color: var(--ai); border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.06); }
.research-label { color: var(--research); border-color: rgba(14,165,233,0.3); background: rgba(14,165,233,0.06); }
.latest-label { color: var(--latest); border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 48px; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 700px; line-height: 1.75; margin-top: -28px; margin-bottom: 48px; }
.gradient-text { background: linear-gradient(135deg, #00ff88, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: var(--transition); }
.nav.scrolled { background: rgba(6,11,20,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1rem; color: var(--text); flex-shrink: 0; }
.logo-accent { color: var(--cyber); }
.logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.footer-logo .logo-img { height: 48px; margin-bottom: 12px; }
.nav-links { display: flex; list-style: none; gap: 28px; flex: 1; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; flex-direction: column; padding: 16px 24px 24px; background: rgba(6,11,20,0.98); border-top: 1px solid var(--border); gap: 4px; }
.nav-mobile a { padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border-bottom: none; margin-top: 12px; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 24px 80px; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero-content { position: relative; text-align: center; max-width: 860px; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.2); border-radius: 20px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; color: var(--cyber); margin-bottom: 28px; letter-spacing: 0.04em; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyber); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero-title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-muted); max-width: 680px; margin: 0 auto 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 16px; backdrop-filter: blur(10px); flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.stat-value { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat-unit { font-size: 1rem; font-weight: 600; color: var(--cyber); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--text-dim); z-index: 2; }
.scroll-arrow { width: 18px; height: 18px; border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim); transform: rotate(45deg); animation: scroll-bounce 2s infinite; }
@keyframes scroll-bounce { 0%,100%{transform:rotate(45deg) translateY(0);opacity:0.4} 50%{transform:rotate(45deg) translateY(4px);opacity:1} }

/* ============================================================ TRUST BAR */
.trust-bar { padding: 32px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-bottom: 16px; }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.trust-item { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); padding: 4px 0; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

/* ============================================================ SERVICES */
.services { padding: 100px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.service-card { display: flex; flex-direction: column; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); opacity: 0; transition: opacity var(--transition); }
.service-card:nth-child(1)::before { background: linear-gradient(135deg, rgba(0,255,136,0.04), transparent); }
.service-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent); }
.service-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(14,165,233,0.04), transparent); }
.service-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(245,158,11,0.04), transparent); }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); }
.service-card:nth-child(1):hover { border-color: rgba(0,255,136,0.3); }
.service-card:nth-child(2):hover { border-color: rgba(124,58,237,0.3); }
.service-card:nth-child(3):hover { border-color: rgba(14,165,233,0.3); }
.service-card:nth-child(4):hover { border-color: rgba(245,158,11,0.3); }
.service-card-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card-icon.cyber { background: rgba(0,255,136,0.08); }
.service-card-icon.ai { background: rgba(124,58,237,0.08); }
.service-card-icon.research { background: rgba(14,165,233,0.08); }
.service-card-icon.latest { background: rgba(245,158,11,0.08); }
.service-card-content { flex: 1; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.service-tags span { font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); }
.service-arrow { font-size: 1.2rem; color: var(--text-dim); align-self: flex-end; transition: var(--transition); }
.service-card:hover .service-arrow { color: var(--cyber); transform: translateX(4px); }

/* ============================================================ DETAIL SECTIONS */
.detail-section { padding: 100px 0; background: var(--bg); }
.alt-bg { background: var(--bg2); }
.detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.detail-inner.reverse { direction: rtl; }
.detail-inner.reverse > * { direction: ltr; }
.detail-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.detail-content > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.detail-services { display: flex; flex-direction: column; gap: 20px; }
.detail-service { display: flex; gap: 14px; align-items: flex-start; }
.ds-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cyber-icon { background: rgba(0,255,136,0.08); }
.ai-icon { background: rgba(124,58,237,0.08); }
.detail-service h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.detail-service p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* Cyber Visual */
.cyber-visual, .ai-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cv-header, .av-header { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--border); }
.cv-dot { width: 10px; height: 10px; border-radius: 50%; }
.cv-dot.red { background: #ef4444; }
.cv-dot.amber { background: #f59e0b; }
.cv-dot.green { background: #22c55e; }
.cv-title { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; font-family: 'JetBrains Mono', monospace; }
.cv-body, .av-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.cv-metric { display: flex; align-items: center; gap: 10px; }
.cv-label { font-size: 0.72rem; color: var(--text-muted); width: 140px; flex-shrink: 0; }
.cv-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.cv-bar-fill { height: 100%; border-radius: 3px; }
.cv-bar-fill.high { width: 85%; background: #ef4444; }
.cv-bar-fill.medium { width: 55%; background: #f59e0b; }
.cv-bar-fill.secured { width: 94%; background: var(--cyber); }
.cv-val { font-size: 0.72rem; font-weight: 700; font-family: 'JetBrains Mono', monospace; width: 70px; text-align: right; }
.red-text { color: #ef4444; }
.amber-text { color: #f59e0b; }
.green-text { color: var(--cyber); }
.cv-alerts { background: rgba(0,0,0,0.2); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.cv-alert-header { font-size: 0.68rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.cv-alert { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.alert-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; flex-shrink: 0; animation: pulse-dot 2s infinite; }
.amber-dot { background: #f59e0b; }
.green-dot { background: var(--cyber); animation: none; }
.cv-compliance { display: flex; gap: 8px; flex-wrap: wrap; }
.comp-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); color: var(--cyber); }

/* AI Visual */
.av-score { display: flex; justify-content: center; }
.score-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.score-label { position: absolute; display: flex; flex-direction: column; align-items: center; }
.score-num { font-size: 1.6rem; font-weight: 900; color: var(--text); }
.score-sub { font-size: 0.68rem; color: var(--text-muted); }
.av-pillars { display: flex; flex-direction: column; gap: 10px; }
.pillar { display: flex; align-items: center; gap: 10px; }
.pillar-name { font-size: 0.75rem; color: var(--text-muted); width: 130px; flex-shrink: 0; }
.pillar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; }
.pillar-fill { height: 100%; background: linear-gradient(90deg, #7c3aed, #0ea5e9); border-radius: 3px; }
.pillar-val { font-size: 0.72rem; font-weight: 700; color: var(--ai); width: 35px; text-align: right; }

/* ============================================================ RESEARCH */
.research-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.research-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.research-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-4px); }
.rc-icon { margin-bottom: 16px; }
.research-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.research-card > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.rc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.rc-list li { font-size: 0.8rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.rc-list li::before { content: '›'; position: absolute; left: 0; color: var(--research); font-weight: 700; }

/* ============================================================ LATEST */
.latest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.latest-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.latest-card:hover { border-color: rgba(245,158,11,0.25); transform: translateY(-4px); }
.latest-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: var(--latest); margin-bottom: 14px; }
.latest-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.latest-card > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.latest-topics { display: flex; gap: 6px; flex-wrap: wrap; }
.latest-topics span { font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); }

/* ============================================================ WHY EPC */
.why-epc { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.why-card:hover { border-color: rgba(0,255,136,0.2); transform: translateY(-3px); }
.why-number { font-size: 2.5rem; font-weight: 900; color: var(--text-dim); line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================ PROCESS */
.process { padding: 100px 0; background: var(--bg2); }
.process-steps { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.process-step { flex: 1; min-width: 160px; text-align: center; padding: 0 12px; }
.ps-number { font-size: 2rem; font-weight: 900; color: var(--cyber); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.process-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.process-connector { flex-shrink: 0; width: 40px; height: 2px; background: linear-gradient(90deg, var(--cyber), transparent); margin-top: 28px; opacity: 0.3; }

/* ============================================================ CONTACT */
.contact { padding: 100px 0; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-content .section-label { margin-bottom: 16px; }
.contact-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.contact-content > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.contact-options { display: flex; flex-direction: column; gap: 16px; }
.contact-option { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.co-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(0,255,136,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-option strong { display: block; font-size: 0.88rem; font-weight: 700; }
.contact-option span { font-size: 0.8rem; color: var(--text-muted); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-family: inherit; font-size: 0.88rem; color: var(--text);
  outline: none; transition: border-color var(--transition); resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyber); }
.form-group select option { background: var(--bg3); }
.form-success { display: none; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--cyber); font-weight: 500; background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.2); border-radius: 8px; padding: 12px 16px; }

/* ============================================================ FOOTER */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 280px 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--cyber); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.78rem; color: var(--text-dim); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .detail-inner { grid-template-columns: 1fr; }
  .detail-inner.reverse { direction: ltr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 16px 12px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 20px; }
  .process-connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--cyber), transparent); margin: 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 12px 6px; }
}
