/* ================================
   GLOBAL STYLES
   ================================ */

html {
  font-size: 14px;
  height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main {
  position: relative;
  z-index: 0;
}

/* ================================
   FORM CONTROLS
   ================================ */

.btn:focus, 
.btn:active:focus, 
.btn-link.nav-link:focus, 
.form-control:focus, 
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, 
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, 
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}



/* ================================
   NAVIGATION / HEADER
   ================================ */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  min-height: 80px;
}

header .navbar {
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 0;
}

header .navbar-brand,
header .nav-link {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.brand-logo {
  height: 64px;
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlength='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* ================================
   ONBOARDING / NEW COLLECTION
   ================================ */

/* Onboarding Container */
.onboarding-container {
  min-height: 100vh;
  background: #0f0f11;
  padding: 2rem 0 4rem;
}

.onboarding-hero {
  padding: 3rem 0 2rem;
}

.welcome-badge .badge {
  background: rgba(201, 169, 110, 0.15);
  color: #c9a96e;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(201, 169, 110, 0.3);
}

.onboarding-hero h1 {
  color: #f0eee8;
  text-shadow: none;
}

.onboarding-hero .lead {
  color: rgba(240, 238, 232, 0.7);
  font-size: 1.1rem;
}

.onboarding-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .onboarding-card {
    padding: 2rem 1.5rem;
  }
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgba(240, 238, 232, 0.5);
  margin-bottom: 0.5rem;
}

.step.active .step-number {
  background: rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  border: 0.5px solid rgba(201, 169, 110, 0.3);
}

.step-label {
  font-size: 0.75rem;
  color: rgba(240, 238, 232, 0.6);
  font-weight: 500;
}

.step-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 1rem;
  margin-bottom: 1.5rem;
}

/* Form Sections */
.form-section {
  animation: fadeInUp 0.6s ease-out;
}

.form-section h3 {
  color: #f0eee8;
}

.form-section .text-muted {
  color: rgba(240, 238, 232, 0.6) !important;
}

.form-section small {
  color: rgba(240, 238, 232, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 1.5rem;
  border: 0.5px solid rgba(201, 169, 110, 0.3);
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

@media (max-width: 576px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.platform-card {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.platform-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.platform-content {
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.platform-card:hover .platform-content {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.15);
}

.platform-card input:checked ~ .platform-content {
  border-color: #c9a96e;
  border-width: 2px;
  background: rgba(201, 169, 110, 0.1);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  color: white;
}

/* Platform-specific icon colors */
.platform-icon.instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}

.platform-icon.facebook { 
  background: #1877f2; 
}

.platform-icon.linkedin { 
  background: #0077b5; 
}

.platform-icon.tiktok { 
  background: #000000; 
}

.platform-icon.youtube { 
  background: #ff0000; 
}

.platform-icon.twitter { 
  background: #000000; 
}

.platform-name {
  font-weight: 600;
  color: #f0eee8;
  font-size: 0.9rem;
}

/* Upload Grid */
.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .upload-grid {
    grid-template-columns: 1fr;
  }
}

.upload-box {
  position: relative;
  aspect-ratio: 1;
}

.upload-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-label {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.upload-label:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.05);
}

.upload-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.3s;
}

.upload-icon {
  font-size: 2.5rem;
  color: #c9a96e;
  margin-bottom: 0.5rem;
}

.upload-text {
  font-weight: 600;
  color: #f0eee8;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.upload-hint {
  font-size: 0.75rem;
  color: rgba(240, 238, 232, 0.6);
}

.upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}

.upload-box.has-image .upload-content {
  opacity: 0;
}

.upload-box.has-image .upload-preview {
  opacity: 1;
}

.upload-box.has-image .upload-label {
  border-style: solid;
  border-color: #c9a96e;
}

/* Magic Button (Primary CTA) */
.btn-magic {
  background: rgba(201, 169, 110, 0.15);
  border: 0.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a96e;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-magic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.2);
  color: #c9a96e;
}

.btn-magic:active {
  transform: translateY(0);
}

.btn-magic::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-magic:hover::before {
  width: 300px;
  height: 300px;
}

.btn-text, 
.btn-loading {
  position: relative;
  z-index: 1;
}

/* ================================
   EXTERNAL AUTHENTICATION
   ================================ */

.btn-outline-secondary.btn-lg {
  border: 2px solid #dee2e6;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-secondary.btn-lg:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary.btn-lg:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary.btn-lg img {
  flex-shrink: 0;
}
}

/* Enhanced Input Group Styles */
.input-group-lg .form-control {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff !important;
}

.input-group-lg .form-control::placeholder {
  color: rgba(240, 238, 232, 0.5);
}

.input-group-lg .input-group-text {
  border-radius: 12px 0 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  background: rgba(255, 255, 255, 0.02);
  color: #c9a96e;
  font-weight: 600;
  font-size: 1.2rem;
}

.input-group-lg .form-control:focus {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff !important;
}

.input-group-lg .form-control:focus + .input-group-text {
  border-color: rgba(201, 169, 110, 0.5);
}

/* ================================
   PROGRESS / LOADING STYLES
   ================================ */

/* Spinner Container */
.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

