/* ═══════════════════════════════════════════════════════════════════
   GALORE LABS  |  styles.css
   Theme: Blue & Refreshing — inspired by visme.co scheme #23
   Palette: Deep Navy #0a2540 · Sky Blue #00a8e8 · Ice #e8f4fd
            Teal Accent #17becf · White #ffffff · Slate #64748b
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────────── */
:root {
  --navy:       #0a2540;
  --navy-mid:   #0f3460;
  --blue:       #00a8e8;
  --blue-light: #38c5f5;
  --teal:       #17becf;
  --ice:        #e8f4fd;
  --ice-deep:   #cce8f7;
  --white:      #ffffff;
  --slate:      #64748b;
  --slate-dark: #334155;
  --slate-light:#94a3b8;
  --border:     #e2eaf2;
  --shadow-sm:  0 1px 4px rgba(10,37,64,.08);
  --shadow-md:  0 4px 20px rgba(10,37,64,.12);
  --shadow-lg:  0 12px 48px rgba(10,37,64,.18);
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --trans:      all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.2; }
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 500; color: var(--navy); }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
h5 { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); }
p { color: var(--slate); font-weight: 300; }

/* ── Layout helpers ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-alt { background: var(--ice); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header .section-title { color: var(--navy); margin: 12px 0 16px; }
.section-sub { font-size: 1.05rem; color: var(--slate); }

/* ── Tag / Eyebrow ────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--ice-deep);
  color: var(--navy-mid);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.tag-light {
  background: rgba(255,255,255,.15);
  color: var(--blue-light);
  border: 1px solid rgba(255,255,255,.25);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,168,232,.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--trans);
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,168,232,.3); }

/* ════════════════════════════ NAVBAR ════════════════════════════════ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--trans);
}
.nav-wrapper.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--trans);
}
.nav-wrapper.scrolled .logo { color: var(--navy); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-light .logo-mark { background: var(--blue); }
.logo-light .logo-text { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  transition: var(--trans);
}
.nav-item:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-wrapper.scrolled .nav-item { color: var(--slate-dark); }
.nav-wrapper.scrolled .nav-item:hover { color: var(--navy); background: var(--ice); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 500;
}
.nav-cta:hover { background: var(--blue-light) !important; box-shadow: 0 4px 16px rgba(0,168,232,.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-wrapper.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════ HERO ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

/* Animated background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00a8e8 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #17becf 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #0f3460 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero content */
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--blue-light);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding: 28px 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ════════════════════════════ TECH CARDS ════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: var(--trans);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--ice-deep); }
.card-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
}
.card-featured h3 { color: var(--white); }
.card-featured p { color: rgba(255,255,255,.65); }
.card-featured .card-link { color: var(--blue-light); }
.card-featured:hover { box-shadow: 0 12px 40px rgba(10,37,64,.35); }

.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; margin-bottom: 20px; }
.card-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--blue);
  transition: var(--trans);
}
.card-link:hover { color: var(--teal); gap: 4px; }

/* ════════════════════════════ MARKETING SPLIT ════════════════════════ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text .section-title { color: var(--navy); margin: 12px 0 20px; text-align: left; }
.split-text > p { margin-bottom: 32px; }
.split-text .btn { margin-top: 8px; }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 10px; height: 10px; min-width: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
}
.feature-list strong { display: block; color: var(--navy); margin-bottom: 4px; font-weight: 500; }
.feature-list p { font-size: .9rem; }

/* Metrics card */
.metrics-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.metrics-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-light);
  margin-bottom: 24px;
}
.metric-row {
  display: grid;
  grid-template-columns: 140px 1fr 56px;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.metric-row span:first-child { font-size: .88rem; color: var(--slate-dark); font-weight: 400; }
.progress-bar {
  height: 8px;
  background: var(--ice-deep);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: 100px;
  animation: grow 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes grow {
  from { width: 0; }
  to   { width: var(--w); }
}
.metric-pct { font-size: .85rem; font-weight: 600; color: var(--blue); text-align: right; }

/* ════════════════════════════ ABOUT ════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.value-card {
  padding: 32px 24px;
  border-top: 3px solid var(--blue);
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ice-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: .88rem; }

.team-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.avatar-1 { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.avatar-2 { background: linear-gradient(135deg, var(--navy-mid), var(--blue)); }
.avatar-3 { background: linear-gradient(135deg, var(--teal), #0f9bad); }
.team-card h4 { margin-bottom: 4px; }
.role { font-size: .82rem; color: var(--blue); font-weight: 500; margin-bottom: 10px; }
.team-card p { font-size: .88rem; }

/* ════════════════════════════ BLOGS ════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card-featured h3 { color: var(--white); } 
.blog-card-featured p { color: rgba(255,255,255,.8); } 
.blog-card-featured .blog-meta .blog-tag { background: rgba(0,168,232,.25); color: var(--blue-light); }
.blog-card-featured .blog-date { color: rgba(255,255,255,.4); }
.blog-card-featured .card-link { color: var(--blue-light); }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--ice-deep);
  color: var(--navy-mid);
}
.blog-date { font-size: .82rem; color: var(--slate-light); }
.blog-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.blog-card p { font-size: .9rem; flex: 1; margin-bottom: 20px; }

/* ════════════════════════════ FAQ ═══════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 28px;
  transition: var(--trans);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--ice-deep); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  transition: var(--trans);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; font-size: .92rem; }

/* ════════════════════════════ CONTACT ═══════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d4a70 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title.light { color: var(--white); text-align: left; margin: 12px 0 16px; }
.light-text { color: rgba(255,255,255,.65); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; width: 40px; }
.contact-item strong { display: block; color: var(--white); margin-bottom: 2px; font-weight: 500; }
.contact-item p { font-size: .9rem; color: rgba(255,255,255,.55); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .82rem; font-weight: 500; color: var(--slate-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--slate-dark);
  background: var(--white);
  transition: var(--trans);
  outline: none;
  resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,168,232,.12);
}
.form-note { font-size: .8rem; color: var(--slate-light); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: #e6f9f1;
  color: #1a7a4a;
  border-radius: var(--r-sm);
  font-weight: 500;
  margin-top: 12px;
  font-size: .95rem;
}
.form-success.visible { display: block; }

/* ════════════════════════════ FOOTER ════════════════════════════════ */
.footer {
  background: #060f1c;
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand { flex: 1; }
.footer-brand p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 260px;
}
.footer-links { display: flex; gap: 64px; }
.footer-col h5 {
  color: rgba(255,255,255,.35);
  font-size: .73rem;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.3); font-size: .82rem; transition: var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ════════════════════════════ SCROLL ANIMATIONS ══════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════ RESPONSIVE ════════════════════════════ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-item { color: rgba(255,255,255,.8); font-size: 1rem; padding: 12px 16px; width: 100%; }
  .nav-wrapper.scrolled .nav-item { color: rgba(255,255,255,.8); }

  /* Hero */
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Layout */
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-visual { order: -1; }
  .metric-row { grid-template-columns: 110px 1fr 50px; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { width: 100%; }
}
