/* ============================================================
   ROGUDA Fashion — Apply Page Styles
   Deploy to: assets/css/apply.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #0A0A0A; color: #F8F4EE; overflow-x: hidden; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --black:      #0A0A0A;
  --charcoal:   #141414;
  --dark:       #1A1A1A;
  --off-white:  #F8F4EE;
  --warm-gray:  #8A8070;
  --border:     rgba(201,168,76,0.16);
  --error:      #e05555;
  --error-bg:   rgba(224,85,85,0.06);
}

/* ── Loader ── */
#pageLoader { position: fixed; inset: 0; z-index: 99999; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { display: flex; flex-direction: column; align-items: center; gap: 20px; animation: lfi .8s ease both; }
@keyframes lfi { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.loader-badge { width: 72px; height: 72px; border: 1.5px solid var(--gold); border-radius: 4px; overflow: hidden; box-shadow: 0 0 40px rgba(201,168,76,.15); }
.loader-badge img { width: 100%; height: 100%; object-fit: cover; }
.loader-wordmark { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; color: var(--off-white); }
.loader-tagline { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-top: -10px; animation: lfi .8s .2s ease both; }
.loader-bar-wrap { width: 180px; height: 1px; background: rgba(201,168,76,.15); margin-top: 48px; overflow: hidden; animation: lfi .8s .3s ease both; }
.loader-bar { height: 100%; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light)); width: 0; animation: lp 1.8s .4s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes lp { to { width: 100%; } }
.loader-percent { font-size: 10px; letter-spacing: 3px; color: rgba(201,168,76,.5); margin-top: 12px; animation: lfi .8s .4s ease both; }
.loader-corner { position: absolute; width: 28px; height: 28px; }
.loader-corner.tl { top: 40px; left: 40px; border-top: 1px solid rgba(201,168,76,.3); border-left: 1px solid rgba(201,168,76,.3); }
.loader-corner.tr { top: 40px; right: 40px; border-top: 1px solid rgba(201,168,76,.3); border-right: 1px solid rgba(201,168,76,.3); }
.loader-corner.bl { bottom: 40px; left: 40px; border-bottom: 1px solid rgba(201,168,76,.3); border-left: 1px solid rgba(201,168,76,.3); }
.loader-corner.br { bottom: 40px; right: 40px; border-bottom: 1px solid rgba(201,168,76,.3); border-right: 1px solid rgba(201,168,76,.3); }

/* ── Scroll Top ── */
#scrollTop { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--gold); color: var(--black); border: none; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 900; }
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--gold-light); transform: translateY(-4px); }

