/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2D2D3A;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #B8A04A; text-decoration: none; transition: color 0.25s; }
a:hover { color: #9A872E; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #1A1A2E; line-height: 1.2; }
h1 { font-size: 52px; margin-bottom: 0.5em; letter-spacing: -0.02em; }
h2 { font-size: 38px; margin-bottom: 0.5em; letter-spacing: -0.015em; }
h3 { font-size: 22px; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 24px; }
.section--light { background: #F7F7F5; }
.section--navy { background: linear-gradient(135deg, #1A1A2E 0%, #2D2854 50%, #1A1A2E 100%); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--gold { background: #B8A04A; color: #fff; box-shadow: 0 4px 16px rgba(184, 160, 74, 0.25); }
.btn--gold:hover { background: #A38E3A; box-shadow: 0 6px 24px rgba(184, 160, 74, 0.35); }
.btn--outline { border: 2px solid #B8A04A; color: #B8A04A; background: transparent; }
.btn--outline:hover { background: #B8A04A; color: #fff; }
.btn--white { background: #fff; color: #1A1A2E; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.btn--white:hover { background: #F7F7F5; }
.btn--navy { background: #1A1A2E; color: #fff; }
.btn--navy:hover { background: #12121F; }

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1A1A2E;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__logo:hover { text-decoration: none; }
.nav__logo span { color: #B8A04A; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  color: #2D2D3A;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: #B8A04A; text-decoration: none; }
.nav__cta {
  background: #B8A04A;
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(184, 160, 74, 0.2);
}
.nav__cta:hover { background: #A38E3A; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184, 160, 74, 0.3); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A2E;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(160deg, #FDFCF8 0%, #fff 40%, #F8F6EF 100%);
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 160, 74, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 26, 46, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { max-width: 900px; position: relative; z-index: 1; }
.hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8A04A;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(184, 160, 74, 0.08);
  border-radius: 50px;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
  color: #1A1A2E;
  letter-spacing: -0.025em;
}
.hero__sub {
  font-size: 18px;
  color: #6B6B7B;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.hero__actions .btn--gold {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(184, 160, 74, 0.3);
}
.hero__actions .btn--gold:hover {
  box-shadow: 0 8px 32px rgba(184, 160, 74, 0.4);
}
.hero__link {
  color: #1A1A2E;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
}
.hero__link:hover { color: #B8A04A; }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.trust-bar__item {
  font-weight: 500;
  color: #4A4A5A;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  letter-spacing: 0.01em;
}
.trust-bar__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #B8A04A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: #fff; padding: 100px 24px; text-align: center; }
.problem-section > .container > h2 { margin-bottom: 16px; }
.problem-section > .container > p { color: #6B6B7B; font-size: 17px; max-width: 560px; margin: 0 auto 56px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 48px auto 0;
}
.card {
  background: #FAFAF8;
  padding: 36px 32px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(184, 160, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #B8A04A;
}
.card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #B8A04A;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card__title {
  font-family: 'Playfair Display', serif;
  color: #1A1A2E;
  font-size: 20px;
  margin-bottom: 12px;
  border-top: none;
  padding-top: 0;
}
.card__text { font-size: 15px; color: #6B6B7B; line-height: 1.7; }

/* ===== LEAD MAGNET ===== */
.lead-magnet { text-align: center; }
.lead-magnet h2 { color: #fff; font-size: 38px; margin-bottom: 16px; letter-spacing: -0.015em; }
.lead-magnet p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.lead-magnet .form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.lead-magnet .form-row input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.lead-magnet .form-row input::placeholder { color: rgba(255, 255, 255, 0.4); }
.lead-magnet .form-row input:focus {
  outline: none;
  border-color: #B8A04A;
  background: rgba(255, 255, 255, 0.12);
}
.lead-magnet .form-row .btn--gold {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.lead-magnet .fine-print {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-top: 16px;
}

/* ===== FEATURED ARTICLES ===== */
.featured-section { background: #F7F7F5; padding: 100px 24px; }
.featured-section h2 { text-align: center; font-size: 38px; margin-bottom: 56px; }
.article-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.article-card:hover {
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.1);
  text-decoration: none;
  transform: translateY(-4px);
}
.article-card__img {
  height: 180px;
  background: linear-gradient(135deg, #F0EDE3 0%, #E8E4D8 100%);
  position: relative;
  overflow: hidden;
}
.article-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,0.5));
}
/* Visual accent patterns per card — gives each card a unique feel */
.article-card:nth-child(1) .article-card__img { background: linear-gradient(135deg, #EDE9DC 0%, #DCD5C3 50%, #D4CEB8 100%); }
.article-card:nth-child(2) .article-card__img { background: linear-gradient(135deg, #E4E1D8 0%, #D8D2C4 50%, #CFC8B6 100%); }
.article-card:nth-child(3) .article-card__img { background: linear-gradient(135deg, #EAE7DE 0%, #DDD8CB 50%, #D2CCBC 100%); }
/* Decorative circles inside card "images" */
.article-card__img::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(184, 160, 74, 0.12);
  right: -20px;
  top: -20px;
}
.article-card__body { padding: 28px 28px 32px; }
.article-card__cat {
  background: rgba(184, 160, 74, 0.08);
  color: #B8A04A;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.article-card__title {
  font-family: 'Playfair Display', serif;
  color: #1A1A2E;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.article-card__excerpt {
  color: #6B6B7B;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.article-card__meta {
  font-size: 13px;
  color: #999;
  display: flex;
  gap: 16px;
}
.article-card__link {
  color: #B8A04A;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.article-card__link:hover { text-decoration: none; gap: 10px; }

/* ===== ABOUT PREVIEW (homepage) ===== */
.about-preview {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-preview h2 { font-size: 38px; margin-bottom: 20px; }
.about-preview p {
  font-size: 17px;
  line-height: 1.8;
  color: #6B6B7B;
  margin-bottom: 28px;
}
.about-preview__img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B8A04A, #1A1A2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(184, 160, 74, 0.2);
}

/* ===== NEWSLETTER ===== */
.newsletter { text-align: center; }
.newsletter h2 { font-size: 38px; margin-bottom: 16px; }
.newsletter p { max-width: 520px; margin: 0 auto 36px; color: #6B6B7B; font-size: 16px; line-height: 1.65; }
.newsletter .form-row {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  justify-content: center;
}
.newsletter .form-row input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid #E2E2E0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s;
  background: #fff;
}
.newsletter .form-row input:focus {
  outline: none;
  border-color: #B8A04A;
}
.newsletter .form-row input::placeholder { color: #AEAEB8; }
.newsletter .form-row .btn--navy,
.newsletter .form-row .btn--gold {
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 40px;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer__brand .nav__logo { color: #fff; font-size: 20px; }
.footer__brand .nav__logo span { color: #B8A04A; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 12px; line-height: 1.6; }
.footer__heading {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  display: block;
  transition: color 0.25s;
  text-decoration: none;
}
.footer__links a:hover { color: #B8A04A; text-decoration: none; }
.footer__bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer__bottom a:hover { color: #B8A04A; text-decoration: none; }
.footer__disclaimer {
  max-width: 1140px;
  margin: 16px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ===== BLOG INDEX ===== */
.blog-hero { background: #F7F7F5; padding: 72px 24px; text-align: center; }
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.cat-tabs a {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid #E2E2E0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: #6B6B7B;
  transition: all 0.25s;
  text-decoration: none;
}
.cat-tabs a:hover, .cat-tabs a.active {
  background: #1A1A2E;
  color: #fff;
  border-color: #1A1A2E;
  text-decoration: none;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px;
}
.blog-list .article-card {
  border: none;
  border-bottom: 1px solid #EEEEEC;
  border-radius: 0;
  padding-bottom: 32px;
  margin-bottom: 32px;
  box-shadow: none;
}
.blog-list .article-card:hover { box-shadow: none; transform: none; }
.blog-list .article-card:last-child { border-bottom: none; }

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar__box {
  background: #F7F7F5;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar__box h3 { font-size: 18px; margin-bottom: 12px; }
.sidebar__box p { font-size: 14px; color: #6B6B7B; line-height: 1.65; }
.sidebar__box input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E2E0;
  border-radius: 10px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.25s;
}
.sidebar__box input:focus { outline: none; border-color: #B8A04A; }
.sidebar__box .btn { width: 100%; border-radius: 10px; }
.sidebar__box ul { list-style: none; padding: 0; }
.sidebar__box li { margin-bottom: 8px; }
.sidebar__box li a { color: #1A1A2E; font-size: 14px; font-weight: 500; }
.sidebar__box li a:hover { color: #B8A04A; }

/* ===== INDIVIDUAL BLOG POST ===== */
.article-header {
  text-align: center;
  padding: 72px 24px 40px;
  background: #F7F7F5;
}
.article-header__cat {
  background: rgba(184, 160, 74, 0.08);
  color: #B8A04A;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.article-header h1 { font-size: 44px; line-height: 1.18; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; letter-spacing: -0.02em; }
.article-header__meta {
  color: #6B6B7B;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #2D2D3A;
  margin-bottom: 1.25em;
}
.article-content h2 {
  font-size: 28px;
  margin-top: 56px;
  margin-bottom: 16px;
  color: #1A1A2E;
}
.article-content h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-content strong { color: #1A1A2E; }
.article-content ul, .article-content ol {
  margin: 16px 0 24px 24px;
  line-height: 1.8;
  font-size: 17px;
}
.article-content ol { list-style: decimal; }
.article-content ul { list-style: disc; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 3px solid #B8A04A;
  padding: 20px 28px;
  margin: 32px 0;
  background: #F7F7F5;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #4A4A5A;
}

/* Related articles */
.related { padding: 56px 24px; border-top: 1px solid #EEEEEC; }
.related h2 { text-align: center; margin-bottom: 36px; }
.related .cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 800px; margin: 0 auto; }

/* ===== STEPS (start-here) ===== */
.steps-section { padding: 80px 24px; max-width: 700px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.step__num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #B8A04A, #A38E3A);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 160, 74, 0.2);
}
.step__content h3 { margin-bottom: 8px; }
.step__content p { color: #6B6B7B; font-size: 16px; line-height: 1.7; }
.step__link {
  color: #B8A04A;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.step__link:hover { text-decoration: none; gap: 10px; }

/* ===== LEGAL PAGES ===== */
.legal { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.legal h1 { margin-bottom: 24px; }
.legal h2 { margin-top: 32px; font-size: 24px; }
.legal p, .legal li { font-size: 15px; line-height: 1.75; }
.legal ul { list-style: disc; margin: 16px 0 24px 24px; }

/* ===== ABOUT PAGE ===== */
.about-hero { text-align: center; padding: 80px 24px 48px; background: #F7F7F5; }
.about-hero__subtitle { font-size: 17px; color: #6B6B7B; max-width: 600px; margin: 0 auto 16px; line-height: 1.6; }
.about-hero__author { font-size: 15px; color: #B8A04A; font-weight: 600; }
.about-section { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.about-section h2 { margin-top: 48px; margin-bottom: 16px; }
.about-section p { font-size: 17px; line-height: 1.8; margin-bottom: 1.25em; }
.about-section ol { list-style: decimal; margin: 16px 0 24px 24px; line-height: 1.8; font-size: 17px; }
.about-section li { margin-bottom: 12px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2854 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; font-size: 17px; line-height: 1.65; }
.cta-section .form-row {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  justify-content: center;
}
.cta-section input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 0.25s;
}
.cta-section input::placeholder { color: rgba(255, 255, 255, 0.4); }
.cta-section input:focus { outline: none; border-color: #B8A04A; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav__links.active { display: flex; }
  .nav__toggle { display: block; }
  .nav__cta { margin-left: 0; width: 100%; text-align: center; display: block; }

  /* Hero */
  .hero h1 { font-size: 34px; }
  .hero { padding: 72px 24px 60px; }
  .hero__actions .btn--gold { padding: 16px 32px; font-size: 15px; }

  /* Cards */
  .cards { grid-template-columns: 1fr; gap: 16px; }

  /* Blog layout */
  .blog-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Newsletter */
  .newsletter .form-row { flex-direction: column; }
  .newsletter .form-row input { width: 100%; }

  /* Steps */
  .step { grid-template-columns: 1fr; }
  .step__num { justify-self: start; }

  /* About preview */
  .about-preview { text-align: center; }

  /* Trust bar */
  .trust-bar { flex-direction: column; gap: 8px; align-items: center; }

  /* Article header */
  .article-header h1 { font-size: 28px; }

  /* CTA section form */
  .cta-section .form-row { flex-direction: column; }

  /* Sections */
  .section { padding: 64px 24px; }
  .featured-section { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  h2 { font-size: 30px; }
  .hero__label { font-size: 11px; padding: 6px 16px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D8D8D6; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #BBBBB8; }

/* ===== SELECTION ===== */
::selection { background: rgba(184, 160, 74, 0.15); color: #1A1A2E; }