/* Animated Progress Message */
#progressMessage {
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Progress Bar Custom Styling */
.progress {
  background-color: rgba(102, 126, 234, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Result Card Animations */
#resultSection .card {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error Section Styling */
#errorSection .alert {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}




































/* ============================================================
   OwnYourFeed.ai — site.css
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0e0d0c;
    --bg2: #151411;
    --bg3: #1c1a17;
    --gold: #c9a96e;
    --gold-light: #e8d5aa;
    --cream: #f5f0e8;
    --muted: #6b6560;
    --border: rgba(201, 169, 110, 0.15);
    --border-soft: rgba(255, 255, 255, 0.06);
}

html, body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    scroll-behavior: smooth;
}

/* ============================================================
   NAV
   ============================================================ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(14, 13, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.logo-accent {
    color: var(--gold);
}

.logo-dim {
    color: var(--muted);
    font-size: 0.85em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.8rem;
        font-weight: 300;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--cream);
        }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: all 0.25s;
}

    .nav-cta:hover {
        background: var(--gold);
        color: var(--bg);
    }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
    }

.btn-ghost {
    background: transparent;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

    .btn-ghost:hover {
        color: var(--cream);
    }

    .btn-ghost svg {
        width: 18px;
        height: 18px;
    }

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 3.5rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 3rem 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

    .hero-badge::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--gold);
        border-radius: 50%;
        display: inline-block;
    }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 1.75rem;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.75rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ---- Hero Visual ---- */

.hero-visual {
    position: relative;
    height: 580px;
}

.phone-frame {
    position: absolute;
    width: 240px;
    height: 480px;
    background: var(--bg3);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6);
}

.phone-inner {
    padding: 1rem;
}

.phone-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.phone-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--bg);
}

.phone-handle {
    font-size: 0.7rem;
    color: var(--cream);
    font-weight: 400;
}

.phone-img-slot {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1e1a14 0%, #2a2117 50%, #1a1510 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.phone-img-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(201, 169, 110, 0.4);
}

.ai-tag {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 2px 7px;
    text-transform: uppercase;
}

.caption-block {
    padding: 0.5rem 0;
}

.caption-text {
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

    .caption-text em {
        color: var(--cream);
        font-style: normal;
    }

.hashtags {
    font-size: 0.62rem;
    color: rgba(201, 169, 110, 0.6);
}

.engagement-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.eng-item {
    font-size: 0.6rem;
    color: var(--muted);
}

    .eng-item strong {
        color: var(--cream);
        display: block;
        font-size: 0.7rem;
    }

/* secondary phones */

.phone-frame-2 {
    position: absolute;
    width: 180px;
    height: 340px;
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    overflow: hidden;
    top: 12%;
    right: 2%;
    opacity: 0.55;
    transform: rotate(4deg);
}

.phone-frame-3 {
    position: absolute;
    width: 160px;
    height: 300px;
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    bottom: 4%;
    left: 4%;
    opacity: 0.4;
    transform: rotate(-5deg);
}

.mini-img {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #17130d 0%, #241d12 100%);
}

.mini-img-tall {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #17130d 0%, #241d12 100%);
}

.mini-content {
    padding: 0.75rem;
}

.mini-line {
    height: 5px;
    background: var(--border-soft);
    border-radius: 2px;
    margin-bottom: 6px;
}

    .mini-line.short {
        width: 60%;
    }

/* floating cards */

.float-card {
    position: absolute;
    background: rgba(14, 13, 12, 0.9);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    top: 15%;
    left: -5%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.float-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.float-card-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
    font-weight: 300;
    line-height: 1;
}

    .float-card-val span {
        font-size: 1rem;
        color: var(--muted);
    }

.float-card-sub {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 2px;
}

.float-card-2 {
    position: absolute;
    background: rgba(14, 13, 12, 0.9);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    bottom: 16%;
    right: 0%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 160px;
}

.float-card-2-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.trend-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 4px;
}

.trend-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

    .trend-dot.muted {
        background: var(--muted);
    }

.trend-text {
    font-size: 0.62rem;
    color: var(--cream);
    flex-shrink: 0;
}

.trend-bar-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    flex: 1;
}

.trend-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 1px;
}

/* ============================================================
   DIVIDER / LOGOS ROW
   ============================================================ */

.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    margin: 2rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}

.divider-text {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.logos-row {
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logos-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.logo-pill {
    border: 1px solid var(--border-soft);
    padding: 0.45rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.06em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
    padding: 6rem 3rem;
    background: var(--bg2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.step-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative;
}

    .step-card.bordered {
        border-left: 1px solid var(--border-soft);
        border-right: 1px solid var(--border-soft);
    }

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.step-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.step-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

    .step-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ============================================================
   AUDIENCE
   ============================================================ */

.audience-section {
    padding: 6rem 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-soft);
}

.audience-card {
    background: var(--bg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

    .audience-card:hover {
        background: var(--bg3);
    }

.aud-tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.aud-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.aud-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

.aud-num {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-section {
    padding: 6rem 3rem;
    background: var(--bg2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft);
    margin-top: 3rem;
}

.price-card {
    background: var(--bg2);
    padding: 2.5rem 2rem;
}

    .price-card.featured {
        background: var(--bg3);
        border-top: 2px solid var(--gold);
    }

.price-tier {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.price-card.featured .price-tier {
    color: var(--gold);
}

.price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.3rem;
}

    .price-val sup {
        font-size: 1.2rem;
        vertical-align: super;
    }

.price-period {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.price-feature {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-soft);
    line-height: 1.5;
}

    .price-feature.active {
        color: var(--cream);
    }

        .price-feature.active::before {
            content: '— ';
            color: var(--gold);
        }

.price-btn {
    margin-top: 2rem;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

    .price-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.price-card.featured .price-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

    .price-card.featured .price-btn:hover {
        background: var(--gold-light);
    }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
    padding: 6rem 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border-soft);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.8rem;
    color: var(--cream);
    font-weight: 400;
}

.author-role {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.cta-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.cta-price-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 1rem;
}

.btn-primary-lg {
    font-size: 0.85rem;
    padding: 1rem 2.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 3rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.06em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

    .footer-links a {
        font-size: 0.72rem;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--cream);
        }

.footer-legal {
    font-size: 0.7rem;
    color: var(--muted);
}
