/* ==============================================
   SELL PAGE STYLES (Page-Specific Only)
   ============================================== */

/* Page hero */
.page-hero { position: relative; background: var(--deepest-blue); color: white; padding: var(--space-xl) 0 var(--space-lg); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 30%, rgba(124,181,214,0.15) 0%, transparent 65%), radial-gradient(ellipse 80% 60% at 80% 70%, rgba(43,90,140,0.3) 0%, transparent 70%); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { font-family: var(--font-accent); font-style: italic; color: var(--light-blue); font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: white; line-height: 1.15; font-weight: 500; margin-bottom: var(--space-sm); max-width: 900px; }
.page-hero h1 em { color: var(--light-blue); font-style: italic; }
.page-hero-lede { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.88); max-width: 720px; }

/* Breadcrumb */
.breadcrumb { background: var(--cream); padding: 0.75rem 0; font-size: 0.8rem; color: var(--text-light); border-bottom: 1px solid var(--sand); }
.breadcrumb a { color: var(--dark-blue); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--deepest-blue); text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.5rem; color: var(--text-lighter); }

/* Section headers */
.eyebrow { font-family: var(--font-accent); font-style: italic; color: var(--green-accent-text); font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--deepest-blue); line-height: 1.2; font-weight: 500; margin-bottom: 0.85rem; }
.section-title em { color: var(--dark-blue); font-style: italic; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 680px; line-height: 1.7; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; padding: 0.9rem 1.8rem; border-radius: var(--radius); transition: all 0.3s ease; cursor: pointer; border: none; letter-spacing: 0.01em; }
.btn svg { width: 16px; height: 16px; stroke-width: 2; }
.btn-primary { background: var(--deepest-blue); color: white; }
.btn-primary:hover { background: var(--dark-blue); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,58,92,0.25); }
.btn-warm { background: white; color: var(--deepest-blue); border: 1px solid var(--lightest-blue); }
.btn-warm:hover { background: var(--ice-blue); transform: translateY(-1px); }
.btn-soft { background: var(--ice-blue); color: var(--deepest-blue); }
.btn-soft:hover { background: var(--lightest-blue); }

/* Valuation section — the big lead magnet */
.valuation-section {
  padding: var(--space-xl) 0;
  background: var(--warm-white);
  position: relative;
}
.valuation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}
.valuation-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--deepest-blue);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1rem;
}
.valuation-text h2 em { color: var(--dark-blue); font-style: italic; }
.valuation-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.valuation-text ul { list-style: none; margin: 1.5rem 0; }
.valuation-text li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.valuation-text li::before {
  content: '✓';
  color: var(--green-accent-text);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.valuation-form {
  background: var(--deepest-blue);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.valuation-form::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: url('../images/linda-lemay-icon-watermark.png') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.valuation-form-inner { position: relative; z-index: 1; }
.valuation-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.valuation-form-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.valuation-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.valuation-form input,
.valuation-form select,
.valuation-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
}
.valuation-form input:focus,
.valuation-form select:focus,
.valuation-form textarea:focus {
  outline: 2px solid var(--light-blue);
  outline-offset: 1px;
  border-color: var(--light-blue);
  background: rgba(255,255,255,0.07);
}
.valuation-form input::placeholder,
.valuation-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}
.valuation-form textarea {
  resize: vertical;
  min-height: 80px;
}
.valuation-form .btn {
  width: 100%;
  justify-content: center;
  background: white;
  color: var(--deepest-blue);
  font-weight: 700;
  padding: 1rem;
}
.valuation-form .btn:hover { background: var(--ice-blue); }
.valuation-form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Marketing approach */
.marketing-approach { padding: var(--space-xl) 0; background: var(--cream); }
.marketing-header { text-align: center; margin-bottom: var(--space-lg); }
.marketing-header .eyebrow { display: block; }
.marketing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.marketing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand);
  transition: all 0.3s;
}
.marketing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(27,58,92,0.08); border-color: var(--lightest-blue); }
.marketing-card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--ice-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.marketing-card-icon svg { width: 26px; height: 26px; stroke: var(--dark-blue); fill: none; stroke-width: 1.5; }
.marketing-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--deepest-blue); margin-bottom: 0.5rem; font-weight: 500; }
.marketing-card p { font-size: 0.95rem; color: var(--text); line-height: 1.65; }

