/* ============================================
   ADMITIFYAI — Dark warm theme, different layout
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #0f0e0c;
  --bg-card: #1a1916;
  --bg-elevated: #242220;
  --text: #f5f3ef;
  --text-muted: #a8a29e;
  --accent: #ea580c;
  --accent-soft: rgba(234, 88, 12, 0.15);
  --accent-hover: #f97316;
  --success: #22c55e;
  --border: #2d2a26;
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

/* ——— Header: top accent bar, compact nav, outline CTA ——— */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 2rem;
}
.logo {
  flex-shrink: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}
.logo-link:hover {
  color: var(--accent);
}
.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.logo-link:hover .logo-icon {
  color: var(--accent-hover);
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}
.header .btn-primary {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .nav { gap: 0; }
  .nav-link { padding: 0.4rem 0.5rem; font-size: 0.8rem; }
}

/* ——— Hero: split layout (text left, CTA right) ——— */
.hero {
  padding: 5rem 0;
  min-height: 70vh;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  padding-right: 2rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 480px;
}
.hero-buttons {
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.stars {
  display: flex;
  gap: 2px;
}
.star-icon {
  width: 18px;
  height: 18px;
}
.star-icon path {
  fill: var(--accent);
}
.rating-text {
  font-weight: 700;
  color: var(--text);
  margin-left: 0.25rem;
}
.hero-stats p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-visual .btn {
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    min-height: 200px;
  }
}

/* ——— Section titles ——— */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}
.section-subtitle:last-of-type {
  margin-bottom: 2rem;
}

/* ——— Features: bento-style grid ——— */
.features-main {
  padding: 5rem 0;
  background: var(--bg-card);
}
.features-main .section-title {
  text-align: center;
}
.features-main .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.tabs-container {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.tabs-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0;
  position: sticky;
  top: 6rem;
}
.tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-family: inherit;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}
.tab-button:hover,
.tab-button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tabs-content {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
@media (max-width: 700px) {
  .tabs-container {
    grid-template-columns: 1fr;
  }
  .tabs-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: static;
  }
  .tab-button {
    width: auto;
  }
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  width: 100%;
}
.tab-image {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
}
.cta-center {
  text-align: center;
  margin: 2.5rem 0 0;
}

