/* ============================================
   i7 Computer Systems LLC — Global Stylesheet
   Brand: Navy, Chrome/Silver, Blue Accent
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg-deep: #050910;
  --bg-primary: #0a1122;
  --bg-elevated: #0e1830;
  --bg-card: #111e35;
  --bg-card-hover: #162848;
  --border-subtle: rgba(148, 163, 184, 0.06);
  --border-light: rgba(148, 163, 184, 0.12);
  --blue: #2979ff;
  --blue-bright: #448aff;
  --blue-dark: #1565c0;
  --blue-glow: rgba(41, 121, 255, 0.12);
  --blue-glow-strong: rgba(41, 121, 255, 0.3);
  --silver: #8b9dc3;
  --chrome: #b8c7df;
  --white: #e8ecf5;
  --pure-white: #f8fafc;
  --navy-text: #4a6082;
  --success: #10b981;
  --error: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--pure-white);
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; }

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 9, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(5, 9, 16, 0.95);
  border-bottom-color: var(--border-light);
}

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

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

.nav-logo {
  height: 42px;
  width: auto;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--silver);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pure-white);
  background: rgba(41, 121, 255, 0.08);
}

.nav-cta {
  background: var(--blue);
  color: var(--pure-white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--blue-bright);
  box-shadow: 0 4px 20px var(--blue-glow-strong);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chrome);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-glow);
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(41, 121, 255, 0.15);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--chrome) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.hero-logo-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(41, 121, 255, 0.15));
}

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--pure-white);
  box-shadow: 0 4px 15px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 8px 30px var(--blue-glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--chrome);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  background: var(--blue-glow);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-bright);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--navy-text);
  margin-top: 2px;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-dark { background: var(--bg-primary); }
.section-elevated { background: var(--bg-elevated); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 640px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 56px;
  max-width: 560px;
}

.section-center {
  text-align: center;
}

.section-center .section-title,
.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(41, 121, 255, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--blue-bright);
  border: 1px solid rgba(41, 121, 255, 0.1);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  transition: gap 0.2s;
}

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

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.service-detail:nth-child(even) { background: var(--bg-primary); }

.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.service-detail-header { position: sticky; top: 100px; }

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(41, 121, 255, 0.12);
}

.service-detail h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail-desc {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.75;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--chrome);
  transition: all 0.2s;
}

.service-list li:hover {
  border-color: rgba(41, 121, 255, 0.15);
  background: var(--bg-card-hover);
}

.service-list li .check {
  color: var(--blue-bright);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== NUMBERED LIST ===== */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.numbered-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.numbered-marker {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blue-glow);
  border: 1px solid rgba(41, 121, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-bright);
}

.numbered-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.numbered-content p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.75;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-banner h2 .gradient {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--chrome) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(41, 121, 255, 0.2);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 1rem;
  color: var(--chrome);
  font-weight: 500;
}

.contact-card a {
  color: var(--blue-bright);
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--pure-white); }

/* ===== FORM ===== */
.form-section {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--silver);
  font-size: 1rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--chrome);
  letter-spacing: 0.3px;
}

.form-label .required {
  color: var(--blue-bright);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--pure-white);
  transition: all 0.2s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--navy-text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b9dc3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-primary);
  color: var(--white);
}

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

.form-submit {
  margin-top: 12px;
}

/* ===== ALERT MESSAGES ===== */
.alert {
  padding: 16px 24px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--error);
}

/* ===== ABOUT SECTIONS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.about-visual img {
  max-width: 280px;
  filter: drop-shadow(0 10px 40px rgba(41, 121, 255, 0.12));
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(41, 121, 255, 0.2);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ===== COVERAGE SECTION ===== */
.coverage-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chrome);
}

.coverage-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-text);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--navy-text);
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }
.animate-in.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-logo-img { max-width: 300px; }
  .hero-content { max-width: 100%; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-header { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 9, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-bar { gap: 28px; }

  .section { padding: 72px 20px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-logo-img { max-width: 220px; }
  .coverage-badges { flex-direction: column; align-items: center; }
}
