@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --navy: #0B1D3A;
  --navy-light: #132D5E;
  --blue: #1B6EC2;
  --blue-light: #3B8DE0;
  --blue-pale: #E8F1FB;
  --orange: #E8792B;
  --orange-light: #F09A56;
  --green: #27AE60;
  --dark: #111827;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'DM Sans', 'Inter', sans-serif; color: var(--navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 40px; height: 40px; }
.logo-text { font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy); letter-spacing: -0.5px; }
.logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gray-700);
  position: relative; padding: 4px 0; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--blue); color: var(--white) !important; padding: 10px 24px;
  border-radius: var(--radius); font-weight: 600; font-size: .9rem;
  transition: all var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 6px 0; transition: all var(--transition); border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,121,43,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, rgba(11,29,58,.3));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-content { animation: fadeInUp .8s ease-out; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 16px; border-radius: 50px; font-size: .8rem; color: var(--orange-light);
  margin-bottom: 24px; font-weight: 500; backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white); padding: 14px 32px;
  border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; transition: all var(--transition);
}
.btn-primary:hover { background: var(--orange-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,121,43,.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 14px 32px;
  border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.25); cursor: pointer; transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); }

.hero-visual { animation: fadeInRight .8s ease-out .2s both; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; transition: all var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stat-number { font-family: 'DM Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); display: block; }
.stat-number .accent { color: var(--orange); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-500); font-weight: 500; }
.trust-icon { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; margin-top: 12px; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--blue);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--gray-500); font-size: .92rem; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .88rem; font-weight: 600; color: var(--blue);
}
.service-link:hover { color: var(--orange); gap: 10px; }

/* ============ ABOUT / WHY US ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--gray-600); }
.about-list { list-style: none; margin-top: 24px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  font-size: .95rem; color: var(--gray-700);
}
.about-list .check {
  width: 22px; height: 22px; min-width: 22px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-top: 2px;
}
.about-visual {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-xl); padding: 40px; position: relative;
}
.about-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-metric {
  background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.about-metric .num { font-family: 'DM Sans', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue); display: block; }
.about-metric .lbl { font-size: .82rem; color: var(--gray-500); margin-top: 4px; }

/* ============ PROCESS ============ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; position: relative; padding: 24px 16px; }
.process-step::after {
  content: ''; position: absolute; top: 36px; right: -12px; width: 24px; height: 2px;
  background: var(--gray-300);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--blue);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; margin: 0 auto 16px;
  font-family: 'DM Sans', sans-serif;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .88rem; color: var(--gray-500); }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue); font-size: .9rem;
}
.author-info .name { font-weight: 600; color: var(--navy); font-size: .9rem; }
.author-info .role { font-size: .8rem; color: var(--gray-500); }

/* ============ INDUSTRIES ============ */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: all var(--transition);
}
.industry-item:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.industry-item h4 { font-size: .95rem; margin-bottom: 4px; }
.industry-item p { font-size: .8rem; color: var(--gray-500); }

/* ============ CTA ============ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { color: var(--gray-500); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--blue-pale);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.contact-detail .label { font-size: .82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-detail .value { color: var(--navy); font-weight: 500; margin-top: 2px; }

.contact-form {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: .92rem; font-family: inherit;
  transition: border-color var(--transition); background: var(--white); color: var(--gray-700);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,110,194,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%; padding: 14px; background: var(--blue); color: var(--white);
  border: none; border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all var(--transition);
}
.btn-submit:hover { background: var(--navy); }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; background: var(--white);
}
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .95rem; font-weight: 600; color: var(--navy); cursor: pointer;
  text-align: left; font-family: inherit; transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-chevron { transition: transform var(--transition); color: var(--gray-400); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer { padding: 0 24px 20px; color: var(--gray-600); font-size: .92rem; line-height: 1.8; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .9rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--orange); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 20px 24px;
  display: none; animation: slideUp .4s ease-out;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: .88rem; color: var(--gray-600); }
.cookie-text a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-accept {
  background: var(--blue); color: var(--white); padding: 10px 24px;
  border: none; border-radius: var(--radius); font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: background var(--transition);
}
.cookie-accept:hover { background: var(--navy); }
.cookie-decline {
  background: var(--gray-100); color: var(--gray-700); padding: 10px 24px;
  border: none; border-radius: var(--radius); font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: background var(--transition);
}
.cookie-decline:hover { background: var(--gray-200); }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-meta { color: var(--gray-500); font-size: .9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 16px; color: var(--gray-600); }
.legal-content ul { margin: 12px 0 20px 24px; color: var(--gray-600); }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============ COUNTER ANIMATION ============ */
.counter { display: inline-block; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy); transform: translateY(-2px); }

/* ============ KEYFRAMES ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .hero-visual { order: -1; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid, .testimonials-grid, .industries-grid, .hero-stats { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-metric-grid { grid-template-columns: 1fr 1fr; }
}
