/* ============================================================
   한빛정보통신 · 코페이 공식 가맹점 — style.css
   Color: Dark Navy #0B192E / Orange accent #FF6B00
   ============================================================ */

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

:root {
  --navy-900: #060f1c;
  --navy-800: #0B192E;
  --navy-700: #102340;
  --navy-600: #163059;
  --navy-400: #2a4f82;
  --orange:   #FF6B00;
  --orange-lt: #ff8c30;
  --white:    #ffffff;
  --gray-100: #f4f6fa;
  --gray-200: #e8ecf3;
  --gray-400: #a0aec0;
  --gray-600: #718096;
  --text:     #1a202c;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.2);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --header-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

/* ---------- Container ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.btn--primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,.5);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(6,15,28,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  z-index: 999;
  transition: background var(--transition);
}
.header.scrolled { background: rgba(6,15,28,.98); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.logo__icon { font-size: 22px; }
.logo__svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
}
.logo__accent { color: var(--orange); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__btn { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-800);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(255,107,0,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(22,48,89,.8) 0%, transparent 70%),
    linear-gradient(160deg, #0B192E 0%, #060f1c 100%);
  z-index: 0;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,107,0,.15);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}
.hero__badge {
  display: inline-block;
  background: rgba(255,107,0,.2);
  border: 1px solid rgba(255,107,0,.5);
  color: var(--orange-lt);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown .8s ease both;
}
.hero__title {
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInDown .9s ease .1s both;
}
.hero__accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero__accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  animation: expandWidth 1s ease 1s both;
}
@keyframes expandWidth { from { width: 0; } to { width: 100%; } }

.hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  animation: fadeInDown 1s ease .2s both;
  line-height: 1.8;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 1s ease .3s both;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px 40px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease .4s both;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat__unit { font-size: 20px; }
.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.stat__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.15);
  margin: 0 20px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  z-index: 2;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translate(-2px,-2px); }
  50%      { transform: rotate(45deg) translate(2px, 2px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 100px 0; }
.section--dark {
  background: var(--navy-800);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__tag {
  display: inline-block;
  background: rgba(255,107,0,.12);
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,107,0,.3);
}
.section--dark .section__tag { background: rgba(255,107,0,.2); }
.section__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section--dark .section__title { color: var(--white); }
.section__desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
}
.section--dark .section__desc { color: rgba(255,255,255,.6); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px);
}
.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.benefit-card__icon {
  font-size: 44px;
  margin-bottom: 20px;
}
.benefit-card__title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy-800);
}
.benefit-card__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.compare__card {
  flex: 1;
  border-radius: var(--radius);
  padding: 40px 36px;
}
.compare__card--bad {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.compare__card--good {
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
}
.compare__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.compare__emoji { font-size: 36px; }
.compare__card-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.compare__list {
  list-style: none;
}
.compare__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.compare__list li:last-child { border-bottom: none; }
.compare__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.step__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.step__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 60px;
  font-weight: 700;
}

/* ============================================================
   TARGETS
   ============================================================ */
.targets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.target-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.target-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.target-card:hover {
  border-color: var(--orange);
  background: rgba(255,107,0,.08);
  transform: translateY(-4px);
}
.target-card__icon { font-size: 36px; margin-bottom: 14px; }
.target-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.target-card__desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }
.targets__cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
}
.faq__item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}
.faq__q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq__q:hover { background: var(--gray-100); }
.faq__q[aria-expanded="true"] { background: var(--navy-800); color: var(--white); }
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--orange);
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
}
.faq__a.open { max-height: 200px; }
.faq__a p {
  padding: 20px 28px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--gray-100); }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.contact__info {
  background: var(--navy-800);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.contact__info-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact__info-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}
.contact__phone {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.contact__phone:hover { color: var(--orange-lt); }
.contact__hours { margin-bottom: 28px; }
.contact__hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
.contact__hours-label { color: rgba(255,255,255,.6); }
.contact__hours-val { font-weight: 600; }
.kakao-link {
  color: #FAE100;
  font-weight: 700;
  transition: opacity 0.2s;
}
.kakao-link:hover { opacity: 0.8; text-decoration: underline; }
.blog-link {
  color: #03C75A;
  font-weight: 700;
  transition: opacity 0.2s;
}
.blog-link:hover { opacity: 0.8; text-decoration: underline; }
.contact__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__feature {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.form__type-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.type-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  background: none;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.type-btn.active {
  border-color: var(--orange);
  background: rgba(255,107,0,.08);
  color: var(--orange);
}
.type-btn:hover { border-color: var(--orange); color: var(--orange); }

.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.req { color: var(--orange); }
.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,.12);
}
.form__input.error { border-color: #e53e3e; }
.form__select { appearance: none; cursor: pointer; }
.form__textarea { min-height: 110px; resize: vertical; }
.form__error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
}
.form__error.show { display: block; }
.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.form__check label { font-size: 14px; cursor: pointer; }
.form__check .form__error { width: 100%; margin-top: 0; }

.form__success {
  text-align: center;
  padding: 32px;
  background: rgba(255,107,0,.08);
  border: 2px solid rgba(255,107,0,.3);
  border-radius: 14px;
  margin-top: 20px;
}
.form__success span { font-size: 48px; }
.form__success p { font-size: 16px; font-weight: 600; color: var(--navy-800); margin-top: 12px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.footer__name { color: var(--white); }
.footer__copy {
  font-size: 13px;
  color: var(--gray-400);
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 10px;
  margin-left: 4px;
  font-weight: 400;
}
.footer__info { text-align: right; }
.footer__info p { font-size: 13px; color: var(--gray-400); margin-bottom: 4px; }
.footer__info a { color: var(--orange); font-weight: 600; }
.footer__info a:hover { text-decoration: underline; }

/* Top Button */
.top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.top-btn.show { opacity: 1; pointer-events: all; }
.top-btn:hover { background: var(--orange-lt); transform: translateY(-4px); }

/* Kakao Float Button */
.kakao-float-btn {
  position: fixed;
  bottom: 90px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FAE100;
  color: #3C1E1E;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all var(--transition);
  white-space: nowrap;
}
.kakao-float-btn:hover {
  background: #f5d800;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .targets__grid  { grid-template-columns: repeat(2, 1fr); }
  .contact__wrap  { grid-template-columns: 1fr; }
  .contact__info  { position: static; }
  .compare__grid  { flex-direction: column; }
  .compare__vs    { width: 100%; margin: 8px 0; }
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy-900);
    padding: 20px;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .nav__link { font-size: 16px; padding: 12px 16px; width: 100%; }
  .nav__btn { margin-left: 0; width: 100%; }
  .hamburger { display: flex; }

  .benefits__grid { grid-template-columns: 1fr; }
  .targets__grid  { grid-template-columns: 1fr; }

  .hero__stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat__divider { width: 60px; height: 1px; }

  .process__steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step__arrow { transform: rotate(90deg); margin: -8px 0; }

  .contact__form  { padding: 32px 24px; }
  .contact__info  { padding: 32px 24px; }
  .contact__phone { font-size: 22px; }

  .hero__cta { flex-direction: column; align-items: center; }
  .section { padding: 72px 0; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__info  { text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .form__type-selector { flex-direction: column; }
}
