/* ============================================================
   DELAWARE CORPORATE SERVICES — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700;900&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --navy:       #0B1929;
  --navy-mid:   #162640;
  --navy-light: #1E3A5F;
  --navy-hover: #0f2035;
  --gold:       #C9A844;
  --gold-light: #E8C96A;
  --gold-dim:   rgba(201,168,68,.13);
  --gold-border:rgba(201,168,68,.22);
  --cream:      #F4EFE6;
  --cream-dark: #DDD5C0;
  --text:       #EDE8DF;
  --text-muted: #7A90A8;
  --text-soft:  #A8BAC8;
  --border:     rgba(201,168,68,.18);
  --border-light:rgba(255,255,255,.07);
  --success:    #4CAF79;
  --danger:     #E05555;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

ul, ol { list-style: none; }

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ── LAYOUT ── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── TYPOGRAPHY ── */
.label {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.label-muted {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── DIVIDERS ── */
hr { border: none; border-top: 1px solid var(--border-light); }
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none; margin: 2.5rem 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 2rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s; text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--gold);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 2rem; border: 1px solid var(--gold); cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.btn-outline:hover { background: var(--gold-dim); color: var(--gold); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BADGE ── */
.badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: 'Space Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .22rem .65rem; font-weight: 700;
}
.badge-outline {
  display: inline-block; border: 1px solid var(--border); color: var(--text-muted);
  font-family: 'Space Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .22rem .65rem;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,25,41,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 1rem;
}
.nav-logo { display: flex; align-items: baseline; gap: .5rem; cursor: pointer; flex-shrink: 0; text-decoration: none; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 600; color: var(--cream); letter-spacing: .01em;
}
.nav-logo-sub {
  font-family: 'Space Mono', monospace; font-size: .52rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: .15rem; flex: 1; justify-content: center; }
.nav-group { position: relative; }
.nav-btn {
  background: none; border: none; color: var(--text-muted);
  font-family: 'Lato', sans-serif; font-size: .79rem;
  font-weight: 400; letter-spacing: .03em; cursor: pointer;
  padding: .4rem .6rem; border-radius: 3px;
  display: flex; align-items: center; gap: .3rem;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-btn svg { width: 11px; height: 11px; opacity: .6; flex-shrink: 0; }
.nav-btn:hover { color: var(--text); background: var(--border-light); }
.nav-btn.active { color: var(--gold); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #0e2138; border: 1px solid var(--border);
  min-width: 230px; padding: .4rem 0; z-index: 300;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown { display: block; }
.dd-item {
  display: block; padding: .55rem 1.25rem;
  font-size: .82rem; color: var(--text-muted);
  transition: color .2s, background .2s; text-decoration: none;
}
.dd-item:hover { color: var(--gold); background: var(--gold-dim); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  font-family: 'Lato', sans-serif; font-size: .78rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1.25rem; border: none; cursor: pointer; flex-shrink: 0;
  transition: background .2s, transform .2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--text-muted); cursor: pointer; padding: .5rem;
  align-items: center; justify-content: center;
}
.nav-mobile-btn svg { width: 22px; height: 22px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: #0B1929; z-index: 500; overflow-y: auto;
  padding: 5rem 2rem 3rem;
}
.mobile-menu.open { display: block; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1.4rem; line-height: 1;
}
.mobile-section-head {
  font-family: 'Space Mono', monospace; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin: 1.75rem 0 .5rem;
}
.mobile-item {
  display: block; width: 100%; text-align: left;
  padding: .7rem 0; border-bottom: 1px solid var(--border-light);
  font-size: .9rem; color: var(--text-muted); cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Lato', sans-serif; transition: color .2s;
  text-decoration: none;
}
.mobile-item:hover { color: var(--gold); }
.mobile-cta { margin-top: 2rem; }
.mobile-cta a { width: 100%; justify-content: center; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,68,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.page-hero-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: var(--text-muted); max-width: 580px; margin-top: .75rem; font-size: .95rem; }

/* ── HOME HERO ── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, #0B1929 0%, #0e2038 60%, #162640 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,68,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,68,.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-glow {
  position: absolute; top: 20%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,68,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-accent { width: 3px; height: 80px; background: var(--gold); margin-bottom: 2rem; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--text-soft);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
  display: block; font-family: 'Space Mono', monospace; font-size: .58rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: .5rem;
}

/* ── CARDS ── */
.card {
  background: var(--navy-mid); border: 1px solid var(--border);
  padding: 2rem; transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(201,168,68,.4); transform: translateY(-3px); }
.card.featured { border-color: var(--gold); }
.card.no-hover:hover { transform: none; }

.card-icon {
  width: 44px; height: 44px; background: var(--gold-dim);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1.25rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 700; color: var(--gold-border); line-height: 1;
  width: 2.5rem; flex-shrink: 0;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ── SERVICE LIST ── */
.service-list { background: var(--navy-mid); border: 1px solid var(--border); }
.service-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border-light); gap: 1rem;
}
.service-row:last-child { border-bottom: none; }
.service-name { font-size: .9rem; }
.service-sub { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.service-price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); white-space: nowrap; font-weight: 600; }

/* ── TABLES ── */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
  font-family: 'Space Mono', monospace; font-size: .59rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.tbl td { padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .875rem; vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: var(--gold-dim); }
.tbl .yes { color: var(--success); font-weight: 700; }
.tbl .no  { color: var(--text-muted); opacity: .4; }
.tbl .partial { color: var(--gold-light); }
.tbl-wrap { overflow-x: auto; }

