/* ============ VARIABLES ============ */
:root {
  --blue-900: #011c4d;
  --blue-800: #012a73;
  --blue-700: #0043b3;
  --blue-600: #0057ff;
  --blue-500: #0066ff;
  --blue-400: #2c8bff;
  --cyan-400: #00c2ff;
  --cyan-300: #5fdcff;
  --ink: #0b1b34;
  --gray-600: #56637a;
  --gray-300: #dbe4f3;
  --gray-100: #f4f7fd;
  --white: #ffffff;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 18px;
  --shadow-lg: 0 30px 60px -20px rgba(0, 67, 179, 0.35);
  --shadow-md: 0 15px 35px -12px rgba(0, 67, 179, 0.25);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0, 87, 255, 0.55);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(0, 87, 255, 0.7);
}
.btn--white {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.25);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -8px rgba(0,0,0,0.3); }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--small { padding: 11px 22px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(2, 20, 55, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,20,60,0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo__icon svg { width: 100%; height: 100%; }
.logo__icon--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset, 0 6px 18px -6px rgba(0,194,255,0.85), 0 0 22px -4px rgba(0,194,255,0.65);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo__icon--brand img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo:hover .logo__icon--brand {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6) inset, 0 8px 22px -6px rgba(0,194,255,0.95), 0 0 30px -2px rgba(0,194,255,0.85);
}
.logo__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo__text b { color: var(--cyan-300); font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan-300);
  transition: width var(--transition);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}
.burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #001a4d 0%, #0043b3 45%, #0066ff 80%, #00a3ff 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__pattern { width: 100%; height: 100%; }
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,194,255,0.35), transparent 70%);
  filter: blur(20px);
}
.hero__inner { position: relative; z-index: 1; }

.hero__badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 850px;
  margin-bottom: 24px;
}
.hero__title span {
  background: linear-gradient(90deg, var(--cyan-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 36px;
  max-width: 900px;
}
.stat { color: #fff; }
.stat__num, .stat__plus {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--cyan-300);
}
.stat__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}

/* ============ SECTION COMMON ============ */
.eyebrow {
  display: inline-block;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--blue-600);
}
.eyebrow--center { padding-left: 0; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: var(--cyan-300); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 700px; }
.section-title--light { color: #fff; }

.section-text {
  color: var(--gray-600);
  font-size: 16px;
  max-width: 560px;
}
.section-text--center { margin: 0 auto; text-align: center; max-width: 620px; }
.section-text--light { color: rgba(255,255,255,0.8); }

.section-head { margin-bottom: 56px; }

/* ============ ABOUT ============ */
.about { padding: 120px 0; background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  z-index: 2;
}
.about__card--1 {
  top: 24px; left: -30px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  color: #fff;
}
.about__card--1 div { display: flex; flex-direction: column; font-size: 13px; }
.about__card--1 b { font-size: 15px; }
.about__card--2 {
  bottom: 24px; right: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.about__card--2 b { font-family: var(--font-head); font-size: 26px; color: var(--blue-600); }
.about__card--2 span { font-size: 13px; color: var(--gray-600); }

.about__content .btn { margin-top: 12px; }
.about__list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 6px; top: 4px;
  width: 6px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ============ SERVICES / GRID CARDS ============ */
.services { padding: 100px 0; background: var(--gray-100); }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 10px 30px -18px rgba(0,50,150,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-300);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p { color: var(--gray-600); font-size: 14.5px; }

/* ============ MAINTENANCE / STEPS ============ */
.maintenance { padding: 100px 0; background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 34px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #f4f8ff, #eaf2ff);
  border: 1px solid var(--gray-300);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-family: var(--font-head); font-size: 17px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray-600); }

/* ============ PARTNERS ============ */
.partners { padding: 100px 0; background: var(--gray-100); }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-logo {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-700);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.partner-logo span { display: block; font-size: 12px; font-weight: 600; color: var(--gray-600); letter-spacing: 1px; margin-top: 2px; }
.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  color: #fff;
}
.partner-logo:hover span { color: rgba(255,255,255,0.85); }

