/* ============================================================
   Pipelined — styles.css
   Brand: #0a0f1e (navy), #c9a84c (gold), #ffffff (white)
   ============================================================ */

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

:root {
  --navy:        #0a0f1e;
  --navy-mid:    #111827;
  --navy-card:   #161d30;
  --navy-border: #1e2a45;
  --gold:        #c9a84c;
  --gold-light:  #e0bf72;
  --gold-dim:    #a8863c;
  --white:       #ffffff;
  --gray-light:  #d1d5db;
  --gray-mid:    #9ca3af;
  --gray-dark:   #6b7280;
  --font-sans:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.12);
  --transition:  0.2s ease;
  --max-width:   1160px;
}

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

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--navy-mid);
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav__logo span { color: var(--gold); }

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

.nav__links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }

.nav__cta { margin-left: 1.5rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__card-stack {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.pipeline-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.pipeline-card--main {
  position: relative;
  z-index: 2;
}

.pipeline-card--back {
  position: absolute;
  top: -14px;
  left: 14px;
  right: -14px;
  bottom: 14px;
  z-index: 1;
  opacity: 0.6;
  border-radius: var(--radius-lg);
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.card__metric {
  margin-bottom: 1.25rem;
}
.card__metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.card__metric-label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.15rem;
}

.card__bar-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bar-item { width: 100%; }
.bar-item__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: 0.3rem;
}
.bar-item__track {
  height: 6px;
  background: var(--navy-border);
  border-radius: 3px;
  overflow: hidden;
}
.bar-item__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}

.card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--navy-border);
  font-size: 0.78rem;
  color: var(--gray-mid);
}
.card__footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ---------- STATS BAR ---------- */
.stats {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(10,15,30,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-item__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(10,15,30,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- PROBLEM / SOLUTION ---------- */
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem__headline {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.problem__headline em {
  font-style: normal;
  color: var(--gold);
}

.problem__body {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.problem__list-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
}

.solution__panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.solution__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.solution__text {
  color: var(--gray-light);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.solution__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution__checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color 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(--gold-dim), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: rgba(201,168,76,0.25);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--gray-light);
}

.service-card__features li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- HOW IT WORKS ---------- */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), var(--gold));
  opacity: 0.35;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.75rem;
  box-shadow: 0 0 30px rgba(201,168,76,0.15);
}

.step h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- PRICING ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(201,168,76,0.18);
}

.pricing-card--featured:hover {
  transform: translateY(-12px);
}

.pricing-card:not(.pricing-card--featured):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  margin-bottom: 0.25rem;
}

.pricing-card__amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-left: 0.25rem;
}

.pricing-card__tagline {
  font-size: 0.88rem;
  color: var(--gray-mid);
  margin-bottom: 1.75rem;
  min-height: 2.5rem;
}

.pricing-card__divider {
  height: 1px;
  background: var(--navy-border);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.feat-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* ---------- CTA + CONTACT ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-section__text h2 {
  margin-bottom: 1.25rem;
}

.cta-section__text p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-section__guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-section__guarantees li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.guarantee-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.contact-form .btn {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-dark);
  margin-top: 0.75rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__brand {}

.footer__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.footer__logo span { color: var(--gold); }

.footer__domain {
  font-size: 0.83rem;
  color: var(--gray-mid);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact a {
  font-size: 0.88rem;
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-dark);
}

/* ---------- SECTION HEADINGS ---------- */
.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.section__header p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 4rem 0;
  }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__card-stack { max-width: 400px; margin: 0 auto; }

  .problem__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
  .step { padding: 0 1rem 2rem; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(10,15,30,0.15); }
  .stat-item:last-child { border-top: 1px solid rgba(10,15,30,0.15); }
}

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

  .nav__links,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--navy-border);
    padding: 1.5rem;
    gap: 1rem;
  }
  .nav--open .nav__cta {
    display: block;
    margin: 0 1.5rem 1.5rem;
  }
  .nav--open .nav__cta .btn {
    display: block;
    text-align: center;
  }

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

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 540px) {
  .stats__inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: none !important; border-bottom: 1px solid rgba(10,15,30,0.15); }
  .stat-item:last-child { border-bottom: none; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .contact-form { padding: 1.75rem; }
  .solution__panel { padding: 1.75rem; }
}