/* ── PRICING ── */
.price-card { background: var(--navy-mid); border: 1px solid var(--border); padding: 2.25rem 2rem; position: relative; transition: all .3s; }
.price-card:hover { border-color: rgba(201,168,68,.45); transform: translateY(-4px); }
.price-card.featured { border-color: var(--gold); }
.price-featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-family: 'Space Mono', monospace;
  font-size: .55rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .8rem; white-space: nowrap;
}
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--cream); line-height: 1; }
.price-period { font-size: .78rem; color: var(--text-muted); letter-spacing: .04em; margin: .45rem 0 1.5rem; }
.price-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .84rem; color: var(--text-soft); padding: .22rem 0; }
.price-item svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; margin-top: 4px; }

/* ── INFO BOX ── */
.info-box {
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box p { font-size: .88rem; margin: 0; }
.info-box strong { color: var(--cream); }

.warning-box {
  background: rgba(224,85,85,.08); border: 1px solid rgba(224,85,85,.25);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}

/* ── PROSE ── */
.prose h3 { color: var(--cream); margin: 2rem 0 .75rem; }
.prose h4 {
  color: var(--gold-light); margin: 1.5rem 0 .6rem; font-size: .85rem;
  font-family: 'Space Mono', monospace; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 400;
}
.prose ul { list-style: none; margin: .5rem 0 1rem; }
.prose ul li {
  position: relative; padding-left: 1.25rem;
  margin-bottom: .35rem; font-size: .9rem; color: var(--text-soft);
}
.prose ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }
.prose p { font-size: .92rem; color: var(--text-soft); }
.prose strong { color: var(--cream); font-weight: 700; }
.prose hr { margin: 2rem 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid), #1a2e48);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5rem 0; text-align: center;
}
.cta-ornament { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }

/* ── CONTACT CARDS ── */
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border: 1px solid var(--border); transition: border-color .3s;
}
.contact-item:hover { border-color: rgba(201,168,68,.4); }
.contact-icon { width: 40px; height: 40px; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }

/* ── INVENTORY TABLE ── */
.inv-tag {
  display: inline-block; font-family: 'Space Mono', monospace;
  font-size: .57rem; letter-spacing: .07em; padding: .14rem .45rem;
  border: 1px solid; text-transform: uppercase;
}
.inv-tag.llc  { color: var(--gold); border-color: var(--gold-border); }
.inv-tag.corp { color: #7EB5E0; border-color: rgba(126,181,224,.3); }
.inv-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); }
.inv-price.pending { color: var(--text-muted); font-size: .85rem; font-family: 'Lato', sans-serif; }

.inv-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.25rem; align-items: center; }
.inv-filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .85rem; cursor: pointer; transition: all .2s;
}
.inv-filter-btn:hover,
.inv-filter-btn.active { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }

/* ── FORMS ── */
.form-section {
  background: var(--navy-mid); border: 1px solid var(--border);
  padding: 2rem; margin-bottom: 1.25rem;
}
.form-section-title {
  font-family: 'Space Mono', monospace; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block; font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .5rem;
}
.form-label span.req { color: var(--gold); margin-left: .2rem; }
.form-input {
  width: 100%; background: var(--navy); border: 1px solid var(--border);
  color: var(--text); font-family: 'Lato', sans-serif; font-size: .9rem;
  padding: .75rem 1rem; transition: border-color .2s; appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); opacity: .7; }
select.form-input { cursor: pointer; 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 fill='%237A90A8' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
select.form-input option { background: var(--navy-mid); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note-sm { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }

/* Radio / Checkbox */
.form-check { display: flex; align-items: flex-start; gap: .75rem; padding: .45rem 0; cursor: pointer; }
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0;
  accent-color: var(--gold); cursor: pointer;
}
.form-check-label { font-size: .88rem; color: var(--text-soft); line-height: 1.5; cursor: pointer; }
.form-check-label strong { color: var(--cream); font-weight: 700; }
.form-check-label .price-hint { color: var(--gold); font-size: .82rem; }

/* Submit */
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1.1rem 2rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-submit-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .85rem; line-height: 1.6; }
.form-submit-note strong { color: var(--cream); }

/* Honeypot */
.hidden-field { display: none !important; visibility: hidden; }

/* ── FOOTER ── */
.site-footer { background: #070F1A; border-top: 1px solid var(--border); margin-top: auto; }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--cream);
}
.footer-brand-sub {
  font-family: 'Space Mono', monospace; font-size: .52rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: .3rem 0 .75rem;
}
.footer-brand p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: .4rem; }
.footer-col h5 {
  font-family: 'Space Mono', monospace; font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-link {
  display: block; font-size: .82rem; color: var(--text-muted);
  padding: .22rem 0; transition: color .2s; text-decoration: none;
}
.footer-link:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .77rem; color: var(--text-muted); flex-wrap: wrap; gap: .75rem;
}
.footer-contact a { color: var(--text-muted); display: block; font-size: .82rem; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

/* ── SUCCESS PAGE ── */
.success-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.success-card { max-width: 560px; text-align: center; }
.success-icon { width: 64px; height: 64px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.success-icon svg { width: 30px; height: 30px; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .55s ease forwards; }
.fade-up-2 { animation: fadeUp .55s .1s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp .55s .2s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp .55s .3s ease forwards; opacity: 0; }
.fade-up-5 { animation: fadeUp .55s .4s ease forwards; opacity: 0; }

/* ── UTILITIES ── */
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links       { display: none !important; }
  .nav-mobile-btn  { display: flex !important; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
  .grid-3          { grid-template-columns: 1fr 1fr; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
  .form-grid      { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .hero           { min-height: auto; padding: 5rem 0; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .btn-group      { flex-direction: column; }
  .btn-primary,
  .btn-outline    { justify-content: center; }
}
@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .form-section { padding: 1.5rem 1.25rem; }
  .price-card { padding: 1.75rem 1.25rem; }
}
