/* ── TOKENS ─────────────────────────────────────────────────────────────────── */
:root {
  --blue: #0066ff;
  --blue-hover: #0052cc;
  --gold: #c8a951;
  --gold-hover: #b8962e;
  --bg: #080808;
  --surface: #111111;
  --surface-2: #191919;
  --border: rgba(255,255,255,0.08);
  --text: #f0efed;
  --text-muted: #888;
  --text-faint: #444;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(3rem, 1rem + 6vw, 7rem);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: var(--text-base); line-height: 1.65; }
img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container--narrow { max-width: 860px; }
.section { padding-block: clamp(5rem, 10vw, 9rem); }
.section__label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
.section__title { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.05; color: var(--text); margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.section__sub { font-size: var(--text-lg); color: var(--text-muted); text-align: center; max-width: 560px; margin-inline: auto; margin-bottom: 4rem; }
.text--blue { color: var(--blue); }
.text--gold { color: var(--gold); }

/* ── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius); font-size: var(--text-sm);
  font-weight: 600; letter-spacing: 0.03em; transition: all var(--transition);
  white-space: nowrap; border: 2px solid transparent;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: #0a0a0a; }
.btn--gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.2); color: var(--text); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn--lg { padding: 1rem 2.25rem; font-size: var(--text-base); }
.btn--full { width: 100%; }

/* ── NAV ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: all var(--transition);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; padding: 0.85rem clamp(1.25rem,5vw,3rem); }
.nav__logo { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.nav__logo img { width: 36px; height: 36px; border-radius: 50%; }
.nav__brand { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.06em; color: var(--text); }
.nav__brand em { color: var(--blue); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav__links a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--transition); }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 1.5rem; padding: 0.5rem 1.25rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav__mobile { display: none; flex-direction: column; padding: 1rem clamp(1.25rem,5vw,3rem) 1.5rem; border-top: 1px solid var(--border); gap: 0.25rem; }
.nav__mobile-link { font-size: var(--text-base); color: var(--text-muted); padding: 0.625rem 0; border-bottom: 1px solid var(--border); }
.nav__mobile-link:last-of-type { border-bottom: none; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.3) 50%, rgba(8,8,8,0.9) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: clamp(5rem,12vw,9rem) clamp(1.25rem,5vw,3rem) clamp(3rem,6vw,5rem);
  max-width: 900px;
}
.hero__label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero__headline { font-family: var(--font-display); font-size: var(--text-hero); line-height: 0.95; color: #fff; margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.hero__headline--blue { color: var(--blue); display: block; }
.hero__sub { font-size: var(--text-lg); color: rgba(255,255,255,0.75); max-width: 580px; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.55; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero__note { font-size: var(--text-xs); color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.3); transition: color var(--transition); animation: bounce 2s ease-in-out infinite; }
.hero__scroll:hover { color: rgba(255,255,255,0.7); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── TRUST ──────────────────────────────────────────────────────────────────── */
.trust { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: clamp(2.5rem,5vw,4rem); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr) ; align-items: center; gap: 0; }
.trust__stat { text-align: center; padding: 0.5rem 1rem; }
.trust__stat p { font-size: var(--text-xs); color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.trust__num { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); color: var(--text); line-height: 1; letter-spacing: 0.01em; }
.trust__plus { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.5rem); color: var(--blue); }
.trust__divider { width: 1px; height: 60px; background: var(--border); margin-inline: auto; }

/* ── PROBLEM ────────────────────────────────────────────────────────────────── */
.problem { background: var(--bg); }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.problem__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color var(--transition); }
.problem__item:hover { border-color: rgba(0,102,255,0.3); }
.problem__icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 1.25rem; }
.problem__icon svg { width: 100%; height: 100%; }
.problem__item h3 { font-size: var(--text-lg); font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.problem__item p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }
.problem__callout { background: var(--surface-2); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.75rem 2rem; }
.problem__callout p { font-size: var(--text-lg); color: var(--text); font-style: italic; line-height: 1.5; margin-bottom: 0.75rem; }
.problem__callout span { font-size: var(--text-sm); color: var(--gold); font-weight: 600; }

