/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rich-black: #0B0D12;
  --charcoal: #151A23;
  --deep-navy: #0F1626;
  --soft-white: #F5F7FA;
  --cool-gray: #A7B1C2;
  --champagne-gold: #C8A96B;
  --metallic-gold: #B68B3D;
  --electric-cyan: #00D4FF;
  --neon-blue: #1EA7FF;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }
body { background: var(--rich-black); color: var(--soft-white); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p { color: var(--cool-gray); font-size: 1.0625rem; line-height: 1.8; }

/* ============================================
   UTILITIES
============================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.gold { color: var(--champagne-gold); }
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--deep-navy); }
.section-dark { padding: 100px 0; background: var(--charcoal); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne-gold); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--champagne-gold); }
.gold-rule { width: 56px; height: 2px; background: linear-gradient(90deg, var(--champagne-gold), transparent); margin: 20px 0 36px; }

.section-hdr { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-hdr p { margin-top: 16px; }

/* ============================================
   BUTTONS
============================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: linear-gradient(135deg, var(--champagne-gold), var(--metallic-gold));
  color: var(--rich-black); font-family: var(--font-head); font-size: 0.9375rem;
  font-weight: 700; letter-spacing: 0.03em; text-decoration: none;
  border-radius: 4px; border: none; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,169,107,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: transparent; color: var(--soft-white);
  font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none; border-radius: 4px;
  border: 1px solid rgba(200,169,107,0.28); transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--champagne-gold); color: var(--champagne-gold); background: rgba(200,169,107,0.05); }

/* ============================================
   HEADER
============================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0; transition: all 0.3s;
}
header.scrolled {
  background: rgba(11,13,18,0.95); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,107,0.1); padding: 12px 0;
}
nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo-img { height: 50px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 500;
  color: var(--cool-gray); text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.25s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--champagne-gold); transition: width 0.25s; }
.nav-links a:hover { color: var(--champagne-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--champagne-gold); }

.nav-cta {
  padding: 10px 22px; background: linear-gradient(135deg, var(--champagne-gold), var(--metallic-gold));
  color: var(--rich-black); font-family: var(--font-head); font-size: 0.875rem;
  font-weight: 700; text-decoration: none; border-radius: 4px; transition: all 0.25s; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,107,0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--soft-white); border-radius: 2px; }

.mobile-nav { display: none; position: fixed; inset: 0; background: var(--rich-black); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--soft-white); text-decoration: none; transition: color 0.25s; }
.mobile-nav a:hover { color: var(--champagne-gold); }
.mobile-close { position: absolute; top: 22px; right: 24px; background: none; border: none; cursor: pointer; color: var(--cool-gray); font-size: 1.5rem; line-height: 1; }

/* ============================================
   PAGE HERO (Inner pages — smaller than homepage)
============================================ */
.page-hero {
  position: relative; padding: 160px 0 90px; overflow: hidden;
  background: var(--rich-black);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(200,169,107,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 60%, rgba(0,212,255,0.04) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,169,107,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,107,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.3) 80%, transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px;
  background: rgba(200,169,107,0.08); border: 1px solid rgba(200,169,107,0.2);
  border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--champagne-gold); margin-bottom: 24px;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero h1 span {
  background: linear-gradient(135deg, var(--champagne-gold), #e4c87a, var(--metallic-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p { font-size: 1.125rem; max-width: 620px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================
   FEATURE GRID
============================================ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.feat-card {
  padding: 32px 26px; background: rgba(11,13,18,0.6);
  border: 1px solid rgba(200,169,107,0.07); border-radius: 8px; transition: all 0.35s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--champagne-gold), var(--metallic-gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover { border-color: rgba(200,169,107,0.18); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.feat-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(200,169,107,0.06); border: 1px solid rgba(200,169,107,0.11); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.feat-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--soft-white); margin-bottom: 10px; }
.feat-card p { font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   TWO-COL SECTION
============================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-start { align-items: start; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--cool-gray); }
.check-list li::before { content: '✓'; color: var(--champagne-gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.highlight-box {
  padding: 32px; background: rgba(21,26,35,0.8); border: 1px solid rgba(200,169,107,0.12);
  border-radius: 10px; border-left: 3px solid var(--champagne-gold);
}
.highlight-box h3 { font-size: 1.25rem; color: var(--soft-white); margin-bottom: 12px; }
.highlight-box p { font-size: 0.9375rem; line-height: 1.8; }

/* ============================================
   PROCESS STEPS
============================================ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 60px; }
.process-grid::before {
  content: ''; position: absolute; top: 34px;
  left: calc(12.5% + 18px); right: calc(12.5% + 18px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,107,0.3), rgba(200,169,107,0.3), transparent);
}
.p-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.p-step-num {
  width: 68px; height: 68px; border-radius: 50%; background-color: inherit;
  border: 1px solid rgba(200,169,107,0.2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--champagne-gold);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.p-step h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--soft-white); margin-bottom: 10px; }
.p-step p { font-size: 0.85rem; line-height: 1.7; }

/* ============================================
   FAQ
============================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: rgba(21,26,35,0.6); border: 1px solid rgba(200,169,107,0.08);
  border-radius: 8px; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--soft-white);
  text-align: left; transition: color 0.25s;
}
.faq-q:hover { color: var(--champagne-gold); }
.faq-icon { font-size: 1.2rem; color: var(--champagne-gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a p { padding: 0 26px 22px; font-size: 0.9375rem; line-height: 1.8; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 300px; }

/* ============================================
   LEAD GEN FORM
============================================ */
.form-section { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,169,107,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-left p { font-size: 1.0625rem; margin-bottom: 32px; }
.form-highlights { display: flex; flex-direction: column; gap: 12px; }
.fhl { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--cool-gray); }
.fhl-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(200,169,107,0.06); border: 1px solid rgba(200,169,107,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; }
.phone-block { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(200,169,107,0.08); }
.phone-lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cool-gray); margin-bottom: 5px; }
.phone-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--soft-white); text-decoration: none; transition: color 0.25s; }
.phone-num:hover { color: var(--champagne-gold); }

.lead-form { background: rgba(11,13,18,0.75); border: 1px solid rgba(200,169,107,0.1); border-radius: 12px; padding: 40px; backdrop-filter: blur(10px); }
.form-ttl { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--soft-white); margin-bottom: 5px; }
.form-sub { font-size: 0.85rem; color: var(--cool-gray); margin-bottom: 28px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--cool-gray); margin-bottom: 7px; }
.fg label .req { color: var(--champagne-gold); margin-left: 2px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px; background: rgba(21,26,35,0.85);
  border: 1px solid rgba(200,169,107,0.1); border-radius: 6px;
  color: var(--soft-white); font-family: var(--font-body); font-size: 0.9375rem;
  transition: all 0.25s; outline: none; -webkit-appearance: none; appearance: none;
}
.fg 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='%23A7B1C2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: rgba(21,26,35,0.85); padding-right: 42px; cursor: pointer;
}
.fg select option { background: var(--charcoal); color: var(--soft-white); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(167,177,194,0.38); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--champagne-gold); background: rgba(21,26,35,1); box-shadow: 0 0 0 3px rgba(200,169,107,0.07); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sms-box { display: flex; gap: 11px; align-items: flex-start; padding: 14px; background: rgba(200,169,107,0.03); border: 1px solid rgba(200,169,107,0.08); border-radius: 6px; margin-bottom: 20px; }
.sms-box input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--champagne-gold); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.sms-box label { font-size: 0.78rem; color: var(--cool-gray); line-height: 1.6; cursor: pointer; }
.btn-submit { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--champagne-gold), var(--metallic-gold)); color: var(--rich-black); font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; border: none; border-radius: 6px; cursor: pointer; transition: all 0.25s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,169,107,0.32); }

