/* ============================================================
   WEBSTING — Global Stylesheet
   Brand: Black #000409 | Orange #FA7711 | Green #0A704E
          Gold #E8C468 | Gray #C7C6C6
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #000409;
  --orange:  #FA7711;
  --green:   #0A704E;
  --gold:    #E8C468;
  --gray:    #C7C6C6;
  --gray-dk: #3a3a3a;
  --white:   #ffffff;
  --off-white: #F5F5F3;
  --text:    #1a1a1a;

  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --transition: 0.18s ease;
  --max-w: 1100px;
  --section-pad: 80px 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { font-size: 1.05rem; color: #333; max-width: 68ch; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header p {
  margin: 14px auto 0;
  color: #555;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,0,0,0.12); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: #e06500; border-color: #e06500; }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.nav-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav-logo .logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  display: block;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.cta-nav {
  background: var(--orange);
  color: var(--white);
  margin-left: 8px;
  padding: 8px 18px;
}
.nav-links a.cta-nav:hover { background: #e06500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(250,119,17,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 80%, rgba(10,112,78,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 20px; }
.hero h1 span { color: var(--orange); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.18rem;
  margin: 0 auto 36px;
  max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--off-white);
  padding: 28px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.8rem; color: #666; font-weight: 500; margin-top: 2px; }

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.icon-orange { background: rgba(250,119,17,0.12); }
.icon-green  { background: rgba(10,112,78,0.1); }
.icon-gold   { background: rgba(232,196,104,0.18); }
.icon-black  { background: rgba(0,4,9,0.08); }

.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p   { font-size: 0.94rem; color: #555; margin: 0; }

/* ---------- Feature Row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-content .label { display: block; }
.feature-content h2 { margin-bottom: 16px; }
.feature-content p  { margin-bottom: 24px; max-width: 100%; }

.feature-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: #333;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}

.feature-visual {
  background: var(--black);
  border-radius: 12px;
  padding: 32px;
  color: var(--white);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-visual .visual-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.feature-visual .visual-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* ---------- Battle Card Preview ---------- */
.battle-card-preview {
  background: var(--black);
  border-radius: 12px;
  padding: 28px;
  color: var(--white);
}
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bc-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.bc-section { margin-bottom: 16px; }
.bc-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.bc-item {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 5px;
  line-height: 1.4;
}
.bc-item::before { content: '›'; color: var(--orange); flex-shrink: 0; font-weight: 700; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: #555; margin: 0; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 600px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0 auto 32px; }
.cta-band .btn-white:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- Dark CTA Band ---------- */
.cta-dark {
  background: var(--black);
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
}
.cta-dark h2 { color: var(--white); max-width: 600px; margin: 0 auto 14px; }
.cta-dark p  { color: rgba(255,255,255,0.7); margin: 0 auto 32px; }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px;
  background: var(--white);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(250,119,17,0.15);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #666; margin-bottom: 12px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--black); letter-spacing: -0.04em; line-height: 1; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-price span { font-size: 0.9rem; font-weight: 500; color: #888; }
.pricing-desc { font-size: 0.92rem; color: #666; margin: 12px 0 24px; max-width: 100%; }
.pricing-features { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #333;
}
.pricing-features li.yes::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}
.pricing-features li.no {
  color: #999;
}
.pricing-features li.no::before {
  content: '–';
  flex-shrink: 0;
  color: #bbb;
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 28px;
}
.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--black); }
.author-role { font-size: 0.8rem; color: #777; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-icon { flex-shrink: 0; font-size: 1.2rem; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.95rem; color: #555; max-width: 100%; }

/* ---------- Output Card ---------- */
.output-card {
  background: var(--black);
  border-radius: 12px;
  padding: 32px;
  color: var(--white);
}
.output-property {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.output-address {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.output-section { margin-bottom: 20px; }
.output-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.output-line {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 7px;
  line-height: 1.45;
}
.output-line .bullet { color: var(--orange); flex-shrink: 0; }
.output-line .tag {
  background: rgba(10,112,78,0.25);
  color: #5de3b0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

/* ---------- Process Steps ---------- */
.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:last-child .ps-line { display: none; }
.ps-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.ps-num {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.ps-line {
  width: 2px;
  flex: 1;
  background: rgba(250,119,17,0.25);
  min-height: 40px;
  margin-top: 6px;
}
.ps-content { padding-top: 10px; }
.ps-content h3 { margin-bottom: 6px; font-size: 1.1rem; }
.ps-content p { font-size: 0.95rem; color: #555; max-width: 100%; margin: 0; }

/* ---------- Use Case Tabs ---------- */
.use-case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.uc-tab {
  padding: 9px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: #555;
  transition: all var(--transition);
}
.uc-tab:hover, .uc-tab.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(250,119,17,0.05);
}
.uc-panel { display: none; }
.uc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: white;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 60px 20px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  max-width: 260px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--black);
  padding: 80px 20px 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.72); margin: 0 auto 32px; font-size: 1.12rem; }

/* ---------- Highlights Pill ---------- */
.pill {
  display: inline-block;
  background: rgba(250,119,17,0.1);
  color: var(--orange);
  border: 1px solid rgba(250,119,17,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Try Tool Embed ---------- */
.tool-embed-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-placeholder {
  text-align: center;
  padding: 60px 30px;
}
.tool-placeholder .bee-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.tool-placeholder h3 { margin-bottom: 10px; color: var(--black); }
.tool-placeholder p  { color: #666; font-size: 0.95rem; max-width: 100%; }

/* ---------- Bee mascot decoration ---------- */
.bee-mascot {
  display: inline-block;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.bg-off-white { background: var(--off-white); }
.bg-black { background: var(--black); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.divider { height: 1px; background: #e8e8e8; margin: 60px 0; }

/* ---------- Mobile Nav ---------- */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.nav-mobile ul a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile ul a:hover { color: var(--white); }
.nav-mobile-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .uc-panel.active { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px 16px; }
  .hero { padding: 72px 16px 64px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .stats-inner { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 60px 16px 52px; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