/* ============ CONTACTS / REQUEST ============ */
.contacts {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.contacts__bg {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #001a4d, #0043b3 55%, #0066ff);
  z-index: 0;
}
.contacts__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contacts__list { margin: 34px 0; display: flex; flex-direction: column; gap: 22px; }
.contacts__list li { display: flex; align-items: center; gap: 16px; }
.contacts__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.contacts__icon svg { width: 20px; height: 20px; }
.contacts__list b { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contacts__list a, .contacts__list span { color: rgba(255,255,255,0.8); font-size: 15px; }
.contacts__list a:hover { color: var(--cyan-300); }

.socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social svg { width: 19px; height: 19px; }
.social:hover { background: var(--cyan-400); border-color: var(--cyan-400); transform: translateY(-4px); }

/* ---- form ---- */
.request-form {
  background: #fff;
  border-radius: 22px;
  padding: 42px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.request-form h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}
.request-form__subtitle { color: var(--gray-600); font-size: 14px; margin-bottom: 26px; }

.field { margin-bottom: 18px; position: relative; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--gray-100);
  resize: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.12);
  background: #fff;
}
.field.invalid input, .field.invalid textarea { border-color: #ff4d5e; }
.field__error {
  display: none;
  color: #ff4d5e;
  font-size: 12.5px;
  margin-top: 5px;
}
.field.invalid .field__error { display: block; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 22px;
  cursor: pointer;
}
.checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue-600); }

.request-form__success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.request-form__success svg { width: 22px; height: 22px; flex-shrink: 0; }
.request-form__success.show { display: flex; animation: fadeSlide .5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

.request-form__error {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 77, 94, 0.1);
  border: 1px solid rgba(255, 77, 94, 0.3);
  color: #d8203a;
  font-size: 14px;
  font-weight: 500;
}
.request-form__error.show { display: block; animation: fadeSlide .5s ease; }

.field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.btn[disabled] { opacity: 0.7; cursor: not-allowed; pointer-events: none; }

/* ============ FOOTER ============ */
.footer { background: var(--blue-900); padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 16px; max-width: 280px; }
.logo--footer { margin-bottom: 4px; }
.footer__col h4 { color: #fff; font-family: var(--font-head); font-size: 15px; margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col span, .footer__col p { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer__col a:hover { color: var(--cyan-300); }
.footer__col .btn { margin-top: 6px; align-self: flex-start; }

.footer__bottom { padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* ============ TO TOP ============ */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { transform: translateY(-4px); }

/* ============ DEV NOTICE ============ */
.dev-notice {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 380px;
  padding: 18px 44px 18px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(1, 28, 77, 0.96), rgba(0, 67, 179, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.dev-notice.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dev-notice__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
}
.dev-notice__icon svg { width: 20px; height: 20px; }
.dev-notice__text { display: flex; flex-direction: column; gap: 4px; }
.dev-notice__text b {
  font-family: var(--font-head);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
}
.dev-notice__text span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}
.dev-notice__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}
.dev-notice__close svg { width: 12px; height: 12px; }
.dev-notice__close:hover { background: rgba(255, 255, 255, 0.15); transform: rotate(90deg); }

@media (max-width: 560px) {
  .dev-notice {
    left: 16px; right: 16px; bottom: 16px;
    max-width: none;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about__inner, .contacts__inner { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__media { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: linear-gradient(180deg, #001a4d, #0043b3);
    padding: 100px 32px;
    gap: 28px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
}

@media (max-width: 640px) {
  .grid--3, .steps, .partners__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__card { position: static; margin-top: 16px; display: inline-flex; }
  .request-form { padding: 28px 22px; }
  .hero { padding-top: 120px; }
}
