/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --navy-dark:  #091628;
  --blue:       #1e5fa8;
  --blue-mid:   #2d7dd2;
  --blue-light: #4fa3e0;
  --silver:     #c8d8e8;
  --silver-light: #eaf1f8;
  --white:      #ffffff;
  --text-dark:  #0d1f3c;
  --text-mid:   #3a5270;
  --text-light: #7a9ab8;
  --accent:     #4fa3e0;
  --gradient:   linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 50%, #1e5fa8 100%);
  --card-shadow: 0 4px 24px rgba(13,31,60,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79,163,224,0.15);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(79,163,224,0.5));
}

.nav-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-name span:last-child {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(79,163,224,0.12);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--blue-mid) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(30,95,168,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(79,163,224,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,163,224,0.12);
  border: 1px solid rgba(79,163,224,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--blue-light), #7ec8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(30,95,168,0.4);
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,95,168,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79,163,224,0.2);
  animation: spin 18s linear infinite;
}

.hero-logo-wrap::before {
  width: 320px;
  height: 320px;
}

.hero-logo-wrap::after {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 25s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(79,163,224,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: left; }

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(30,95,168,0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(30,95,168,0.2);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--silver-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(13,31,60,0.06);
  transition: transform var(--transition), box-shadow 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(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,31,60,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(30,95,168,0.1), rgba(79,163,224,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: 0 24px 64px rgba(13,31,60,0.2);
}

.about-logo {
  width: 72%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(79,163,224,0.4));
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.14);
  text-align: center;
  border: 1px solid var(--silver-light);
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-badge span {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 32px;
}

.about-text .section-title { font-size: 2rem; }

.about-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--silver-light);
  border-radius: 10px;
}

.pillar-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pillar-text {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--navy-dark);
}

.process .section-title { color: var(--white); }
.process .section-sub { color: var(--silver); }
.process .section-tag { background: rgba(79,163,224,0.12); color: var(--blue-light); border-color: rgba(79,163,224,0.25); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 16px;
}

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(79,163,224,0.1);
  padding: 40px 28px;
  position: relative;
  text-align: center;
  transition: background var(--transition);
}

.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child  { border-radius: 0 16px 16px 0; }

.step:hover {
  background: rgba(79,163,224,0.08);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(79,163,224,0.12);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why {
  padding: 120px 0;
  background: var(--silver-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(13,31,60,0.06);
  transition: transform var(--transition);
}

.why-item:hover { transform: translateX(4px); }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.why-cta-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.why-cta-side .section-header { text-align: left; margin-bottom: 0; }
.why-cta-side .section-title { font-size: 2rem; }

.trusted-by {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trusted-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.trusted-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.trusted-pill {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(30,95,168,0.1), rgba(79,163,224,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cd-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.cd-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form {
  background: var(--silver-light);
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid rgba(13,31,60,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid rgba(13,31,60,0.12);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,95,168,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(79,163,224,0.1);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(79,163,224,0.4));
}

.footer-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-name span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span:last-child {
  font-size: 0.65rem;
  color: var(--blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(79,163,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(79,163,224,0.1);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--silver);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--silver); }

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p { color: var(--text-mid); font-size: 0.95rem; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(9,22,40,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(79,163,224,0.15);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--silver);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: rgba(79,163,224,0.1);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:first-child { border-radius: 16px 0 0 0; }
  .steps .step:last-child  { border-radius: 0 0 16px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { width: 260px; height: 260px; }
  .hero-logo { width: 180px; height: 180px; }
  .hero-logo-wrap::before { width: 220px; height: 220px; }
  .hero-logo-wrap::after { width: 255px; height: 255px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .steps { grid-template-columns: 1fr; }
  .steps .step { border-radius: 0; }
  .steps .step:first-child { border-radius: 16px 16px 0 0; }
  .steps .step:last-child  { border-radius: 0 0 16px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
}