/* ============================================
   FOOTER
============================================ */
footer { background: var(--rich-black); border-top: 1px solid rgba(200,169,107,0.07); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 56px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; max-width: 270px; }
.footer-motto { margin-top: 16px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--champagne-gold); }
.fcol h5 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft-white); margin-bottom: 16px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 0.875rem; color: var(--cool-gray); text-decoration: none; transition: color 0.25s; }
.flinks a:hover { color: var(--champagne-gold); }
.flinks span { font-size: 0.875rem; color: var(--cool-gray); }
.footer-btm { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid rgba(200,169,107,0.06); }
.footer-copy { font-size: 0.8rem; color: var(--cool-gray); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.8rem; color: var(--cool-gray); text-decoration: none; transition: color 0.25s; }
.footer-legal a:hover { color: var(--champagne-gold); }

/* ============================================
   LEGAL PAGES
============================================ */
.legal-content { max-width: 820px; margin: 0 auto; padding: 140px 28px 100px; }
.legal-content h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 8px; }
.legal-date { font-size: 0.85rem; color: var(--cool-gray); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.25rem; color: var(--soft-white); margin: 40px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { color: var(--cool-gray); font-size: 1rem; line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--champagne-gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS
============================================ */
.anim { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.75)} }

/* ============================================
   RESPONSIVE
============================================ */
@media(max-width:1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .process-grid::before { display: none; }
}
@media(max-width:768px) {
  .section, .section-alt, .section-dark, .form-section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-btm { flex-direction: column; text-align: center; }
  .feat-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }
  .lead-form { padding: 24px 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
}
