/* ============================================================
   SAME DAY SITES — Landing Page Styles
   Brand color: Gold #ffc822 on dark #08080f
   ============================================================ */

:root {
  --gold:      #ffc822;
  --gold-dim:  #aa8800;
  --gold-rgb:  255, 200, 34;
  --bg:        #07070f;
  --bg-card:   #10101e;
  --bg-card2:  #161628;
  --text:      #e8edf4;
  --text-dim:  #7a8a9a;
  --border:    rgba(255,200,34,0.15);
  --glow-sm:   0 0 12px rgba(255,200,34,0.45);
  --glow-md:   0 0 28px rgba(255,200,34,0.35), 0 0 60px rgba(255,200,34,0.12);
  --gradient:  linear-gradient(135deg, #aa7700, #ffc822);
  --gradient2: linear-gradient(135deg, #ffc822, #fff4a0);
  --radius:    10px;
  --radius-lg: 18px;
  --trans:     0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.04em;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.text-gold {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,200,34,0.1);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-top: 8px;
}
.section-header p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--gradient);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: var(--glow-sm);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}
.btn.large { padding: 18px 48px; font-size: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  background: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,200,34,0.06);
}

/* ---- Nav ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 6px 0;
}
.site-nav.scrolled {
  background: rgba(7,7,15,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,200,34,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,200,34,0.4));
}
.nav-brand span { font-size: 13px; letter-spacing: 0.05em; }
.nav-cta { font-size: 14px; padding: 10px 24px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,200,34,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,200,34,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, var(--bg) 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.18;
}
.hero-orb-1 { width: 600px; height: 600px; background: #ffc822; top: -200px; left: -150px; animation: floatOrb 12s ease-in-out infinite; }
.hero-orb-2 { width: 500px; height: 500px; background: #0044cc; bottom: -150px; right: -100px; animation: floatOrb 10s ease-in-out infinite 5s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,200,34,0.08);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--glow-sm);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%       { opacity:0.5; transform:scale(1.4); }
}
.hero h1 {
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,200,34,0.35));
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  color: #96a6b8;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.proof-icon { font-size: 16px; }
.proof-item strong { color: var(--text); }

/* ---- How It Works ---- */
.hiw-section {
  padding: 100px 0;
  background: var(--bg-card);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(255,200,34,0.2) 50%, var(--gold) 100%);
  opacity: 0.3;
}
.hiw-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  box-shadow: var(--glow-sm);
  position: relative;
  z-index: 1;
}
.step-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.hiw-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.hiw-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---- What You Get ---- */
.features-section {
  padding: 100px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--trans);
}
.feature-card:hover {
  border-color: rgba(255,200,34,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-md);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---- Business Types ---- */
.types-section {
  padding: 100px 0;
  background: var(--bg-card);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.type-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
}
.type-card:hover {
  border-color: rgba(255,200,34,0.3);
  background: rgba(255,200,34,0.04);
}
.type-card-icon {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.type-card p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(255,200,34,0.15);
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: #96a6b8;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.author-biz {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 120px 0;
  background: var(--bg-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,200,34,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }

/* ---- Preview Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,200,34,0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px rgba(255,200,34,0.12), 0 32px 80px rgba(0,0,0,0.5);
}
.modal-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 2;
}
.modal-header h2 {
  font-size: 26px;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  line-height: 1;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-body { padding: 28px 36px 36px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: #4a5568; }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,200,34,0.5);
  box-shadow: 0 0 0 3px rgba(255,200,34,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #1a1a2e; color: var(--text); }

.type-description {
  display: none;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255,200,34,0.06);
  border: 1px solid rgba(255,200,34,0.15);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.type-description.visible { display: block; }

.modal-submit {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  font-size: 16px;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
}
.modal-success.show { display: block; }
.success-icon { font-size: 56px; margin-bottom: 20px; }
.modal-success h3 {
  font-size: 26px;
  color: var(--text);
  margin-bottom: 12px;
}
.modal-success p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}
.modal-success .gold { color: var(--gold); font-weight: 600; }

/* Form error state */
input.error { border-color: #e53e3e !important; }
.field-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.field-error.show { display: block; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
}
@media (max-width: 640px) {
  .types-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; text-align: center; }
  .modal { border-radius: 12px 12px 0 0; max-height: 96vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