/* ── ABOUT ──────────────────────────────────────────────────────────────────── */
.about { background: var(--surface); }
.about__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(3rem,6vw,6rem); align-items: center; }
.about__img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__badge { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; background: rgba(8,8,8,0.9); backdrop-filter: blur(8px); border: 1px solid var(--gold); border-radius: var(--radius); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.625rem; }
.about__badge svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.about__badge span { font-size: var(--text-xs); font-weight: 600; color: var(--gold); letter-spacing: 0.05em; }
.about__content p { font-size: var(--text-base); color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.about__content p strong { color: var(--text); }
.about__content p em { color: var(--blue); font-style: normal; }
.about__credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.about__cred { display: flex; align-items: center; gap: 0.625rem; }
.about__cred svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.about__cred span { font-size: var(--text-sm); color: var(--text-muted); }

/* ── SERVICES ───────────────────────────────────────────────────────────────── */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: border-color var(--transition), transform var(--transition); }
.service-card:hover { border-color: rgba(0,102,255,0.3); transform: translateY(-3px); }
.service-card--featured { background: linear-gradient(135deg, rgba(0,66,160,0.15) 0%, rgba(8,8,8,0) 100%); border-color: var(--blue); transform: translateY(-6px); }
.service-card--featured:hover { border-color: var(--blue); transform: translateY(-10px); }
.service-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.875rem; border-radius: 9999px; white-space: nowrap; }
.service-card__tag--gold { background: var(--gold); color: #0a0a0a; }
.service-card__icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 1.25rem; margin-top: 0.5rem; }
.service-card--featured .service-card__icon { color: var(--gold); }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-bottom: 0.375rem; }
.service-card__tagline { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 1.5rem; }
.service-card__list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.service-card__list li { font-size: var(--text-sm); color: var(--text-muted); padding-left: 1.25rem; position: relative; }
.service-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); }
.service-card--featured .service-card__list li::before { color: var(--gold); }
.service-card__price { display: flex; align-items: baseline; gap: 0.375rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.service-card__price-label { font-size: var(--text-xs); color: var(--text-faint); }
.service-card__price-num { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); color: var(--text); letter-spacing: 0.01em; }
.service-card__price-per { font-size: var(--text-sm); color: var(--text-muted); }
.service-card__note { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin-top: 0.875rem; }
.service-card__note strong { color: var(--gold); }

/* ── PROCESS ────────────────────────────────────────────────────────────────── */
.process { background: var(--surface); }
.process__steps { display: flex; flex-direction: column; gap: 0; margin-top: 3.5rem; }
.process__step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start; }
.process__connector { width: 2px; height: 3rem; background: linear-gradient(to bottom, var(--blue), transparent); margin-left: 39px; }
.process__num { font-family: var(--font-display); font-size: 3.5rem; color: var(--blue); line-height: 1; letter-spacing: 0.01em; opacity: 0.8; padding-top: 0.25rem; }
.process__content h3 { font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-bottom: 0.625rem; }
.process__content p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; max-width: 60ch; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial--featured { background: var(--surface-2); border-color: rgba(200,169,81,0.3); transform: translateY(-4px); }
.testimonial__stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial__avatar { width: 40px; height: 40px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-sm); color: #fff; flex-shrink: 0; }
.testimonial__author strong { display: block; font-size: var(--text-sm); color: var(--text); font-weight: 600; }
.testimonial__author span { font-size: var(--text-xs); color: var(--text-muted); }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
.faq { background: var(--surface); }
.faq__list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; font-size: var(--text-base); font-weight: 600; color: var(--text); list-style: none; user-select: none; transition: color var(--transition); gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { font-size: var(--text-base); color: var(--text-muted); padding-bottom: 1.5rem; line-height: 1.7; max-width: 70ch; }

