/* =====================================================
   262EXPRESS — LANDING PAGE STYLES (CLEAN WHITE)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg: #F8F7F4;
  --bg-alt: #FFFFFF;
  --bg-dark: #0D1220;
  --ink: #0D1220;
  --ink-60: #606880;
  --ink-30: #B8BCC8;
  --orange: #E8540A;
  --orange-light: #FFF0E8;
  --border: #E8E6E0;
  --radius-xl: 2rem;
  --radius-lg: 1.2rem;
  --radius-md: 0.7rem;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* ── UTILITY ───────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

#hero .container {
  max-width: 1320px;
}

.label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.accent {
  color: var(--orange);
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 84, 10, 0.3);
}

.btn-orange {
  background: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(232, 84, 10, 0.25);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 84, 10, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--orange);
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

/* ══ SCROLL-STACK SYSTEM ════════════════════════════
   Each section is sticky with increasing z-index.
   The card radius on top gives the stacking feel.
═══════════════════════════════════════════════════ */
.stack-section {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.stack-card {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
}

/* ── HERO ──────────────────────────────────────────── */
#hero {
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* solid dark gradient — no image */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 60%, rgba(232, 84, 10, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 30%, rgba(232, 84, 10, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

/* right-side animation panel */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.hero-stat-num span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

/* ── ROTAS SECTION ─────────────────────────────────── */
#rotas {
  z-index: 2;
}

.rotas-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.12);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.section-sub {
  color: var(--ink-60);
  font-size: 1rem;
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Route path */
.route-track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  scrollbar-width: none;
}

.route-track::-webkit-scrollbar {
  display: none;
}

.route-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.route-dot {
  width: 10px;
  height: 10px;
  background: var(--ink-30);
  border-radius: 50%;
}

.route-stop.endpoint .route-dot {
  width: 14px;
  height: 14px;
  background: var(--orange);
}

.route-stop-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-60);
  text-align: center;
  white-space: nowrap;
}

.route-stop.endpoint .route-stop-name {
  color: var(--orange);
  font-size: 0.85rem;
}

.route-line {
  flex: 1;
  min-width: 28px;
  height: 1.5px;
  background: var(--border);
  margin-bottom: 1.3rem;
}

.route-note {
  font-size: 0.83rem;
  color: var(--ink-60);
  margin-top: 0.5rem;
}

.route-note strong {
  color: var(--ink);
  font-weight: 600;
}

/* City cards grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.city-card {
  padding: 1.4rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.city-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.city-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.city-card-tag {
  font-size: 0.73rem;
  color: var(--ink-60);
}

.city-card.endpoint {
  border-color: rgba(232, 84, 10, 0.25);
  background: var(--orange-light);
}

.city-card.endpoint .city-card-name {
  color: var(--orange);
}

/* ── COLETAS SECTION ───────────────────────────────── */
#coletas {
  z-index: 3;
}

.coletas-card {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.08);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.schedule-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.schedule-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.schedule-item.sexta::after {
  background: linear-gradient(90deg, var(--orange), #F59E0B);
}

.schedule-item.domingo::after {
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
}

.schedule-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.schedule-day {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.schedule-item.sexta .schedule-day {
  color: var(--orange);
}

.schedule-item.domingo .schedule-day {
  color: #6366F1;
}

.schedule-direction {
  font-size: 0.9rem;
  color: var(--ink-60);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.schedule-direction strong {
  color: var(--ink);
}

.schedule-body {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.schedule-stops {
  font-size: 0.78rem;
  color: var(--ink-60);
  padding: 0.85rem 1rem;
  background: var(--bg);
  border-radius: var(--radius-md);
  line-height: 1.6;
  border: 1px solid var(--border);
}

/* ── AFILIADOS SECTION ─────────────────────────────── */
#afiliados {
  z-index: 4;
}

.afiliados-card {
  background: var(--ink);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.afiliados-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.aff-big-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(7rem, 15vw, 11rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
}

.aff-big-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.aff-coupon-box {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1.5px dashed rgba(232, 84, 10, 0.45);
  border-radius: var(--radius-md);
}

.aff-coupon-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.aff-coupon-code {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--orange);
  cursor: pointer;
  transition: color 0.3s;
}

.aff-coupon-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.4rem;
}

/* right col */
.aff-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.aff-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.aff-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.aff-step {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.aff-step::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 1.6rem;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateX(-50%);
}

.aff-step:last-child {
  border-bottom: none;
}

.aff-step-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #FFFFFF;
}

.aff-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
}

/* label override for dark section */
.afiliados-card .label {
  color: var(--orange);
}

/* ── COMO FUNCIONA ─────────────────────────────────── */
#como-funciona {
  z-index: 5;
}

.como-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.12);
}

.como-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.como-item {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.como-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.como-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.como-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.como-desc {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.7;
}

/* ── CTA ───────────────────────────────────────────── */
#contato {
  z-index: 6;
}

.cta-card {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.08);
  min-height: auto;
  padding: 7rem 0 5rem;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.cta-title span {
  color: var(--orange);
}

.cta-sub {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-links {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-site-link {
  display: block;
  margin-top: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.cta-site-link:hover {
  color: var(--orange);
}

.cta-site-link span {
  color: var(--orange);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.footer-logo span {
  color: var(--orange);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .como-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .afiliados-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 6rem;
  }

  .hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  #hero .container {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-visual {
    max-width: 500px;
  }
}

@media (max-width: 540px) {
  .como-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-links {
    flex-direction: column;
    align-items: center;
  }

  .stack-card {
    padding: 6rem 0 5rem;
  }

  .hero-visual {
    max-width: 100%;
  }
}

/* ── MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--ink-30);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 0.2rem;
}

.modal-close:hover {
  color: var(--orange);
}

.modal-header {
  margin-bottom: 1.8rem;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-30);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 84, 10, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #EF4444;
}

.modal-submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

.modal-success {
  text-align: center;
  padding: 2rem 0;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #F59E0B);
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.modal-success .modal-title {
  color: var(--orange);
}

.modal-success .btn {
  margin-top: 1.5rem;
}

.modal-card::-webkit-scrollbar {
  width: 4px;
}

.modal-card::-webkit-scrollbar-thumb {
  background: var(--ink-30);
  border-radius: 4px;
}

@media (max-width: 540px) {
  .modal-card {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }
}