:root {
  --bg-page: #f1e3da;
  --bg-section: #f9f0ea;
  --bg-accent-soft: #f0ddd2;
  --bg-accent-strong: #d7aa90;
  --text-main: #3b2a26;
  --text-soft: #6a5148;
  --accent: #c26b4a;
  --accent-dark: #8b3f28;
  --border-soft: #e0c1ae;
  --radius-soft: 14px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  
  --aboutimg: url("/assets/img/com.lgs-solutions.about.workwithme.avif");  
  --contentimg: url("/assets/img/com.lgs-solutions.about.workwithme.avif");
}

.nav { background: linear-gradient(to bottom, var(--accent), var(--bg-accent-soft)); }

.nav-link-item > a { color: var(--text-main); }

.footer { background: linear-gradient(to top, var(--accent), var(--bg-accent-soft)); }
.footer-content { color: var(--text-main); }

body {
  background: var(--bg-page);
  font-family: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
}

.section {
  padding: 80px 20px;
}

.section-content {
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'OpenDyslexic', system-ui, sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  text-align: center;
  color: var(--accent-dark);
}

.section-subtitle {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: clamp(16px, 4vw, 20px);
  color: var(--text-soft);
}

.text-readable {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
}

.soft-panel {
  background: none;
  border-radius: var(--radius-soft);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* HERO */

.hero {
  padding: 120px 20px 80px;
  background: radial-gradient(circle at top left, #f3d3c1 0, #f1e3da 45%, #f9f0ea 100%);
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-main-title {
  font-family: 'OpenDyslexic', system-ui, sans-serif;
  font-size: clamp(32px, 6vw, 46px);
  margin-bottom: 1rem;
  color: var(--accent-dark);
}

.hero-subtitle {
  font-size: clamp(18px, 4vw, 22px);
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 0.8rem;
}

.hero-visual {
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* CROSSROADS / PATHS */

.solution-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.solution-hero img {
  width: clamp(220px, 60%, 480px);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.solution-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.path {
  flex: 1;
  min-width: 260px;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-soft);
  background: var(--bg-section);
  box-shadow: var(--shadow-soft);
}

.path-negative {
  border-left: 6px solid #b3472d;
  background: #f7e1d9;
}

.path-positive {
  border-left: 6px solid #7a9b3a;
  background: #f3f8e8;
}

.path h3 {
  font-size: 20px;
  margin-bottom: 0.8rem;
  text-align: center;
}

.path ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.path li {
  margin: 0.4rem 0;
  color: var(--text-soft);
}

/* “YOU DESERVE” BLOCK */

.solution-deserve {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-soft);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.solution-deserve h2 {
  font-size: clamp(22px, 4.5vw, 28px);
  margin-bottom: 1rem;
}

.solution-deserve p {
  font-size: 18px;
  line-height: 1.8;
}

/* DOUBTS */

.solution-doubts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.solution-doubts img {
  height: 120px;
  border-radius: 16px;
}

.solution-doubts p {
  font-size: 16px;
  color: var(--text-soft);
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-card {
  background: var(--bg-section);
  border-radius: var(--radius-soft);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 0.6rem;
}

/* LIST SECTIONS */

.section-list {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: var(--text-main);
}

.highlight-block {
  background: #f0ddd2;
  border-radius: var(--radius-soft);
  padding: 2rem 1.8rem;
  margin: 2.5rem 0;
}

/* FINAL CTA */

.cta-final {
  text-align: center;
  background: linear-gradient(135deg, #f3d3c1, #f1e3da);
  border-radius: 18px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
  margin-top: 3rem;
}

.cta-final h2 {
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}

/* TWO-COLUMN LAYOUT */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 820px) {
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
  }
}

.section-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-main);
}

.section-list li + li {
  margin-top: 0.4rem;
}

/* HIGHLIGHT BLOCKS */

.highlight-block {
  background: var(--bg-accent-soft);
  border-radius: var(--radius-soft);
  padding: 2rem 1.8rem;
  margin: 2.5rem 0;
  border: 1px solid rgba(224,138,92,0.25);
}

.story-signature {
  margin-top: 1.5rem;
  font-size: 14px;
  color: var(--text-muted);
}/* TWO-COLUMN LAYOUT */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.ebook-content {
  background-image: var(--contentimg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* FAQ */

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg-accent-strong);
  background:var(--border-soft);
}

.faq-question {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.faq-answer {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}


/* RESPONSIVE */
/*
@media (max-width: 820px) {
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
*/


@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .two-col { grid-template-columns: 1fr; }
}
