/* Georgia Security Advisors — Brand Stylesheet */

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

:root {
  --navy:        #1B2B4B;
  --navy-dark:   #111D33;
  --slate:       #3D5A80;
  --gold:        #C9963E;
  --gold-hover:  #b5832f;
  --parchment:   #F5F4F0;
  --silver:      #D9DCE3;
  --charcoal:    #1A1A2E;
  --gray-text:   #4A5568;
  --gray-light:  #F0EFeb;
  --white:       #ffffff;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(27,43,75,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--gray-text); line-height: 1.75; }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,150,62,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

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

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--slate) 100%);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #94a3b8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--parchment);
  border-bottom: 1px solid var(--silver);
  padding: 1.4rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: var(--silver);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-num {
  width: 4rem;
  height: 4rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--silver);
}

.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p { font-size: 0.95rem; }

/* ── VERTICALS ── */
.verticals { background: var(--parchment); }

.vertical-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vertical-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.vertical-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.vertical-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.vertical-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.vertical-card p {
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
}

.vertical-card .card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── WHY US ── */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--parchment);
  border: 1px solid var(--silver);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-item h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.why-item p { font-size: 0.93rem; }

/* ── PAIN POINTS ── */
.pain-section { background: var(--parchment); }

.pain-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pain-intro-text h2 { margin-bottom: 1rem; }
.pain-intro-text p { margin-bottom: 1.5rem; }

.pain-list { display: flex; flex-direction: column; gap: 1.5rem; }

.pain-item {
  background: var(--white);
  border: 1px solid var(--silver);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
}

.pain-item h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.pain-item p { font-size: 0.9rem; }

/* ── FULL PAIN POINTS (vertical pages) ── */
.pain-full { background: var(--parchment); }

.pain-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pain-full-item {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 12px;
  padding: 2rem;
}

.pain-full-item .pain-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,150,62,0.1);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.85rem;
}

.pain-full-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.pain-full-item p { font-size: 0.92rem; }

/* ── FORM SECTION ── */
.form-section {
  background: var(--navy);
  padding: 5rem 0;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.form-intro h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.form-intro p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.form-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-trust-list li {
  color: #cbd5e1;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-trust-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.form-card .form-sub {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,62,0.15);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,150,62,0.35);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-main {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-logo-tag {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-tagline {
  color: #64748b;
  font-size: 0.88rem;
  max-width: 340px;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #64748b;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: #475569;
  font-size: 0.82rem;
}

/* ── VERTICAL HERO VARIANT ── */
.hero-sm {
  padding: 5rem 2rem 4rem;
}

.hero-sm h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--silver);
  border: none;
  margin: 0;
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--navy);
  padding: 3rem 2rem;
}

.stat-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vertical-cards,
  .steps,
  .why-grid,
  .pain-intro,
  .pain-full-grid,
  .form-wrap,
  .stat-bar-inner {
    grid-template-columns: 1fr;
  }

  .steps::before { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 3.5rem 0; }
  .hero { padding: 4.5rem 1.5rem 3.5rem; }
  .container { padding: 0 1.5rem; }
  .trust-bar-inner { gap: 1.2rem; }
}
