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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #1a1a1a;
  --card2:   #1e1e1e;
  --border:  #2a2a2a;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --gold-dk: #a88630;
  --white:   #f0f0f0;
  --gray:    #888888;
  --gray-lt: #aaaaaa;
  --green:   #22c55e;
  --red:     #ef4444;
  --radius:  8px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.28);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-sub {
  color: var(--gray);
  margin-top: 12px;
  font-size: 1rem;
}

.section-header { text-align: center; margin-bottom: 60px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  letter-spacing: .02em;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.25); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 22px; font-size: .84rem; }
.btn-full { width: 100%; }

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.logo-img {
  height: 144px;
  width: auto;
  display: block;
  position: relative;
  z-index: 10;
}
.logo-text strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .03em;
}
.logo-text span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
  display: block;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--gold); background: rgba(201,168,76,.1); font-weight: 700; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  color: var(--gray-lt);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }

/* ── Page Hero (shared base) ── */
.page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg-dark {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .28s ease;
}
.card:hover {
  border-color: rgba(201,168,76,.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ── Strip/CTA ── */
.cta-strip {
  background: linear-gradient(135deg, #1a1508, #141414);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-strip p { color: var(--gray); margin-bottom: 28px; }
.cta-strip .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand p { color: var(--gray); font-size: .875rem; margin-top: 14px; max-width: 240px; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col span { color: var(--gray); font-size: .875rem; display: block; margin-bottom: 5px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray); font-size: .78rem; }
.footer-bottom a { color: var(--gray); text-decoration: none; font-size: .78rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Form Styles (shared) ── */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 12px 15px;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-section-title {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.radio-chip input, .check-chip input { display: none; }
.radio-chip label, .check-chip label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--gray);
}
.radio-chip input:checked + label,
.check-chip input:checked + label {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.5);
  color: var(--gold);
  font-weight: 700;
}
.radio-chip label:hover, .check-chip label:hover { border-color: rgba(201,168,76,.3); color: var(--white); }

/* ── Quote Section (shared) ── */
.quote-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.quote-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}
.quote-info h2 em { font-style: normal; color: var(--gold); }
.quote-info > p { color: var(--gray); font-size: .9rem; margin-bottom: 32px; }
.q-trust { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.q-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--gray);
}
.q-trust li::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; color: var(--gold); font-weight: 800;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.quote-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.quote-card > p { color: var(--gray); font-size: .82rem; margin-bottom: 24px; }
@media (max-width: 860px) {
  .quote-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Thank You Message ── */
.ty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}
.ty-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 20px;
  animation: ty-pop .4s ease;
}
@keyframes ty-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.ty-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.ty-body  { color: var(--gray); font-size: .92rem; margin-bottom: 14px; max-width: 340px; }
.ty-contact { color: var(--gray); font-size: .82rem; }
.ty-contact a { color: var(--gold); text-decoration: none; font-weight: 700; }
.ty-contact a:hover { opacity: .75; }
.form-error { color: #ef4444; font-size: .82rem; margin-top: 12px; text-align: center; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
}
