/* ==========================================================================
   SENHOR SORTEIO — Premium Stylesheet
   Trio Tecnologia | Sistema Hermes
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #161616;
  --gold: #D4AF37;
  --gold-bright: #F4D03F;
  --gold-dark: #B8941F;
  --champagne: #E8D9A8;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #B8941F 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
  --text-primary: #f5f5f5;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --border-subtle: rgba(212, 175, 55, 0.15);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --max-width: 1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  background: var(--gold-gradient-soft);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0a0a0a;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.3));
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-weight: 700; }
.logo-text small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border-subtle);
    gap: 1.5rem;
  }
}

.hero {
  min-height: 100vh;
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 38px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(212, 175, 55, 0.1);
  padding: 18px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.phone-screen .qr-code {
  width: 170px;
  height: 170px;
  background: white;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.phone-screen .qr-code svg { width: 100%; height: 100%; }

.phone-screen h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-family: var(--font-serif);
}
.phone-screen p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 200px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(10px);
  z-index: 3;
  min-width: 200px;
}

.floating-card.card-1 {
  top: 8%;
  left: -8%;
  animation: float 7s ease-in-out infinite;
}
.floating-card.card-2 {
  bottom: 12%;
  right: -8%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.floating-card .text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}
.floating-card .text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .floating-card.card-1 { left: 0%; }
  .floating-card.card-2 { right: 0%; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  padding: 1rem;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
  box-shadow: var(--shadow-gold);
}
.price-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.price-card .subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.price-card .price-tag {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0 0.3rem;
  line-height: 1;
}
.price-card .price-tag small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.price-card .price-per {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-card ul li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.price-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .benefits-split { grid-template-columns: 1fr; }
}

.benefits-list { list-style: none; }
.benefits-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.benefits-list li:last-child { border-bottom: none; }

.benefits-list .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.benefits-list h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: var(--text-primary);
}
.benefits-list p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  padding: 2.5rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-deep);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), transparent 60%);
}
.image-frame > * { position: relative; z-index: 2; }

.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-question .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .toggle {
  background: var(--gold-gradient);
  color: #0a0a0a;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.cta-banner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 4rem 2rem;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.lead-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.4rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.lead-form input::placeholder { color: var(--text-muted); }

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 1.2rem 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-header {
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12), transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  position: relative;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-deep);
}
@media (max-width: 600px) {
  .form-card { padding: 2rem 1.5rem; }
}

.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Two-column info layout */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--border-gold); }
.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.info-card ul { list-style: none; }
.info-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.info-card ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Stat bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  margin: 3rem 0;
}
.stat-item { text-align: center; }
.stat-item .number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