/* ——— How it works: vertical timeline (number + line + content) ——— */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg);
}
.how-it-works .section-title {
  text-align: center;
}
.company-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  opacity: 0.7;
}
.company-logo {
  height: 24px;
  width: auto;
  filter: grayscale(1) brightness(1.2);
}
.how-it-works .section-subtitle {
  text-align: center;
}
.steps {
  counter-reset: step-num;
  max-width: 680px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 4rem;
}
.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
  border-radius: 1px;
}
.step {
  counter-increment: step-num;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border: none;
  background: transparent;
  text-align: left;
}
.step::before {
  content: counter(step-num);
  position: absolute;
  left: -4rem;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.step-content {
  flex: 1;
  padding: 0;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  display: flex;
}
.step-icon-wrapper {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon {
  color: var(--accent);
}
.step-content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.step-image {
  display: none;
}
@media (max-width: 600px) {
  .steps {
    padding-left: 3.5rem;
  }
  .steps::before {
    left: 15px;
  }
  .step::before {
    left: -3.5rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ——— Before/After: left = list style, right = highlighted cards + VS divider ——— */
.before-after {
  padding: 5rem 0;
  background: var(--bg-card);
}
.before-after .section-title {
  text-align: center;
}
.before-after .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  align-items: start;
}
.comparison-column {
  background: transparent;
  border: none;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
}
.comparison-column:first-child {
  background: var(--bg);
  border: 1px dashed var(--border);
  opacity: 0.9;
}
.comparison-column:last-child {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid var(--accent-soft);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
}
.comparison-column h3 {
  font-size: 0.7rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.1em;
}
.comparison-column:first-child h3 {
  color: var(--text-muted);
}
.comparison-column:last-child h3 {
  color: var(--accent);
}
.comparison-item {
  margin-bottom: 1rem;
  padding: 0;
}
.comparison-column:last-child .comparison-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.comparison-column:last-child .comparison-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.comparison-item h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.comparison-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
@media (max-width: 600px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}

/* ——— Stats: single horizontal strip with dividers ——— */
.stats {
  padding: 4rem 0;
  background: var(--bg);
}
.stats .section-title {
  text-align: center;
}
.stats .section-subtitle {
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 2rem 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.stat-card {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  border-left: none;
}
.stat-card:last-child {
  border-right: none;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}
@media (max-width: 520px) {
  .stats-grid {
    flex-direction: column;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}

/* ——— Testimonials: single card, centered ——— */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-card);
}
.testimonials .section-title {
  text-align: center;
}
.trustpilot-badge {
  text-align: center;
  margin-bottom: 1.5rem;
}
.trustpilot-img {
  height: 28px;
  width: auto;
  margin: 0 auto;
  opacity: 0.8;
}
.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 1rem;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.testimonials-track {
  flex: 1;
  overflow: hidden;
}
.testimonials-slide {
  display: none;
}
.testimonials-slide.active {
  display: block;
}
.testimonial-card {
  background: var(--bg);
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 1.25rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.testimonial-text::before {
  content: none;
}
.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.testimonial-author strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ——— More tools: even 4-card grid ——— */
.more-tools {
  padding: 5rem 0;
  background: var(--bg);
}
.more-tools .section-title {
  text-align: center;
}
.more-tools .section-subtitle {
  text-align: center;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 auto;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.tool-image {
  border-radius: 8px;
  margin-bottom: 1rem;
  height: 100px;
  object-fit: cover;
  width: 100%;
  background: var(--bg);
}
.tool-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}
.tool-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
}
.tool-link {
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Personalize: alternating blocks ——— */
.personalize {
  padding: 4rem 0;
  background: var(--bg);
}
.personalize-alt {
  background: var(--bg-card);
}
.personalize-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.personalize-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.personalize-icon {
  flex-shrink: 0;
}
.personalize-icon svg circle {
  fill: var(--accent-soft);
}
.personalize-icon svg path {
  fill: var(--accent);
}
.personalize-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.personalize-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.personalize-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .personalize-content {
    grid-template-columns: 1fr;
  }
  .personalize-image {
    order: -1;
  }
}

/* ——— Pricing: underline tabs, strip cards, left-accent featured ——— */
.pricing {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing .section-title {
  text-align: center;
}
.pricing .section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.pricing-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.pricing-tab:hover {
  color: var(--text);
}
.pricing-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.pricing-tab svg {
  fill: currentColor;
  color: inherit;
}
.pricing-tab-content {
  display: none;
}
.pricing-tab-content.active {
  display: block;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-lifetime {
  max-width: 380px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 0;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: var(--text-muted);
}
.pricing-card.featured {
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pricing-card.featured:hover {
  border-left-color: var(--accent-hover);
}
.pricing-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.5rem 1rem;
  background: rgba(234, 88, 12, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.pricing-card:not(.featured) .pricing-badge {
  background: var(--bg-elevated);
  color: var(--text-muted);
}
.pricing-price {
  padding: 1rem 1.25rem 0.75rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.pricing-price .price {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price .period {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 0.35rem;
  font-size: 0.85rem;
}
.discount {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}
.pricing-features {
  list-style: none;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
}
.pricing-features li {
  margin-bottom: 0.35rem;
  padding-left: 0;
}
.pricing-card .btn {
  margin: 0 1.25rem 1.25rem;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-card.featured .btn {
  background: var(--accent);
  color: #fff;
  border: none;
}
.pricing-card:not(.featured) .btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.pricing-card:not(.featured) .btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-tabs {
    gap: 1rem;
  }
}

/* ——— FAQ: compact list ——— */
.faq {
  padding: 5rem 0;
  background: var(--bg);
}
.faq .section-title {
  text-align: center;
}
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 0;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-left: 3px solid var(--border);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover {
  border-left-color: var(--accent);
  background: rgba(234, 88, 12, 0.04);
}
.faq-question {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}
.faq-answer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ——— Final CTA: dark block ——— */
.final-cta {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.final-cta .section-title {
  text-align: center;
}
.final-cta .section-subtitle {
  text-align: center;
}
.cta-form-container {
  max-width: 400px;
  margin: 0 auto;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
.form-input::placeholder {
  color: var(--text-muted);
}
.form-select option {
  background: var(--bg-card);
  color: var(--text);
}
.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ——— Footer: accent strip, single-row sections, dividers ——— */
.footer {
  background: var(--bg-elevated);
  color: var(--text-muted);
  padding: 0 0 1.5rem;
  border-top: 3px solid var(--accent);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
  padding: 2.5rem 0 2rem;
  margin-bottom: 0;
}
.footer-section {
  flex: 1 1 140px;
  min-width: 0;
}
.footer-section:first-child {
  flex: 1 1 200px;
}
.footer-section h3,
.footer-section h4 {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-section p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 0.35rem;
}
.footer-section a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-section a:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--text-muted);
}
.footer-bottom {
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ========== About page ========== */
.about-page {
  padding-bottom: 0;
}
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 640px;
}
.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 0;
  max-width: 560px;
  line-height: 1.6;
}
.about-section {
  padding: 4rem 0;
  background: var(--bg);
}
.about-section-alt {
  background: var(--bg-card);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid-reverse .about-content {
  order: 1;
}
.about-grid-reverse .about-image {
  order: 0;
}
.about-content {
  min-width: 0;
}
.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.about-text {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
  font-size: 1.05rem;
}
.about-text:last-child {
  margin-bottom: 0;
}
.about-image {
  min-width: 0;
}
.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  max-height: 320px;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.about-card:hover {
  border-color: var(--accent-soft);
}
.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.about-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.about-cta {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-cta .section-title {
  margin-bottom: 0.5rem;
}
.about-cta .section-subtitle {
  margin-bottom: 1.5rem;
}

/* ——— Contact page ——— */
.contact-page {
  padding-bottom: 4rem;
}
.contact-section {
  padding: 2rem 0 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-form-wrap,
.contact-info-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: -0.35rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .form-row:first-of-type {
  grid-template-columns: 1fr 1fr;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.contact-form .btn {
  margin-top: 0.5rem;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-list li:last-child {
  margin-bottom: 0;
}
.contact-info-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent);
}
.contact-info-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-list a:hover {
  color: var(--accent);
}

/* ——— Legal pages (Privacy, Terms) ——— */
.legal-page {
  padding-bottom: 4rem;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content {
  padding: 2rem 0 4rem;
}
.legal-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 2.5rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem;
  font-size: 0.98rem;
}
.legal-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-contact {
  list-style: none;
  padding-left: 0;
}
.legal-contact li {
  margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .about-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid-reverse .about-content,
  .about-grid-reverse .about-image {
    order: unset;
  }
  .about-image {
    order: -1;
  }
  .about-img {
    max-height: 240px;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}
