/* =====================================================
   Hearth -- custom.css  (Light Theme Redesign)
   All brand overrides. Base: tooplate-style.css
   Theme: Warm, clean, family-friendly light theme
   ===================================================== */

/* === CSS Variables === */
:root {
  --clr-primary:       #F97316;
  --clr-primary-dark:  #C2410C;
  --clr-primary-light: #FFEDD5;
  --clr-bg:            #FFFAF7;
  --clr-surface:       #FEF3EC;
  --clr-text:          #1C1917;
  --clr-text-2:        #78716C;
  --clr-text-3:        #A8A29E;
  --clr-border:        #FED7AA;
  --clr-green:         #4ADE80;
  --clr-dark:          #1C1917;
  --clr-white:         #FFFFFF;
}

/* === Reset & Base === */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1C1917;
  background-color: #FFFAF7;
  padding-top: 64px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: #1C1917;
}

p {
  color: #78716C;
  line-height: 1.7;
}

a { color: #F97316; }
a:hover { color: #C2410C; }

/* === Override dark tooplate-style global rules === */
.tm-section {
  background-color: #FFFAF7;
  min-height: auto;
  padding: 0;
}

.tm-page-content-width {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  z-index: 10000;
}

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

.site-logo {
  color: #F97316;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.site-logo:hover { color: #C2410C; text-decoration: none; }

.site-logo-tagline {
  color: #A8A29E;
  font-size: 0.7rem;
  font-weight: 400;
  display: block;
  margin-top: -2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: #1C1917;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: #F97316;
  background-color: #FFEDD5;
  text-decoration: none;
}

.site-nav .nav-cta {
  background-color: #F97316;
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 6px;
  margin-left: 8px;
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  background-color: #C2410C;
  color: #FFFFFF !important;
}

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1C1917;
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .nav-mobile-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    gap: 4px;
    z-index: 9999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 12px 16px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
}

/* === Hero Section (image background with overlay) === */
.hero-section {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 12, 0.55);
  z-index: 1;
}

.hero-section .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hero-section h1 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.hero-section p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Per-page hero backgrounds */
.hero-home    { min-height: 620px; background-image: url('../images/hero-bg.jpg'); }
.hero-about   { background-image: url('../images/about-hero.jpg'); }
.hero-team    { background-image: url('../images/team-hero.jpg'); }
.hero-product { background-image: url('../images/product-hero.jpg'); }
.hero-pricing { background-image: url('../images/pricing-hero.jpg'); }
.hero-contact { background-image: url('../images/contact-hero.jpg'); }
.hero-blog    { background-image: url('../images/blog-hero.jpg'); }
.hero-legal   { background-image: url('../images/legal-bg.jpg'); }

/* Hero stat strip */
.hero-stat-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-stat-item {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
}

.hero-stat-item i {
  color: #F97316;
  font-size: 13px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.45);
  color: #FFEDD5;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* === CTA Buttons === */
.btn-orange {
  display: inline-block;
  background-color: #F97316;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  margin: 4px;
}
.btn-orange:hover {
  background-color: #C2410C;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  margin: 4px;
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-outline-orange {
  display: inline-block;
  background-color: transparent;
  color: #F97316;
  border: 2px solid #F97316;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  margin: 4px;
}
.btn-outline-orange:hover {
  background-color: #F97316;
  color: #FFFFFF;
  text-decoration: none;
}

/* Form submit: dark bg, hover orange */
.btn-submit {
  display: block;
  width: 100%;
  background-color: #1C1917;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover {
  background-color: #F97316;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* === Section wrapper === */
.section-light  { background: #FFFAF7; padding: 72px 0; color: #1C1917; }
.section-cream  { background: #FEF3EC; padding: 72px 0; color: #1C1917; }
.section-white  { background: #FFFFFF; padding: 72px 0; color: #1C1917; }
.section-dark   { background: #1C1917; padding: 72px 0; color: #FFFFFF; }

.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: #1C1917; }
.section-light p { color: #78716C; }
.section-cream h1, .section-cream h2, .section-cream h3, .section-cream h4 { color: #1C1917; }
.section-cream p { color: #78716C; }
.section-white h1, .section-white h2, .section-white h3, .section-white h4 { color: #1C1917; }
.section-white p { color: #78716C; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #FFFFFF; }
.section-dark p { color: rgba(255,255,255,0.75); }

/* Section heading elements */
.section-label {
  display: inline-block;
  color: #F97316;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1C1917;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #78716C;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* === Feature Cards === */
.feature-card {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.feature-card h3 { font-size: 18px; font-weight: 600; color: #1C1917; margin-bottom: 10px; }
.feature-card p  { font-size: 15px; color: #78716C; line-height: 1.65; flex-grow: 1; }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #FFEDD5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #F97316;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* === How It Works Steps === */
.step-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #FED7AA;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 56px;
  height: 56px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step-card h3 { font-size: 18px; font-weight: 600; color: #1C1917; margin-bottom: 10px; }
.step-card p  { font-size: 15px; color: #78716C; line-height: 1.65; flex-grow: 1; }

/* === Stats Strip === */
.stats-strip {
  background: #FFEDD5;
  border-top: 1px solid #FED7AA;
  border-bottom: 1px solid #FED7AA;
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #F97316;
  line-height: 1;
}
.stat-label { font-size: 14px; color: #78716C; margin-top: 6px; font-weight: 500; }

.press-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.press-badge {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #78716C;
}

/* === Blog Cards === */
.blog-card {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-tag {
  display: inline-block;
  background: #FFEDD5;
  color: #F97316;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-title {
  color: #1C1917;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  min-height: 48px;
  overflow: hidden;
}
.blog-card-title:hover { color: #F97316; text-decoration: none; }
.blog-card-excerpt {
  color: #78716C;
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  gap: 16px;
  color: #A8A29E;
  font-size: 13px;
  margin-top: auto;
}
.blog-card-meta i { color: #F97316; margin-right: 4px; }

/* Blog CSS grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .blog-grid { grid-template-columns: 1fr; } }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, #1C1917 0%, #2d2620 100%);
  padding: 72px 0;
  text-align: center;
  color: #FFFFFF;
}
.cta-banner h2 { color: #FFFFFF; font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === Alternating feature rows === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid #FED7AA;
}
.feature-row:last-of-type { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.feature-row-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
.feature-row-text h3 { font-size: 26px; font-weight: 700; color: #1C1917; margin-bottom: 16px; }
.feature-row-text p  { font-size: 16px; color: #78716C; line-height: 1.7; margin-bottom: 16px; }
@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
}

/* === Specs Grid === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-item {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 10px;
  padding: 20px;
}
.spec-label { color: #A8A29E; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; font-weight: 500; }
.spec-value { color: #1C1917; font-size: 15px; font-weight: 600; }
@media (max-width: 768px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specs-grid { grid-template-columns: 1fr; } }

/* === Pricing Cards === */
.pricing-card {
  background: #FFFFFF;
  border: 2px solid #FED7AA;
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.pricing-card.featured { border-color: #F97316; box-shadow: 0 4px 32px rgba(249,115,22,0.18); }
.pricing-card h3 { font-size: 22px; font-weight: 700; color: #1C1917; margin-bottom: 8px; }
.pricing-card p  { color: #78716C; }
.pricing-badge {
  display: inline-block;
  background: #F97316;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-amount { font-size: 44px; font-weight: 800; color: #1C1917; line-height: 1; margin-bottom: 4px; }
.price-sub    { font-size: 14px; color: #A8A29E; margin-bottom: 28px; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}
.pricing-card ul li {
  color: #1C1917;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #FEF3EC;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card ul li i { color: #4ADE80; margin-top: 2px; flex-shrink: 0; }

/* === FAQ Accordion === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #FED7AA; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1C1917;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}
.faq-question::after { content: '+'; font-size: 22px; color: #F97316; flex-shrink: 0; transition: transform 0.25s ease; font-weight: 400; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; color: #78716C; font-size: 15px; line-height: 1.7; margin: 0; }

/* === CEO Featured Card (text-only) === */
.ceo-card {
  background: #FFFFFF;
  border: 2px solid #FED7AA;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 2px 24px rgba(249,115,22,0.08);
}
.ceo-card h2 { font-size: 26px; font-weight: 700; color: #1C1917; margin-bottom: 4px; }
.ceo-card .ceo-role { color: #F97316; font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.ceo-card p { color: #78716C; font-size: 16px; line-height: 1.7; margin-bottom: 0; }
.ceo-card .ceo-social { margin-top: 20px; }
.ceo-card .ceo-social a { color: #A8A29E; font-size: 18px; margin-right: 12px; text-decoration: none; transition: color 0.2s; }
.ceo-card .ceo-social a:hover { color: #F97316; }

/* === Team Cards === */
.team-card {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.team-avatar-zone { height: 100px; width: 100px; margin-bottom: 16px; flex-shrink: 0; }
.team-avatar-zone img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #FFEDD5;
}
.team-name { font-size: 16px; font-weight: 700; color: #1C1917; margin-bottom: 4px; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.team-role { font-size: 13px; color: #F97316; font-weight: 600; margin-bottom: 12px; min-height: 20px; }
.team-bio  { font-size: 14px; color: #78716C; line-height: 1.6; flex-grow: 1; }
.team-social { margin-top: auto; padding-top: 16px; }
.team-social a { color: #A8A29E; font-size: 16px; margin: 0 6px; text-decoration: none; transition: color 0.2s; }
.team-social a:hover { color: #F97316; }

/* === About timeline === */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 2px; background: #FED7AA; }
.timeline-item { position: relative; margin-bottom: 28px; padding-bottom: 4px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: #F97316; border: 2px solid #FFFFFF; box-shadow: 0 0 0 3px #FED7AA; }
.timeline-year   { font-size: 13px; font-weight: 700; color: #F97316; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-desc   { font-size: 15px; color: #1C1917; font-weight: 600; margin-bottom: 4px; }
.timeline-detail { font-size: 14px; color: #78716C; }

/* === Values cards === */
.values-card {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.values-card h3 { font-size: 18px; font-weight: 600; color: #1C1917; margin-bottom: 10px; }
.values-card p  { font-size: 15px; color: #78716C; line-height: 1.65; flex-grow: 1; }

/* === Contact Form === */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid #FED7AA;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-form-wrap label { font-size: 14px; font-weight: 600; color: #1C1917; margin-bottom: 6px; display: block; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  background: #FFFAF7;
  border: 1px solid #FED7AA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1C1917;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.contact-form-wrap textarea { height: 140px; resize: vertical; }

/* Contact info panel */
.contact-info-wrap { padding: 16px 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #FFEDD5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F97316;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; font-weight: 600; color: #1C1917; margin-bottom: 4px; }
.contact-info-item p  { font-size: 14px; color: #78716C; margin-bottom: 0; line-height: 1.5; }

/* === Footer === */
.site-footer { background: #1C1917; padding: 64px 0 32px; color: #FFFFFF; }
.footer-brand .site-logo { color: #F97316; font-size: 1.3rem; font-weight: 800; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-social a { color: rgba(255,255,255,0.5); font-size: 16px; margin-right: 12px; text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: #F97316; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #F97316; text-decoration: none; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.10); margin: 40px 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.40); font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.40); font-size: 13px; text-decoration: none; margin-left: 16px; transition: color 0.2s; }
.footer-bottom a:hover { color: #F97316; }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1C1917;
  border-top: 2px solid rgba(249,115,22,0.4);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner p { margin: 0; color: rgba(255,255,255,0.80); font-size: 14px; }
.cookie-banner a { color: #F97316; }
.cookie-btn-accept {
  background-color: #F97316;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.cookie-btn-accept:hover { background-color: #C2410C; }

/* === Feature pill === */
.feature-pill {
  display: inline-block;
  background: #FFEDD5;
  border: 1px solid #FED7AA;
  color: #C2410C;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 4px;
}

/* === Product overview image === */
.product-hero-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.product-hero-img img { width: 100%; height: auto; display: block; }

/* === Legal content === */
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-size: 22px; color: #1C1917; margin-top: 40px; margin-bottom: 12px; }
.legal-content h3 { font-size: 18px; color: #1C1917; margin-top: 28px; margin-bottom: 8px; }
.legal-content p  { color: #78716C; font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { color: #78716C; font-size: 15px; line-height: 1.75; margin-bottom: 16px; padding-left: 24px; }
.legal-content a  { color: #F97316; }

/* === Article pages === */
.article-container { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }
.article-container p  { color: #444; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-container h2 { color: #1C1917; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-container h3 { color: #333; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-container ul, .article-container ol { color: #444; margin-bottom: 20px; padding-left: 24px; }
.article-container li { margin-bottom: 8px; line-height: 1.7; }
.article-container img { max-width: 100%; border-radius: 8px; margin-bottom: 20px; }

/* === Utility === */
.text-orange { color: #F97316; }
.bg-orange { background-color: #F97316; }
.bg-light-orange { background-color: #FFEDD5; }

/* === Responsive === */
@media (max-width: 992px) {
  .section-title { font-size: 30px; }
  .hero-section h1 { font-size: 38px; }
  .cta-banner h2 { font-size: 28px; }
}
@media (max-width: 768px) {
  .section-light, .section-cream, .section-white, .section-dark, .cta-banner { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .hero-section h1 { font-size: 30px; }
  .hero-section { min-height: 400px; padding: 64px 20px; }
  .stat-number { font-size: 32px; }
  .ceo-card { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 8px; margin-right: 8px; }
  .pricing-card { margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .hero-section h1 { font-size: 26px; }
  .btn-orange, .btn-ghost, .btn-outline-orange { width: 100%; max-width: 280px; text-align: center; }
  .hero-stat-strip { flex-direction: column; gap: 10px; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PRODUCT PAGE -- Light Theme Redesign (prod-*)
   All classes prefixed prod-
   No full-bleed bg images. Contained images only.
   ===================================================== */

/* === HERO === */
.prod-hero {
  background-color: #FFFAF7;
  padding: 80px 0 60px;
}
.prod-hero-text { padding-right: 2rem; }
.prod-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F97316;
  margin-bottom: 16px;
}
.prod-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.prod-hero-subtitle {
  font-size: 18px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.prod-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-hero-visual { display: flex; align-items: center; justify-content: center; }
.prod-hero-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
  background: #F3E8D8;
  line-height: 0;
}
.prod-hero-img-frame img {
  width: 100%; height: auto; display: block; border-radius: 16px;
}

/* === OUTLINE BUTTON dark bg === */
.prod-btn-outline-dark {
  background-color: transparent;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
  border-radius: 4px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.prod-btn-outline-dark:hover {
  background-color: #1a1a2e; color: #FFFFFF; text-decoration: none;
}

/* === SECTION SCAFFOLDING === */
.prod-section { padding: 80px 0; }
.prod-section-white { background-color: #FFFFFF; }
.prod-section-cream { background-color: #FFFAF7; }
.prod-section-header { margin-bottom: 56px; }
.prod-section-title {
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  line-height: 1.25;
  margin-bottom: 12px;
}
.prod-section-lead {
  font-size: 17px;
  color: #555555;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.prod-section-body { font-size: 16px; color: #444444; line-height: 1.75; margin-bottom: 16px; }
.prod-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F97316;
  margin-bottom: 12px;
}

/* === CONTAINED IMAGE FRAME === */
.prod-img-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  background: #F3E8D8;
  line-height: 0;
}
.prod-img-frame img {
  width: 100%; height: auto; display: block; border-radius: 12px;
  transition: transform 0.4s ease;
}
.prod-img-frame:hover img { transform: scale(1.02); }

/* === PILL TAGS === */
.prod-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.prod-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFEDD5;
  border: 1px solid #FED7AA;
  color: #C2410C;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.prod-pill i { font-size: 11px; }

/* === ALTERNATING FEATURE ROWS === */
.prod-feature-row { margin-bottom: 72px; }
.prod-feature-row:last-child { margin-bottom: 0; }
.prod-feature-text { padding-left: 1.5rem; }
.prod-feature-row-reverse .prod-feature-text { padding-left: 0; padding-right: 1.5rem; }
.prod-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #FFEDD5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #F97316;
  margin-bottom: 20px;
}
.prod-feature-title {
  font-size: 24px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; line-height: 1.3;
}
.prod-check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.prod-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #444444; font-size: 15px; padding: 6px 0; line-height: 1.5;
  border-bottom: 1px solid #F3E8D8;
}
.prod-check-list li:last-child { border-bottom: none; }
.prod-check-list li i { color: #F97316; font-size: 14px; margin-top: 3px; flex-shrink: 0; }

/* === FEATURE CARDS === */
.prod-card {
  background: #FFFFFF;
  border: 1px solid #F3E8D8;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.prod-card:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.10);
  transform: translateY(-4px);
}
.prod-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background-color: #FFEDD5;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #F97316; margin-bottom: 18px;
}
.prod-card-title { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.prod-card-desc { font-size: 15px; color: #555555; line-height: 1.65; margin-bottom: 0; }

/* === SPECS TABLE === */
.prod-specs-table {
  background: #FFFFFF; border: 1px solid #F3E8D8; border-radius: 12px; overflow: hidden;
}
.prod-specs-group { border-bottom: 2px solid #FFEDD5; }
.prod-specs-group:last-child { border-bottom: none; }
.prod-specs-group-label {
  background-color: #FFF7F0;
  padding: 12px 24px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #C2410C; border-bottom: 1px solid #FED7AA;
}
.prod-spec-row {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 24px; border-bottom: 1px solid #F9F0E8;
}
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-key { font-size: 14px; font-weight: 600; color: #555555; min-width: 180px; flex-shrink: 0; }
.prod-spec-val { font-size: 15px; color: #1a1a2e; line-height: 1.5; }

/* === CTA BANNER === */
.prod-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
  padding: 72px 0;
}
.prod-cta-inner { max-width: 640px; margin: 0 auto; }
.prod-cta-title { font-size: 34px; font-weight: 700; color: #FFFFFF; margin-bottom: 16px; }
.prod-cta-body { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.prod-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.prod-btn-cta-white {
  background-color: #FFFFFF; color: #1a1a2e; border: 2px solid #FFFFFF;
  border-radius: 4px; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 700;
  display: inline-block; text-decoration: none; transition: all 0.3s ease;
}
.prod-btn-cta-white:hover {
  background-color: #F97316; border-color: #F97316; color: #FFFFFF; text-decoration: none;
}
.prod-btn-cta-outline {
  background-color: transparent; color: #FFFFFF; border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
  display: inline-block; text-decoration: none; transition: all 0.3s ease;
}
.prod-btn-cta-outline:hover {
  border-color: #FFFFFF; background-color: rgba(255,255,255,0.1); color: #FFFFFF; text-decoration: none;
}

/* === RESPONSIVE: PRODUCT PAGE === */
@media (max-width: 991px) {
  .prod-hero-title { font-size: 38px; }
  .prod-section-title { font-size: 28px !important; }
  .prod-cta-title { font-size: 28px; }
  .prod-hero { padding: 60px 0 40px; }
  .prod-hero-text { padding-right: 0; margin-bottom: 40px; }
  .prod-feature-text { padding-left: 0 !important; padding-right: 0 !important; }
  .prod-feature-row { margin-bottom: 56px; }
  .prod-spec-key { min-width: 140px; }
}
@media (max-width: 767px) {
  .prod-hero-title { font-size: 30px; }
  .prod-hero-subtitle { font-size: 16px; }
  .prod-hero-ctas { flex-direction: column; }
  .prod-hero-ctas .btn { width: 100%; text-align: center; }
  .prod-section { padding: 56px 0; }
  .prod-section-header { margin-bottom: 36px; }
  .prod-feature-row { margin-bottom: 48px; }
  .prod-spec-row { flex-direction: column; gap: 4px; }
  .prod-spec-key { min-width: unset; }
  .prod-cta { padding: 56px 0; }
  .prod-cta-btns { flex-direction: column; align-items: center; }
  .prod-btn-cta-white,
  .prod-btn-cta-outline { width: 100%; max-width: 300px; text-align: center; }
  .prod-btn-outline-dark { width: 100%; text-align: center; }
}
