/* mobilido.hu – Main Stylesheet */

:root {
  --sky-50:  #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --sun-300: #fde047;
  --sun-400: #facc15;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --green-500: #22c55e;
  --white: #ffffff;
  --radius:    1rem;
  --radius-sm: 0.5rem;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--slate-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
p  { color: var(--slate-600); }

.container    { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.container--sm{ max-width: 780px;  margin: 0 auto; padding: 0 1.25rem; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 16px rgba(0,0,0,.08);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo { display: flex; align-items: center; gap: .6rem; }
.navbar__logo img { height: 38px; width: auto; }
.navbar__logo-text {
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar__logo-text em { font-style: normal; color: var(--sun-300); font-weight: 400; font-size: .9em; }
.navbar.scrolled .navbar__logo-text     { color: var(--sky-700); }
.navbar.scrolled .navbar__logo-text em { color: var(--sky-500); }

.navbar__menu { display: flex; align-items: center; gap: 2rem; }
.navbar__menu a {
  font-size: .93rem; font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
}
.navbar.scrolled .navbar__menu a { color: var(--slate-700); }
.navbar__menu a:hover { color: var(--white); }
.navbar.scrolled .navbar__menu a:hover { color: var(--sky-600); }
.navbar__menu .nav-active { color: var(--white) !important; font-weight: 700; }
.navbar.scrolled .navbar__menu .nav-active { color: var(--sky-700) !important; }

.navbar__cta {
  background: var(--white) !important;
  color: var(--sky-700) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 2rem !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  transition: all var(--transition) !important;
}
.navbar.scrolled .navbar__cta {
  background: var(--sky-600) !important;
  color: var(--white) !important;
}
.navbar__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }

.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--slate-800); }
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--sky-800);
  flex-direction: column; gap: 0;
  padding: 5rem 2rem 2rem;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 1.4rem; font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #38bdf8 0%, #0369a1 45%, #0c1445 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem 0 5rem;
}
/* Animated clouds */
.hero-cloud {
  position: absolute; pointer-events: none;
  background: rgba(255,255,255,.07); border-radius: 60px;
}
.hero-cloud::before, .hero-cloud::after {
  content: ''; position: absolute;
  background: rgba(255,255,255,.07); border-radius: 50%;
}
.hero-cloud-1 {
  width: 220px; height: 65px; top: 12%; left: -240px;
  animation: cloudDrift 28s linear infinite;
}
.hero-cloud-1::before { width: 110px; height: 85px; top:-42px; left:30px; }
.hero-cloud-1::after  { width:  75px; height: 60px; top:-32px; left:110px; }
.hero-cloud-2 {
  width: 320px; height: 85px; top: 38%; left: -340px;
  animation: cloudDrift 38s linear infinite 10s;
}
.hero-cloud-2::before { width: 150px; height: 105px; top:-52px; left:55px; }
.hero-cloud-2::after  { width: 105px; height: 85px;  top:-42px; left:155px; }
.hero-cloud-3 {
  width: 160px; height: 50px; top: 65%; left: -180px;
  animation: cloudDrift 22s linear infinite 5s;
}
.hero-cloud-3::before { width: 85px; height: 68px; top:-36px; left:22px; }
.hero-cloud-3::after  { width: 62px; height: 52px; top:-26px; left:75px; }
@keyframes cloudDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 500px)); }
}
/* Floating sparkles */
.sparkle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: twinkle var(--d,3s) ease-in-out infinite var(--delay,0s);
}
@keyframes twinkle {
  0%,100% { opacity:.15; transform:scale(1); }
  50%      { opacity:.7;  transform:scale(1.4); }
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: .4rem 1.1rem; border-radius: 2rem;
  font-size: .85rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__title { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.hero__title em { font-style: normal; color: var(--sun-300); }
.hero__subtitle {
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 540px; margin: 0 auto 2.5rem;
}
.hero__phone-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
}
.hero__phone-label {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .1em;
}
.hero__phone-number {
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1;
}
.hero__phone-number a { color: var(--white); transition: color var(--transition); }
.hero__phone-number a:hover { color: var(--sun-300); }
.hero__phone-hint { font-size: .78rem; color: rgba(255,255,255,.55); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.5); font-size: .72rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 3rem;
  font-weight: 600; font-size: 1rem;
  transition: all var(--transition); line-height: 1; cursor: pointer;
}
.btn--primary { background: var(--sun-300); color: var(--slate-900); }
.btn--primary:hover { background: var(--sun-400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(250,204,21,.4); }
.btn--white { background: var(--white); color: var(--sky-700); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--sky { background: var(--sky-600); color: var(--white); }
.btn--sky:hover { background: var(--sky-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(2,132,199,.35); }
.btn--call {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: var(--white); font-size: 1.1rem; padding: 1rem 2.5rem;
  animation: pulseGreen 2s ease-in-out infinite;
}
.btn--call:hover { background: linear-gradient(135deg,#16a34a,#15803d); transform: translateY(-2px); }
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  50%      { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn--sm { padding: .55rem 1.2rem; font-size: .88rem; }
.btn--block { width: 100%; justify-content: center; }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--gray  { background: var(--slate-50); }
.section--sky   { background: linear-gradient(135deg,#0ea5e9 0%,#0369a1 100%); }
.section--dark  { background: var(--slate-900); }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__label {
  display: inline-block;
  background: var(--sky-100); color: var(--sky-700);
  padding: .3rem 1rem; border-radius: 2rem;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .9rem;
}
.section--sky  .section__label { background: rgba(255,255,255,.2); color: var(--white); }
.section--dark .section__label { background: rgba(255,255,255,.1); color: var(--sky-300); }
.section__title  { margin-bottom: .9rem; }
.section--sky  .section__title  { color: var(--white); }
.section--dark .section__title  { color: var(--white); }
.section__desc   { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section--sky  .section__desc   { color: rgba(255,255,255,.85); }
.section--dark .section__desc   { color: rgba(255,255,255,.65); }

/* ── HOW IT WORKS ─────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px; background: var(--sky-200); z-index: 0;
}
.step { text-align: center; padding: 2rem 1.25rem; position: relative; z-index: 1; }
.step__num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg,var(--sky-400),var(--sky-700));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(14,165,233,.3);
  font-size: 1.8rem; font-weight: 900; color: var(--white);
}
.step__icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg,var(--sky-400),var(--sky-700));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(14,165,233,.3);
}
.step__icon-wrap svg { width: 34px; height: 34px; color: var(--white); }
.step h3 { margin-bottom: .65rem; }

/* ── PRICING ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { border-color: var(--sky-400); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card--pop {
  border-color: var(--sky-500);
  box-shadow: 0 8px 40px rgba(14,165,233,.22);
  transform: scale(1.04);
}
.pricing-card--pop:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--sky-500); color: var(--white);
  font-size: .72rem; font-weight: 700;
  padding: .22rem .9rem; border-radius: 0 0 .65rem .65rem;
  white-space: nowrap; text-transform: uppercase; letter-spacing: .05em;
}
.pricing-card__icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--sky-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.pricing-card__icon svg { width: 22px; height: 22px; color: var(--sky-600); }
.pricing-card__name {
  font-size: .82rem; font-weight: 700; color: var(--slate-500);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .4rem;
}
.pricing-card__price {
  font-size: 2.4rem; font-weight: 800;
  color: var(--slate-900); line-height: 1; margin-bottom: .2rem;
}
.pricing-card__price sup { font-size: 1rem; vertical-align: super; font-weight: 600; }
.pricing-card__per   { font-size: .82rem; color: var(--slate-500); margin-bottom: 1.1rem; }
.pricing-card__saving {
  display: inline-block;
  background: #dcfce7; color: #16a34a;
  font-size: .78rem; font-weight: 700;
  padding: .18rem .75rem; border-radius: 2rem;
  margin-bottom: 1.1rem;
}
.pricing-card__features { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .55rem; }
.pricing-card__features li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .88rem; color: var(--slate-600);
}
.pricing-card__features li::before { content:'✓'; color:var(--sky-600); font-weight:800; flex-shrink:0; margin-top:.06rem; }

/* ── PHONE FORM ─────────────────────────────────── */
.phone-form { max-width: 480px; margin: 0 auto; }
.phone-form__group {
  display: flex;
  border: 2px solid var(--slate-200);
  border-radius: 3rem; overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.phone-form__group:focus-within {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}
.phone-form__prefix {
  display: flex; align-items: center;
  padding: 0 1rem; font-weight: 600; font-size: .93rem;
  color: var(--slate-500); white-space: nowrap;
  border-right: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.phone-form input[type="tel"] {
  flex: 1; padding: .875rem 1rem;
  border: none; outline: none;
  font-size: 1rem; font-family: inherit; color: var(--slate-900);
}
.phone-form input::placeholder { color: var(--slate-400); }
.phone-form .btn { border-radius: 0 3rem 3rem 0; white-space: nowrap; padding: 0 1.5rem; }
.phone-form__hint { text-align: center; font-size: .78rem; color: var(--slate-400); margin-top: .65rem; }

/* ── STATS / TRUST ─────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 2rem; }
.stat { text-align: center; }
.stat__number { font-size: 2.6rem; font-weight: 800; color: var(--sky-600); line-height: 1; }
.stat__label  { font-size: .88rem; color: var(--slate-600); margin-top: .25rem; }
.section--sky .stat__number { color: var(--white); }
.section--sky .stat__label  { color: rgba(255,255,255,.75); }

/* ── FAQ ──────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--slate-200); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; cursor: pointer;
  font-weight: 600; color: var(--slate-800); gap: 1rem;
}
.faq__q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--sky-600); }
.faq__item.open .faq__q svg { transform: rotate(180deg); }
.faq__a { display: none; padding-bottom: 1.2rem; color: var(--slate-600); line-height: 1.75; }
.faq__item.open .faq__a { display: block; }

/* ── FORMS ────────────────────────────────────── */
.form-group  { margin-bottom: 1.2rem; }
.form-label  { display: block; font-size: .88rem; font-weight: 600; color: var(--slate-700); margin-bottom: .35rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--slate-200); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit; color: var(--slate-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--sky-500); box-shadow: 0 0 0 4px rgba(14,165,233,.1); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── ALERTS ───────────────────────────────────── */
.alert { padding: .875rem 1.1rem; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1rem; }
.alert--success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.alert--error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.alert--info    { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(140deg,#38bdf8 0%,#0369a1 50%,#0c1445 100%);
  border-radius: var(--radius); padding: 4rem 2rem;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: .9rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── PAGE HEADER ──────────────────────────────── */
.page-header {
  background: linear-gradient(135deg,#0ea5e9 0%,#0369a1 100%);
  padding: 7rem 0 4rem; text-align: center; color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: .9rem; }
.page-header p  { color: rgba(255,255,255,.85); font-size: 1.1rem; }

/* ── CARD ─────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }

/* ── PACKAGE SUMMARY ──────────────────────────── */
.pkg-summary {
  background: var(--sky-50); border: 2px solid var(--sky-200);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.pkg-summary__name  { font-weight: 700; color: var(--sky-700); font-size: 1.1rem; }
.pkg-summary__price { font-size: 2rem; font-weight: 800; color: var(--slate-900); }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--slate-900); color: rgba(255,255,255,.65); padding: 3rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .6rem; letter-spacing: -.03em; }
.footer__brand em { font-style:normal; color: var(--sky-400); font-weight: 400; font-size: .9em; }
.footer__tagline { font-size: .9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer__phone a { font-size: 1.25rem; font-weight: 700; color: var(--sky-400); }
.footer__phone a:hover { color: var(--sky-300); }
.footer__heading { font-weight: 700; color: var(--white); margin-bottom: .9rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--sky-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .83rem;
}

/* ── UTILITY ──────────────────────────────────── */
.text-center { text-align: center; }
.text-sky { color: var(--sky-600); }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem} .mb-4{margin-bottom:2rem}
.flex-center{display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card--pop { transform: none; }
  .pricing-card--pop:hover { transform: translateY(-4px); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .navbar__menu      { display: none; }
  .navbar__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero__phone-card { padding: 1.25rem 1.75rem; }
  .hero__phone-number { font-size: 2rem; }
  .phone-form__group { flex-direction: column; border-radius: var(--radius); }
  .phone-form__prefix { border-right: none; border-bottom: 1px solid var(--slate-200); border-radius: 0; padding: .75rem 1rem; }
  .phone-form input[type="tel"] { padding: .75rem 1rem; }
  .phone-form .btn { border-radius: 0 0 var(--radius) var(--radius); padding: .875rem 1rem; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 6rem 0 3.5rem; }
  .btn { font-size: .9rem; padding: .75rem 1.5rem; }
  .btn--lg { font-size: 1rem; padding: .875rem 2rem; }
}