/* Selling process */
.selling-process { padding: var(--space-xl) 0; background: white; }
.process-header { text-align: center; margin-bottom: var(--space-lg); }
.process-header .eyebrow { display: block; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--dark-blue);
  position: relative;
}
.process-step-num {
  width: 40px; height: 40px;
  background: var(--deepest-blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 0.75rem;
}
.process-step h3 { font-family: var(--font-display); font-size: 1rem; color: var(--deepest-blue); margin-bottom: 0.5rem; font-weight: 500; }
.process-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* Stats strip */
.stats-strip { background: var(--deepest-blue); color: white; padding: var(--space-lg) 0; position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(124,181,214,0.1) 0%, transparent 70%); }
.stats-strip .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item {}
.stat-value { font-family: var(--font-display); font-size: 3rem; color: white; font-weight: 600; line-height: 1; margin-bottom: 0.5rem; }
.stat-value em { color: var(--light-blue); font-style: italic; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.82); letter-spacing: 0.05em; }

/* Seller testimonials */
.testimonials-section { padding: var(--space-xl) 0; background: var(--warm-white); }
.testimonials-header { text-align: center; margin-bottom: var(--space-lg); }
.testimonials-header .eyebrow { display: block; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--lightest-blue);
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--deepest-blue);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  padding-top: 0.75rem;
  border-top: 1px solid var(--sand);
}
.testimonial-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* FAQ */
.faq-section { padding: var(--space-xl) 0; background: var(--cream); }
.faq-header { text-align: center; margin-bottom: var(--space-lg); }
.faq-header .eyebrow { display: block; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  border: 1px solid var(--sand);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deepest-blue);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--dark-blue);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:focus-visible { outline: 2px solid var(--light-blue); outline-offset: 2px; }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.75;
}

/* Seller resources */
.seller-resources { padding: var(--space-xl) 0; background: var(--warm-white); }
.seller-resources-header { text-align: center; margin-bottom: var(--space-lg); max-width: 720px; margin-left: auto; margin-right: auto; }
.seller-resources-header .eyebrow { display: block; }
.seller-resources-header p { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; margin-top: 1rem; }
.seller-resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 900px; margin: 0 auto; }
.resource-card-sell {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.resource-card-sell::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-accent-text);
}
.resource-card-sell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27,58,92,0.08);
  border-color: var(--lightest-blue);
}
.resource-card-sell .resource-type {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-accent-text);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.resource-card-sell h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deepest-blue);
  margin-bottom: 0.6rem;
  font-weight: 500;
  line-height: 1.25;
}
.resource-card-sell p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.resource-card-sell-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark-blue);
  font-weight: 700;
  align-self: flex-start;
}
.resource-card-sell:hover .resource-card-sell-cta { color: var(--deepest-blue); }

/* CTA */
.cta-section { padding: var(--space-xl) 0; background: var(--deepest-blue); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(124,181,214,0.15) 0%, transparent 70%); z-index: 0; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: white; font-weight: 500; line-height: 1.2; margin-bottom: 1rem; }
.cta-section h2 em { color: var(--light-blue); font-style: italic; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 2rem; }
.cta-section .btn-warm { border: none; background: white; }
.cta-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 960px) {
  .valuation-grid { grid-template-columns: 1fr; }
  .valuation-form-row { grid-template-columns: 1fr; }
  .marketing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .seller-resources-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .page-hero { padding: var(--space-lg) 0; }
  .process-steps { grid-template-columns: 1fr; }
}
