/* =============================================
   NEON LUZ — WEBSITE STYLES
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #07070d;
  --bg-card:      #0f0f1a;
  --bg-surface:   #141424;
  --pink:         #ff2d78;
  --pink-dim:     rgba(255,45,120,0.12);
  --pink-glow:    0 0 20px rgba(255,45,120,0.55), 0 0 60px rgba(255,45,120,0.18);
  --cyan:         #00eeff;
  --cyan-dim:     rgba(0,238,255,0.12);
  --cyan-glow:    0 0 20px rgba(0,238,255,0.55), 0 0 60px rgba(0,238,255,0.18);
  --purple:       #c840ff;
  --yellow:       #ffe900;
  --green:        #00ff9d;
  --text:         #f0f0ff;
  --text-muted:   #6e6e96;
  --border:       rgba(255,255,255,0.07);
  --radius:       14px;
  --font:         'Inter', system-ui, sans-serif;
  --font-sign:    'Dancing Script', cursive;
  --max:          1160px;
  --ease:         0.24s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
  background: rgba(7,7,13,0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.nav__logo span { color: var(--pink); text-shadow: var(--pink-glow); }
.nav__logo-img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.footer__logo { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer__logo span { color: var(--pink); }
.footer__logo-img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; transition: color var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--pink); color: #fff !important; padding: 9px 20px;
  border-radius: 8px; font-weight: 600;
  transition: opacity var(--ease), box-shadow var(--ease) !important;
}
.nav__cta:hover { opacity: 0.88; box-shadow: var(--pink-glow); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 98;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(255,45,120,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%,  rgba(0,238,255,0.08)  0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 15% 80%,  rgba(200,64,255,0.07) 0%, transparent 50%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
.hero__content { position: relative; max-width: 800px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,120,0.09); border: 1px solid rgba(255,45,120,0.28);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 0.75rem; font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: 0.09em;
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 8px var(--pink);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.9rem); font-weight: 800;
  line-height: 1.14; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 .hl {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.typerot {
  display: inline-block;
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(0,238,255,0.55);
  min-width: 1ch;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.typerot.rot-out {
  opacity: 0;
  transform: translateY(-14px);
}
.typerot.rot-in {
  opacity: 0;
  transform: translateY(14px);
}
.hero__sub { font-size: 1.12rem; color: var(--text-muted); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: #fff; padding: 14px 28px;
  border-radius: 10px; font-size: 0.97rem; font-weight: 600; border: none;
  transition: all var(--ease); box-shadow: 0 4px 24px rgba(255,45,120,0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 38px rgba(255,45,120,0.6); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); padding: 14px 28px;
  border-radius: 10px; font-size: 0.97rem; font-weight: 600;
  border: 1px solid var(--border); transition: all var(--ease);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }

.hero__stats { display: flex; gap: 48px; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
.hero__stat { text-align: center; }
.hero__stat-val { font-size: 1.9rem; font-weight: 700; color: var(--cyan); text-shadow: 0 0 22px rgba(0,238,255,0.5); }
.hero__stat-lbl { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; }

/* ---- SECTION BASE ---- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-card); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__label { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); margin-bottom: 12px; }
.section__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 14px; }
.section__sub { font-size: 0.97rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ---- HOW IT WORKS ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; transition: border-color var(--ease), transform var(--ease);
}
.step:hover { border-color: rgba(255,45,120,0.3); transform: translateY(-4px); }
.step__num {
  width: 46px; height: 46px; background: var(--pink-dim);
  border: 1px solid rgba(255,45,120,0.35); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--pink); margin-bottom: 20px;
}
.step h3 { font-size: 1.07rem; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; max-width: 880px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: all var(--ease);
}
.pricing-card--featured {
  border-color: rgba(255,45,120,0.45);
  background: linear-gradient(150deg, rgba(255,45,120,0.07) 0%, var(--bg-surface) 100%);
  box-shadow: 0 0 40px rgba(255,45,120,0.09);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card__size { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 12px; }
.pricing-card__price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 8px; }
.pricing-card--featured .pricing-card__price { color: var(--pink); text-shadow: 0 0 22px rgba(255,45,120,0.38); }
.pricing-card__desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 0.9rem; color: var(--text-muted); }
.pricing-note strong { color: var(--cyan); }

/* ---- PORTFOLIO ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.sign-card {
  background: #080810; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 28px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; min-height: 190px;
  transition: transform var(--ease), border-color var(--ease);
}
.sign-card:hover { transform: scale(1.025); border-color: rgba(255,255,255,0.12); }
.sign-card--photo { padding: 0; overflow: hidden; aspect-ratio: 3/2; min-height: 0; }
.sign-card--photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  filter: brightness(0.75) saturate(0.55) contrast(1.05);
  transition: filter var(--ease), transform var(--ease);
}
.sign-card--photo:hover img { filter: brightness(0.92) saturate(0.8) contrast(1.0); transform: scale(1.04); }
.sign-card--photo .sign-card__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,16,0.88) 0%, rgba(8,8,16,0.15) 55%, transparent 100%),
    linear-gradient(135deg, rgba(10,8,30,0.35) 0%, rgba(8,8,16,0.1) 100%);
  pointer-events: none;
}
.sign-card--photo .sign-label {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
}
.sign-text { font-family: var(--font-sign); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; text-align: center; color: #fff; }
.sign-text--pink   { text-shadow: 0 0 6px #fff, 0 0 14px var(--pink),   0 0 30px var(--pink),   0 0 65px var(--pink); }
.sign-text--cyan   { text-shadow: 0 0 6px #fff, 0 0 14px var(--cyan),   0 0 30px var(--cyan),   0 0 65px var(--cyan); }
.sign-text--purple { text-shadow: 0 0 6px #fff, 0 0 14px var(--purple), 0 0 30px var(--purple), 0 0 65px var(--purple); }
.sign-text--yellow { text-shadow: 0 0 6px #fff, 0 0 14px var(--yellow), 0 0 30px var(--yellow), 0 0 65px var(--yellow); }
.sign-text--green  { text-shadow: 0 0 6px #fff, 0 0 14px var(--green),  0 0 30px var(--green),  0 0 65px var(--green); }
.sign-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 100px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; }
.contact-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.contact-feats li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-muted); }
.contact-feats li::before {
  content: '✓'; width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(0,238,255,0.09); border: 1px solid rgba(0,238,255,0.28);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--cyan);
}

.form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 17px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.form-group label .opt { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.6; font-size: 0.78rem; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 13px; color: var(--text); font-size: 0.93rem; outline: none; width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.55; }
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(255,45,120,0.45); box-shadow: 0 0 0 3px rgba(255,45,120,0.09);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255,45,120,0.6);
}
.form-group input:user-invalid,
.form-group textarea:user-invalid,
.form-group input:invalid.touched,
.form-group textarea:invalid.touched {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,120,0.13);
}
.form-group textarea { min-height: 84px; resize: vertical; }
.form-group textarea#details { min-height: 110px; line-height: 1.6; font-size: 0.88rem; }

.file-upload {
  border: 2px dashed var(--border); border-radius: 8px; padding: 20px;
  text-align: center; cursor: pointer; transition: all var(--ease); position: relative;
}
.file-upload:hover, .file-upload.drag { border-color: rgba(255,45,120,0.45); background: rgba(255,45,120,0.04); }
.file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-upload__icon { font-size: 1.6rem; margin-bottom: 6px; }
.file-upload__text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.file-upload__name { font-size: 0.83rem; color: var(--cyan); margin-top: 8px; display: none; }
.file-browse-btn {
  background: none; border: none; padding: 0;
  color: var(--cyan); text-decoration: underline;
  cursor: pointer; font-size: inherit; font-family: inherit;
}
.file-browse-btn:hover { color: var(--pink); }
.file-list {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.file-list li {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 0.82rem;
}
.file-list__thumb {
  width: 36px; height: 36px; object-fit: cover;
  border-radius: 5px; flex-shrink: 0;
}
.file-list__icon {
  width: 36px; height: 36px; border-radius: 5px; flex-shrink: 0;
  background: rgba(255,255,255,0.07); display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
}
.file-list__info { flex: 1; min-width: 0; }
.file-list__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.file-list__size { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }
.file-list__remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1rem; padding: 2px 4px;
  border-radius: 4px; flex-shrink: 0; line-height: 1;
}
.file-list__remove:hover { color: var(--pink); background: rgba(255,45,120,0.1); }
.file-add-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 8px; padding: 7px 14px; color: var(--text-muted);
  cursor: pointer; font-size: 0.8rem; margin-top: 6px;
  width: 100%;
}
.file-add-btn:hover { border-color: var(--cyan); color: var(--cyan); }

.captcha-note { font-size: 0.73rem; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.55; opacity: 0.75; }
.captcha-note a { color: var(--pink); }

.form-submit {
  width: 100%; background: var(--pink); color: #fff; border: none;
  padding: 14px 24px; border-radius: 10px; font-size: 0.97rem; font-weight: 600;
  transition: all var(--ease); box-shadow: 0 4px 22px rgba(255,45,120,0.32); margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(255,45,120,0.52); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-submit--outline {
  background: transparent;
  border: 1.5px solid rgba(255,45,120,0.5);
  color: var(--pink);
  box-shadow: none;
}
.form-submit--outline:hover:not(:disabled) {
  background: rgba(255,45,120,0.08);
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255,45,120,0.2);
  transform: translateY(-1px);
}
.form-submit--outline:disabled,
.form-submit--outline[data-needs-size] { border-color: rgba(255,255,255,0.15); color: var(--text-muted); }
@keyframes fieldPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,45,120,0.55); border-color: var(--pink); }
  50%  { box-shadow: 0 0 0 8px rgba(255,45,120,0);    border-color: var(--pink); }
  100% { box-shadow: 0 0 0 0   rgba(255,45,120,0);    border-color: var(--border); }
}
.field-highlight select,
.field-highlight input {
  animation: fieldPulse 0.7s ease-out 3;
  border-color: var(--pink) !important;
}
.payment-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0 10px; color: var(--text-muted); font-size: 0.74rem;
}
.payment-divider::before, .payment-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success__icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 0.93rem; }

/* ---- FOOTER ---- */
/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--ease), border-color var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); }
.testimonial-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255,233,0,0.5); }
.testimonial-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 14px; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testimonial-business { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 52px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer__desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; max-width: 290px; }
.footer__wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 9px 18px;
  border-radius: 8px; font-size: 0.86rem; font-weight: 600; transition: opacity var(--ease);
}
.footer__wa:hover { opacity: 0.88; }
.footer__col-title { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--ease); }
.footer__links a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }
.footer__legal { font-size: 0.76rem; color: var(--text-muted); opacity: 0.65; }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 104px; right: 28px; z-index: 999;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 18px; font-size: 0.88rem; max-width: 300px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(130%); transition: transform 0.3s ease;
}
.toast.show { transform: translateX(0); }
.toast--ok  { border-color: rgba(0,255,157,0.3); }
.toast--err { border-color: rgba(255,45,120,0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid  { grid-template-columns: 1fr; gap: 28px; }
}
/* Mobile CTA in nav — hidden on desktop */
.nav__mobile-cta { display: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-cta {
    display: inline-flex; align-items: center;
    background: var(--pink); color: #fff;
    padding: 9px 16px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600;
    box-shadow: 0 3px 14px rgba(255,45,120,0.35);
    white-space: nowrap;
  }
  .hero { padding: 100px 20px 56px; }
  .section { padding: 68px 0; }
  .form { padding: 26px 18px; }
  .form-row { grid-template-columns: 1fr; }
}
