/* ============================================
   REGULATEDBITCOIN.COM — Premium Stylesheet
   Aesthetic: Corporate Luxury / Financial Authority
   ============================================ */

:root {
  --navy:       #0a0f1e;
  --navy-mid:   #111827;
  --navy-light: #1a2540;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale:  #f5e6c0;
  --white:      #ffffff;
  --off-white:  #f7f6f2;
  --gray-light: #e8e6e0;
  --gray-mid:   #9ca3af;
  --gray-dark:  #4b5563;
  --accent:     #2563eb;
  --green:      #10b981;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --max-w:      1200px;
  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.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(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.05em;
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(37,99,235,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0f1e 0%, #0d1626 100%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.domain-name { color: var(--white); }
.tld { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}

.btn-outline:hover { color: var(--gold); }

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}

.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ---- SECTION LABELS & TITLES ---- */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ---- STRIP ---- */
.strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.strip-dot { color: var(--gold); font-size: 0.5rem; }

/* ---- VALUE SECTION ---- */
.value {
  padding: 7rem 0;
  background: var(--off-white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.value-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ---- PROFILE SECTION ---- */
.profile {
  padding: 7rem 0;
  background: var(--navy);
}

.profile .section-label { color: var(--gold); }
.profile h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.profile p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 440px;
}

.profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.profile-metrics {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
}

.metric-row:last-child { border-bottom: none; }

.metric-label {
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.metric-value {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.metric-value.score { color: var(--gold); }
.metric-value.available { color: var(--green); }

/* ---- BUYERS SECTION ---- */
.buyers {
  padding: 7rem 0;
  background: var(--off-white);
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.buyer-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.buyer-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.buyer-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.buyer-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.buyer-card p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ---- BLOG PREVIEW ---- */
.blog-preview {
  padding: 7rem 0;
  background: var(--navy-mid);
}

.blog-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.blog-preview-header .section-label { color: var(--gold); }
.blog-preview-header h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--white);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.post-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  border-radius: var(--radius);
  display: block;
  transition: var(--transition);
  cursor: pointer;
}

.post-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.post-card.featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  background:
    linear-gradient(to top, rgba(10,15,30,0.95) 40%, rgba(10,15,30,0.4) 100%),
    linear-gradient(135deg, var(--navy-light), #1e2d50);
  border-color: rgba(201,168,76,0.2);
}

.post-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.post-card h3 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.post-card.featured h3 { font-size: 1.4rem; }
.post-card:not(.featured) h3 { font-size: 1rem; }

.post-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.post-read {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  align-items: flex-start;
}

/* ---- FOOTER ---- */
.footer {
  background: #06090f;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  max-width: 320px;
  line-height: 1.7;
}

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

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
}

/* ---- WHY PAGE ---- */
.page-hero {
  background: var(--navy);
  padding: 160px 2rem 80px;
  text-align: center;
}

.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.why-section { padding: 5rem 0; background: var(--off-white); }
.why-section:nth-child(even) { background: var(--white); }

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-block.reverse { direction: rtl; }
.why-block.reverse > * { direction: ltr; }

.why-text .section-label { color: var(--gold); }
.why-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.why-text p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.why-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.big-quote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-visual {
  display: grid;
  gap: 1rem;
}

.data-bar-row { display: flex; align-items: center; gap: 1rem; }
.data-bar-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); min-width: 80px; }
.data-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.data-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 1.5s ease;
}

.data-bar-pct { font-size: 0.8rem; color: var(--gold); min-width: 40px; text-align: right; }

/* ---- BLOG PAGE ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 5rem 0;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.blog-card-header {
  background: var(--navy);
  padding: 2rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-card-body { padding: 1.75rem; }
.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ---- BLOG POST PAGE ---- */
.post-hero { background: var(--navy); padding: 160px 2rem 80px; }
.post-tag-lg {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.post-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.post-byline {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.post-body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.post-body p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-mid);
}

.post-cta-box {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.post-cta-box h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.post-cta-box p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

/* ---- OFFER PAGE ---- */
.offer-section { padding: 6rem 0; background: var(--off-white); }

.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.offer-info .section-label { color: var(--gold); }
.offer-info h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.offer-info p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.offer-bullets {
  list-style: none;
  margin-top: 1.5rem;
}

.offer-bullets li {
  font-size: 0.875rem;
  color: var(--gray-dark);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offer-bullets li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.offer-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.offer-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.offer-form-wrap .form-sub {
  font-size: 0.825rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.success-message {
  display: none;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--green);
  font-weight: 500;
  margin-top: 1rem;
}

/* ---- ANIMATIONS ---- */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .value-grid,
  .buyers-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-inner { gap: 3rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }

  .value-grid,
  .buyers-grid { grid-template-columns: 1fr; }

  .profile-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .posts-grid { grid-template-columns: 1fr; }
  .post-card.featured { grid-row: auto; min-height: 260px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; width: 100%; }

  .why-block,
  .why-block.reverse { grid-template-columns: 1fr; direction: ltr; }

  .offer-inner { grid-template-columns: 1fr; gap: 3rem; }

  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 1.25rem; }

  .blog-grid { grid-template-columns: 1fr; }
}
