# Chill IT Solutions — Complete CSS Rebuild

Replace your entire existing `styles.css` file with the CSS below.

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

:root {
  --bg: #0b1120;
  --bg-secondary: #111827;
  --surface: #182235;
  --surface-light: #1f2c44;
  --border: rgba(255,255,255,0.08);

  --text: #f8fafc;
  --text-muted: #94a3b8;

  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --teal: #14b8a6;
  --orange: #fb923c;
  --gold: #fbbf24;

  --shadow: 0 10px 40px rgba(0,0,0,0.35);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

section {
  padding: 7rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

h1 em,
h2 em {
  font-style: normal;
  color: var(--blue-light);
}

p {
  color: var(--text-muted);
}

.section-sub {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  color: var(--blue-light);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 2rem;

  background: rgba(11,17,32,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
}

.nav-logo span {
  color: var(--blue-light);
}

.logo-img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(59,130,246,0.3);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(20,184,166,0.18), transparent 30%),
    var(--bg);

  padding-top: 8rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge,
.vet-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;

  margin-bottom: 1rem;
}

.hero-badge {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue-light);
}

.vet-badge-inline {
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
  color: var(--gold);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-card-main {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}

.hero-stat-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1rem;
  color: white;
  font-weight: 700;
}

.float-badge.top {
  top: -20px;
  right: -20px;
}

/* TRUST BAR */
.trust-bar {
  background: #07101f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;

  padding: 1.4rem 2rem;
}

.trust-item {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

/* SERVICES */
#services {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,0.4);
  background: rgba(255,255,255,0.06);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.icon-blue { background: rgba(59,130,246,0.18); }
.icon-teal { background: rgba(20,184,166,0.18); }
.icon-orange { background: rgba(251,146,60,0.18); }
.icon-purple { background: rgba(168,85,247,0.18); }

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* CERTS */
#certs {
  background: var(--bg);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.35);
}

.cert-highlight {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.cert-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cert-name {
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.cert-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cert-badge {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(59,130,246,0.15);
  color: var(--blue-light);
}

/* WHY */
#why {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

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

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-visual {
  background: linear-gradient(135deg, #172554 0%, #1d4ed8 100%);
  border-radius: 30px;
  padding: 2.5rem;
}

.roadmap-step {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VETERAN */
.veteran-section {
  background:
    radial-gradient(circle at top right, rgba(251,191,36,0.08), transparent 25%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.veteran-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vet-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);

  color: var(--gold);

  padding: 0.45rem 1rem;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  margin-bottom: 1rem;
}

.veteran-section p {
  line-height: 1.9;
  margin-bottom: 1rem;
}

.vet-values {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.vet-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  padding: 1.25rem;
  border-radius: 20px;
}

.vet-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(251,191,36,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.vet-emblem {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 3rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow: var(--shadow);
}

.vet-star-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;

  background: radial-gradient(circle, rgba(251,191,36,0.16), rgba(251,191,36,0.04));
  border: 1px solid rgba(251,191,36,0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 5rem;

  margin-bottom: 2rem;
}

.vet-ribbon {
  margin-top: 2rem;

  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);

  color: var(--gold);

  padding: 0.8rem 1.4rem;
  border-radius: 999px;

  font-weight: 800;
}

/* PROCESS */
#process {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}

.process-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(59,130,246,0.18);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 1rem;

  font-size: 1.4rem;
  font-weight: 900;
}

/* ── SERVICE AREA ── */

#area {
  background: white;
  padding: 6rem 2.5rem;
}

#area .section-tag {
  display: inline-block;
  background: #CCFBF1;
  color: #0F766E;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

#area h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

#area h2 em {
  color: #2563eb;
  font-style: normal;
}

#area .section-sub {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  opacity: 1;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.area-map-placeholder {
  background: linear-gradient(135deg, #DBEAFE 0%, #D1FAE5 100%);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid #E5E7EB;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.area-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.10), transparent 35%),
    radial-gradient(circle at bottom left, rgba(13,148,136,0.10), transparent 35%);
  pointer-events: none;
}

.map-pin-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.map-pin {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.map-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.18);
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.area-region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.region-pill {
  background: rgba(255,255,255,0.96);
  border: 2px solid #CBD5E1;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.region-pill:hover {
  transform: translateY(-2px);
  border-color: #2563eb;
  box-shadow: 0 6px 16px rgba(37,99,235,0.12);
}

.region-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  box-shadow: 0 6px 18px rgba(37,99,235,0.22);
}

.area-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.area-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #F9FAFB;
  border-radius: 16px;
  padding: 1.25rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.area-info-card:hover {
  border-color: #2563eb;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,99,235,0.08);
}

.area-info-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.area-info-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.area-info-card p {
  font-size: 0.92rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .area-region-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .region-pill {
    width: 100%;
    text-align: center;
  }

  .area-map-placeholder {
    padding: 2rem 1.5rem;
  }

  #area {
    padding: 4rem 1.25rem;
  }
}

/* CONTACT */
#contact {
  background:
    radial-gradient(circle at top left,
      rgba(37,99,235,0.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(13,148,136,0.08),
      transparent 30%),
    var(--bg);

  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
  max-width: 540px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  color: var(--text);
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-detail:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.contact-detail a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 800;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(59,130,246,0.15);
  font-size: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row .form-group {
  margin-bottom: 1.4rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148,163,184,0.6);
}

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

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  background: rgba(255,255,255,0.09);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(96,165,250,0.5);
  box-shadow: 0 0 0 5px rgba(59,130,246,0.12);
  transform: translateY(-1px);
}

.h-captcha {
  margin-bottom: 1.4rem;
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-family: 'Nunito', sans-serif;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 14px 30px rgba(59,130,246,0.3);
  box-sizing: border-box;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(59,130,246,0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 24px;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }

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

/* FOOTER */
footer {
  background: #050b16;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(255,255,255,0.7);
}

footer a {
  color: var(--blue-light);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-content,
  .why-grid,
  .veteran-inner,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.25rem;
  }

  nav {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-visual {
    order: -1;
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