/* ── Navigation ── */
.nav-cinematic { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 60px; display: flex; align-items: center; transition: all .4s ease; }
.nav-cinematic.scrolled { padding: 12px 60px; background: rgba(10,10,10,.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-container { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge { width: 44px; height: 44px; border: 1.5px solid var(--gold); border-radius: 4px; overflow: hidden; flex-shrink: 0; transition: background .3s ease; }
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.logo:hover .logo-badge { background: rgba(201,168,76,.15); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--off-white); letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 1px; color: rgba(248,244,238,.7); text-decoration: none; padding: 6px 10px; transition: color .3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--off-white); }
.nav-links .nav-btn-outline { border: 1px solid rgba(201,168,76,.35); color: var(--gold); padding: 6px 16px; transition: all .3s ease; }
.nav-links .nav-btn-outline:hover { background: rgba(201,168,76,.1); }
.nav-links .nav-btn-gold { background: var(--gold); color: var(--black); padding: 7px 18px; font-weight: 600; transition: all .3s ease; }
.nav-links .nav-btn-gold:hover { background: var(--gold-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--off-white); transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Drawer ── */
#mobileDrawer { position: fixed; inset: 0; background: rgba(10,10,10,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); z-index: 990; display: flex; flex-direction: column; padding: 84px 0 32px; transform: translateY(-100%); transition: transform .55s cubic-bezier(.76,0,.24,1); overflow-y: auto; }
#mobileDrawer.open { transform: translateY(0); }
#mobileDrawer a:not(.drawer-cta) { font-family: 'Playfair Display', serif; font-size: 28px; color: rgba(248,244,238,.5); text-decoration: none; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; text-align: center; transition: color .3s ease; }
#mobileDrawer a:not(.drawer-cta):hover, #mobileDrawer a:not(.drawer-cta).active { color: #F8F4EE; }
.drawer-cta { margin: 28px 32px 0 !important; background: var(--gold) !important; color: var(--black) !important; font-family: 'Outfit', sans-serif !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 3px !important; text-transform: uppercase !important; padding: 15px !important; text-align: center !important; display: flex !important; justify-content: center !important; border-bottom: none !important; transition: background .3s ease !important; }
.drawer-cta:hover { background: var(--gold-light) !important; }

/* ── Page Header ── */
.apply-header { padding: 140px 24px 52px; text-align: center; border-bottom: 1px solid rgba(201,168,76,.08); }
.apply-header .label { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.apply-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: var(--off-white); line-height: 1.1; margin-bottom: 14px; }
.apply-header h1 em { color: var(--gold); font-style: italic; }
.apply-header .subtitle { font-size: 14px; font-weight: 300; color: var(--warm-gray); line-height: 1.7; max-width: 540px; margin: 0 auto 24px; }
.window-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.25); padding: 8px 20px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.download-strip { display: flex; align-items: center; justify-content: center; gap: 16px; background: rgba(255,255,255,.02); border: 1px solid rgba(201,168,76,.1); padding: 14px 28px; max-width: 620px; margin: 0 auto 28px; font-size: 12px; color: var(--warm-gray); }
.download-strip strong { color: var(--off-white); }
.btn-download { display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 1px solid rgba(201,168,76,.35); color: var(--gold); font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 8px 18px; transition: all .3s ease; white-space: nowrap; cursor: pointer; }
.btn-download:hover { background: rgba(201,168,76,.1); transform: translateY(-1px); }

/* ── Form Shell ── */
.apply-section { padding: 60px 24px 100px; background: var(--charcoal); }
.apply-container { width: 90%; max-width: 900px; margin: 0 auto; }
.incubator-notice { display: none; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.28); padding: 12px 20px; margin-bottom: 24px; font-size: 13px; color: var(--gold); text-align: center; }
.incubator-notice.show { display: block; }

/* ── Progress ── */
.progress-wrap { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 44px; }
.prog-step { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; max-width: 110px; position: relative; }
.prog-step::after { content: ''; position: absolute; top: 15px; left: calc(50% + 17px); width: calc(100% - 34px); height: 1px; background: rgba(201,168,76,.12); }
.prog-step:last-child::after { display: none; }
.prog-dot { width: 30px; height: 30px; border: 1.5px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--warm-gray); background: var(--dark); transition: all .3s ease; position: relative; z-index: 1; }
.prog-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(138,128,112,.5); transition: color .3s ease; text-align: center; }
.prog-step.active .prog-dot { background: var(--gold); border-color: var(--gold); color: var(--black); }
.prog-step.active .prog-label { color: var(--gold); }
.prog-step.done .prog-dot { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.45); color: var(--gold); }
.prog-step.done::after { background: rgba(201,168,76,.3); }
.prog-step.done .prog-label { color: rgba(201,168,76,.5); }

/* ── Steps ── */
.form-step { display: none; }
.form-step.active { display: block; animation: fIn .35s ease; }
@keyframes fIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Section bands (matching PDF gold headers) */
.section-band { background: linear-gradient(90deg, rgba(201,168,76,.14) 0%, rgba(201,168,76,.04) 100%); border-left: 3px solid var(--gold); padding: 12px 20px; margin-bottom: 28px; }
.section-band h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--gold-light); }
.section-band .sec-sub { font-size: 11px; color: var(--warm-gray); margin-top: 2px; letter-spacing: 1px; }
.form-card { border: 1px solid rgba(201,168,76,.1); background: rgba(255,255,255,.025); padding: 32px 36px; margin-bottom: 20px; }

/* Grids */
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.fg-auto { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }

/* Labels */
label.fl { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px; }
label.fl .req { color: var(--gold); margin-left: 2px; }

