/* QuoteSmith Landing Page v1.3.0 */

:root {
  --navy: #0B1929;
  --navy-light: #112240;
  --navy-lighter: #1B3A5C;
  --gold: #C4973B;
  --gold-hover: #D4A74B;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --green: #22C55E;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 25, 41, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 58, 92, 0.5);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-login {
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta-sm:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196, 151, 59, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(196, 151, 59, 0.25);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 151, 59, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid var(--navy-lighter);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gray-500);
  background: rgba(255, 255, 255, 0.03);
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

/* Trades strip */
.trades {
  padding: 40px 0;
  border-top: 1px solid var(--navy-lighter);
  border-bottom: 1px solid var(--navy-lighter);
  text-align: center;
}

.trades-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.trades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trades-list span {
  padding: 6px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 20px;
  font-size: 13px;
  color: var(--gray-300);
  font-weight: 500;
}

/* Section titles */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 48px;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 8px auto 20px;
  background: rgba(196, 151, 59, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Features */
.features {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  padding: 28px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.feature:hover {
  border-color: rgba(196, 151, 59, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 151, 59, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 0;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-price {
  margin-bottom: 28px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
}

.price-period {
  font-size: 18px;
  color: var(--gray-400);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-300);
  border-bottom: 1px solid var(--navy-lighter);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

/* FAQ */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--navy-lighter);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--navy-light);
  border-top: 1px solid var(--navy-lighter);
  border-bottom: 1px solid var(--navy-lighter);
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta p {
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 28px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
}

.footer-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--navy-lighter);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    border-bottom: 1px solid var(--navy-lighter);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta, .btn-ghost {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 28px 20px;
  }
}

/* ==============================
   Examples Showcase (Homepage)
   ============================== */
.examples-showcase {
  padding: 100px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.showcase-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.showcase-card:hover {
  border-color: rgba(196, 151, 59, 0.4);
  transform: translateY(-4px);
}

.showcase-preview {
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid var(--navy-lighter);
  min-height: 180px;
  position: relative;
}

.showcase-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.showcase-preview-biz {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.showcase-preview-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-preview-line {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 6px;
}

.showcase-preview-line.short {
  width: 60%;
}

.showcase-preview-line.medium {
  width: 80%;
}

.showcase-preview-line.gold-line {
  background: var(--gold);
  height: 2px;
  margin: 10px 0;
}

.showcase-preview-table {
  margin-top: 10px;
}

.showcase-preview-table-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--gray-500);
  padding: 3px 0;
  border-bottom: 1px solid #f1f5f9;
}

.showcase-preview-total {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 6px;
  margin-top: 4px;
  border-top: 2px solid var(--gold);
}

.showcase-info {
  padding: 20px;
}

.showcase-trade {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(196, 151, 59, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 10px;
}

.showcase-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.showcase-info p {
  font-size: 13px;
  color: var(--gray-400);
}

.showcase-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
}

.showcase-cta {
  text-align: center;
}

/* ==============================
   Examples Page
   ============================== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.example-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.example-tab {
  padding: 10px 24px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 8px;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.example-tab:hover,
.example-tab.active {
  background: rgba(196, 151, 59, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.example-proposal {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}

.example-proposal-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--navy-lighter);
}

.example-proposal-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
}

.example-proposal-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--gray-400);
}

.example-proposal-body {
  background: #fff;
  color: var(--navy);
  padding: 40px;
}

/* Proposal preview styles (shared with examples) */
.proposal-doc {
  max-width: 800px;
  margin: 0 auto;
}

.proposal-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--gold);
}

.proposal-doc-biz h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
}

.proposal-doc-biz p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

.proposal-doc-title-box {
  text-align: right;
}

.proposal-doc-title-box h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy-lighter);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.proposal-doc-title-box p {
  font-size: 12px;
  color: var(--gray-500);
}

.proposal-doc-section {
  margin-bottom: 24px;
}

.proposal-doc-section h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.proposal-doc-section p {
  font-size: 13px;
  color: #334155;
  line-height: 1.7;
}

.proposal-doc-client {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.proposal-doc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.proposal-doc-table th {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.proposal-doc-table th:nth-child(2),
.proposal-doc-table th:nth-child(3),
.proposal-doc-table th:nth-child(4) {
  text-align: right;
}

.proposal-doc-table td {
  padding: 10px 12px;
  font-size: 13px;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.proposal-doc-table td:nth-child(2),
.proposal-doc-table td:nth-child(3),
.proposal-doc-table td:nth-child(4) {
  text-align: right;
}

.proposal-doc-totals {
  text-align: right;
  font-size: 13px;
  color: #334155;
}

.proposal-doc-totals div {
  padding: 4px 0;
}

.proposal-doc-totals .total-row {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  border-top: 2px solid var(--gold);
  padding-top: 8px;
  margin-top: 4px;
}

.proposal-doc-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
}

/* ==============================
   Blog Index
   ============================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: rgba(196, 151, 59, 0.4);
  transform: translateY(-3px);
}

.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--gray-500);
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.blog-card-link:hover {
  color: var(--gold-hover);
}

/* ==============================
   Blog Article
   ============================== */
.article {
  padding: 140px 0 80px;
}

.article-header {
  text-align: center;
  margin-bottom: 48px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.article-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-500);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
  color: var(--gray-300);
  line-height: 1.8;
  font-size: 16px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--white);
}

.article-cta {
  margin: 48px 0;
  padding: 32px;
  background: var(--navy-light);
  border: 1px solid var(--gold);
  border-radius: 16px;
  text-align: center;
}

.article-cta h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--white);
}

.article-cta p {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 16px;
}

.article-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-related h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--white);
}

.article-related ul {
  list-style: none;
  padding: 0;
}

.article-related li {
  margin-bottom: 10px;
}

.article-related a {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.article-related a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

/* ==============================
   Mobile — Examples & Blog
   ============================== */
@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .example-proposal-header {
    flex-direction: column;
    gap: 12px;
  }

  .example-proposal-body {
    padding: 24px 16px;
  }

  .proposal-doc-header {
    flex-direction: column;
    gap: 16px;
  }

  .proposal-doc-title-box {
    text-align: left;
  }

  .proposal-doc-client {
    grid-template-columns: 1fr;
  }

  .proposal-doc-table th,
  .proposal-doc-table td {
    padding: 6px 8px;
    font-size: 11px;
  }

  .page-hero {
    padding: 120px 0 40px;
  }
}

/* Trades Section */
.trades {
  padding: 80px 0;
  text-align: center;
}

.trades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trade-pill {
  padding: 10px 20px;
  border: 1px solid rgba(196, 151, 59, 0.3);
  border-radius: 100px;
  color: var(--gray-300);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.trade-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 151, 59, 0.08);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  text-align: center;
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: var(--gray-500);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  white-space: nowrap;
  padding: 14px 28px;
}

.newsletter-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter-btn {
    width: 100%;
  }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(196, 151, 59, 0.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 34, 64, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--navy-lighter);
  padding: 16px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--gray-300);
  margin: 0;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btn-accept {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.cookie-btn-accept:hover {
  background: var(--gold-hover);
}

.cookie-btn-reject {
  padding: 8px 20px;
  background: transparent;
  color: var(--gray-400);
  border: 1px solid var(--navy-lighter);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.cookie-btn-reject:hover {
  border-color: var(--gray-500);
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }
}