/* ── APPLY ──────────────────────────────────────────────────────────────────── */
.apply { position: relative; overflow: hidden; }
.apply__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(0,66,255,0.12) 0%, transparent 70%); pointer-events: none; }
.apply__inner { position: relative; z-index: 1; background: var(--surface); border: 1px solid rgba(0,102,255,0.2); border-radius: 1.5rem; padding: clamp(2.5rem,6vw,4rem); }
.apply__title { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.05; color: var(--text); text-align: center; margin-bottom: 1rem; letter-spacing: 0.01em; }
.apply__sub { font-size: var(--text-base); color: var(--text-muted); text-align: center; margin-bottom: 2.5rem; max-width: 480px; margin-inline: auto; margin-bottom: 2.5rem; }
.apply__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply__field { }
.apply__field--full { grid-column: 1 / -1; }
.apply__field input,
.apply__field select,
.apply__field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.875rem 1rem;
  color: var(--text); font-size: var(--text-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: vertical;
}
.apply__field input::placeholder,
.apply__field textarea::placeholder { color: var(--text-faint); }
.apply__field input:focus,
.apply__field select:focus,
.apply__field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,255,0.15); }
.apply__field select { appearance: none; cursor: pointer; }
.apply__submit { grid-column: 1 / -1; }
.apply__disclaimer { grid-column: 1 / -1; text-align: center; font-size: var(--text-xs); color: var(--text-faint); margin-top: 0.25rem; }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: 3rem; }
.footer__inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 0.875rem; }
.footer__brand img { border-radius: 50%; }
.footer__brand strong { display: block; font-size: var(--text-base); font-weight: 700; }
.footer__brand p { font-size: var(--text-sm); color: var(--text-muted); }
.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--blue); }
.footer__copy { font-size: var(--text-xs); color: var(--text-faint); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .service-card--featured { transform: none; }
  .services__grid .service-card:hover { transform: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img-wrap { aspect-ratio: 4/3; max-height: 360px; }
  .problem__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial--featured { transform: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__divider { display: none; }
  .apply__form { grid-template-columns: 1fr; }
  .apply__field--full { grid-column: 1; }
  .apply__submit { grid-column: 1; }
  .apply__disclaimer { grid-column: 1; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: flex; }
  .hero__actions { flex-direction: column; align-items: center; }
  .about__credentials { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── NAV HIDE ON SCROLL ──────────────────────────────────────────────────────── */
.nav--hidden { transform: translateY(-100%); }

/* ── FORM VALIDATION STATES ─────────────────────────────────────────────────── */
.input-error { border-color: #e55353 !important; box-shadow: 0 0 0 3px rgba(229,83,83,0.15) !important; }
.field-error { display: block; font-size: 0.75rem; color: #e55353; margin-top: 0.375rem; padding-left: 0.125rem; }

/* ── APPLY SUCCESS STATE ─────────────────────────────────────────────────────── */
.apply__success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1rem; }
.apply__success-icon { width: 64px; height: 64px; background: rgba(0,102,255,0.12); border: 2px solid var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--blue); margin-bottom: 1.5rem; }
.apply__success-title { font-family: var(--font-display); font-size: var(--text-xl); color: var(--text); margin-bottom: 0.75rem; letter-spacing: 0.02em; }
.apply__success-body { font-size: var(--text-base); color: var(--text-muted); line-height: 1.65; max-width: 42ch; }

/* ── COMMUNITY BANNER ────────────────────────────────────────────────────────── */
.community-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(135deg, rgba(200,169,81,0.08) 0%, rgba(8,8,8,0) 100%);
  border: 1px solid rgba(200,169,81,0.25); border-radius: var(--radius-lg);
  padding: 2rem 2.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.community-banner__left { display: flex; align-items: flex-start; gap: 1.25rem; flex: 1; min-width: 260px; }
.community-banner__icon { width: 44px; height: 44px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.community-banner__icon svg { width: 100%; height: 100%; }
.community-banner__title { font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-bottom: 0.375rem; }
.community-banner__sub { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; max-width: 54ch; }
.community-banner__right { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.community-banner__price { display: flex; flex-direction: column; align-items: center; }
.community-banner__amount { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--gold); line-height: 1; letter-spacing: 0.01em; }
.community-banner__period { font-size: var(--text-xs); color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
@media (max-width: 640px) {
  .community-banner { flex-direction: column; text-align: center; }
  .community-banner__left { flex-direction: column; align-items: center; text-align: center; }
  .community-banner__right { flex-direction: column; width: 100%; }
  .community-banner__right .btn { width: 100%; }
}