/* Inputs */
.gi, select.gi, textarea.gi {
  width: 100%; background: rgba(255,255,255,.035); border: 1px solid rgba(201,168,76,.16);
  color: var(--off-white); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300;
  padding: 12px 16px; transition: border-color .3s, background .3s; outline: none; appearance: none; border-radius: 0;
}
.gi::placeholder, textarea.gi::placeholder { color: rgba(248,244,238,.22); }
.gi:focus, select.gi:focus, textarea.gi:focus { border-color: rgba(201,168,76,.5); background: rgba(201,168,76,.03); }
select.gi { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A84C'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select.gi option { background: #1a1a1a; }
textarea.gi { resize: vertical; min-height: 88px; }
input[type="file"].gi { padding: 10px 14px; cursor: pointer; }
input[type="date"].gi::-webkit-calendar-picker-indicator { filter: invert(0.55); }

/* Error state */
.gi.err, select.gi.err, textarea.gi.err { border-color: var(--error) !important; background: var(--error-bg) !important; }
.ferr { font-size: 11px; color: var(--error); margin-top: 5px; display: none; align-items: center; gap: 5px; }
.ferr.show { display: flex; }
.fhint { font-size: 11px; color: rgba(248,244,238,.3); margin-top: 5px; }

/* Error banner */
.err-banner { display: none; background: rgba(224,85,85,.07); border: 1px solid rgba(224,85,85,.25); padding: 14px 18px; margin-bottom: 24px; font-size: 13px; color: #e88; align-items: flex-start; gap: 10px; }
.err-banner.show { display: flex; }
.err-banner i { margin-top: 2px; flex-shrink: 0; }

/* ── Course cards ── */
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: rgba(201,168,76,.06); margin: 4px 0 20px; }
.course-card { background: var(--dark); padding: 26px 24px; cursor: pointer; border: 2px solid transparent; transition: all .3s ease; position: relative; }
.course-card:hover { background: rgba(30,30,30,1); }
.course-card.selected { border-color: var(--gold); background: rgba(201,168,76,.05); }
.cc-check { position: absolute; top: 14px; right: 14px; width: 20px; height: 20px; border: 1.5px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; font-size: 10px; color: transparent; transition: all .3s ease; }
.course-card.selected .cc-check { background: var(--gold); border-color: var(--gold); color: var(--black); }
.cc-nqf { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cc-title { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--off-white); margin-bottom: 4px; line-height: 1.3; }
.cc-dur { font-size: 11px; color: var(--warm-gray); margin-bottom: 14px; }
.cc-modules { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.cc-modules li { font-size: 12px; font-weight: 300; color: rgba(248,244,238,.55); padding-left: 14px; position: relative; }
.cc-modules li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.cc-cost { border-top: 1px solid rgba(201,168,76,.1); padding-top: 12px; }
.cc-cost p { font-size: 12px; font-weight: 300; color: var(--warm-gray); margin-bottom: 3px; }
.cc-cost strong { color: var(--gold-light); }
.course-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

/* ── Payer same checkbox ── */
.same-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; margin-bottom: 24px; }
.same-toggle input[type="checkbox"] { display: none; }
.same-box { width: 18px; height: 18px; min-width: 18px; border: 1.5px solid rgba(201,168,76,.35); display: flex; align-items: center; justify-content: center; font-size: 10px; color: transparent; transition: all .3s ease; }
.same-toggle input:checked + .same-box { background: var(--gold); border-color: var(--gold); color: var(--black); }
.same-toggle span { font-size: 13px; font-weight: 300; color: rgba(248,244,238,.7); }

/* ── Consent blocks ── */
.consent-block { background: rgba(201,168,76,.03); border: 1px solid rgba(201,168,76,.1); padding: 24px 28px; margin-bottom: 18px; }
.consent-block h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold-light); margin-bottom: 10px; }
.consent-block p { font-size: 13px; font-weight: 300; color: rgba(248,244,238,.6); line-height: 1.75; margin-bottom: 8px; }
.consent-block a { color: var(--gold); text-decoration: none; }
.consent-block a:hover { text-decoration: underline; }
.chk-row { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin-top: 14px; }
.chk-row input[type="checkbox"] { display: none; }
.chk-sq { width: 18px; height: 18px; min-width: 18px; border: 1.5px solid rgba(201,168,76,.32); display: flex; align-items: center; justify-content: center; margin-top: 1px; font-size: 10px; color: transparent; transition: all .3s ease; }
.chk-row input:checked + .chk-sq { background: var(--gold); border-color: var(--gold); color: var(--black); }
.chk-sq.err { border-color: var(--error) !important; }
.chk-text { font-size: 13px; font-weight: 300; color: rgba(248,244,238,.72); line-height: 1.65; }
.chk-text a { color: var(--gold); text-decoration: none; }
.chk-req { color: var(--gold); }

/* ── Buttons ── */
.btn-group { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.btn-prev, .btn-next, .btn-submit { display: inline-flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; border: none; cursor: pointer; padding: 14px 36px; transition: all .3s ease; }
.btn-next { background: var(--gold); color: var(--black); }
.btn-next:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.2); }
.btn-prev { background: transparent; border: 1px solid rgba(201,168,76,.28); color: var(--gold); }
.btn-prev:hover { background: rgba(201,168,76,.07); transform: translateY(-2px); }
.btn-submit { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--black); font-size: 11px; padding: 15px 44px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,168,76,.28); }
.form-note { font-size: 11px; color: rgba(248,244,238,.3); margin-top: 18px; text-align: center; line-height: 1.7; }
.form-note a { color: var(--gold); text-decoration: none; }

/* ── Footer ── */
.footer-cinematic { background: var(--black); border-top: 1px solid rgba(201,168,76,.12); padding: 80px 0 0; }
.footer-container { width: 90%; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.6fr auto; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: 13px; color: var(--warm-gray); line-height: 1.6; }
.footer-contact a { color: var(--gold-light); text-decoration: none; transition: color .3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact strong { color: var(--off-white); margin-right: 6px; }
.footer-nav { list-style: none; margin-top: 6px; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { font-size: 13px; color: var(--warm-gray); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.footer-nav a::before { content: ''; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:hover::before { width: 14px; }
.newsletter-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); margin-bottom: 10px; }
.newsletter-text { font-size: 13px; color: var(--warm-gray); line-height: 1.6; margin-bottom: 18px; }
.newsletter-form .input-group { display: flex; border: 1px solid rgba(201,168,76,.24); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 16px; font-family: 'Outfit', sans-serif; font-size: 13px; color: var(--off-white); }
.newsletter-form input::placeholder { color: var(--warm-gray); }
.newsletter-form input:focus { outline: none; }
.btn-subscribe { background: var(--gold); border: none; padding: 0 18px; color: var(--black); font-size: 12px; font-weight: 600; cursor: pointer; transition: background .3s; display: flex; align-items: center; gap: 6px; }
.btn-subscribe:hover { background: var(--gold-light); }
.consent-note { font-size: 10px; color: rgba(138,128,112,.5); margin-top: 10px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; align-self: start; margin-top: 4px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.24); display: flex; align-items: center; justify-content: center; color: var(--warm-gray); text-decoration: none; font-size: 14px; transition: all .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; }
.footer-bottom .copyright { width: 90%; max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(138,128,112,.5); letter-spacing: .5px; }
.copyright-links a { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(138,128,112,.45); text-decoration: none; margin: 0 8px; transition: color .3s; }
.copyright-links a:hover { color: var(--gold); }
.footer-credentials { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,.4); }
.footer-credentials .divider { color: rgba(201,168,76,.2); }
.copyright-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 2px; margin-top: 8px !important; font-size: 0; }
@media (max-width: 768px) {
  #scrollTop { bottom: 20px; left: 16px; right: auto; }
}
@media (max-width: 540px) {
  .footer-credentials { flex-direction: column !important; gap: 6px !important; }
  .footer-credentials .divider { display: none !important; }
  footer { padding-bottom: 80px; }
}

/* ── Responsive ── */
@media (max-width: 1100px) { .footer-container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .nav-cinematic, .nav-cinematic.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #navToggle { display: flex; }
  .fg2, .fg3, .fg-auto { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .form-card { padding: 22px 18px; }
  .prog-label { display: none; }
  .apply-header { padding: 120px 20px 40px; }
}
@media (max-width: 640px) {
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .copyright { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; }
  .btn-prev, .btn-next, .btn-submit { justify-content: center; width: 100%; }
  .download-strip { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .newsletter-form .input-group {
    flex-direction: column;
    border: none;
    gap: 10px;
  }
  .newsletter-form input {
    border: 1px solid rgba(201,168,76,.24);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .btn-subscribe {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
  }
}
