/* ===== Borcolo — styles.css ===== */

:root {
  --color-primary: #1F4E5F;
  --color-primary-dark: #163A47;
  --color-secondary: #2E2E38;
  --color-accent: #E8743B;
  --color-accent-dark: #CF5E29;
  --color-bg: #FFFFFF;
  --color-surface: #F5F3EF;
  --color-surface-2: #EDEAE3;
  --color-text: #23272A;
  --color-muted: #5C6469;
  --color-border: #E2DED6;
  --color-star: #E8A13B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(31, 78, 95, 0.08);
  --shadow-md: 0 6px 20px rgba(31, 78, 95, 0.10);
  --shadow-lg: 0 16px 40px rgba(31, 78, 95, 0.14);

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --container-narrow: 820px;
  --section-pad: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--color-secondary); margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.18rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 1000;
  background: var(--color-secondary); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; color: #fff; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--color-surface); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-subtitle { color: var(--color-muted); font-size: 1.06rem; margin: 0; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent-dark); margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 12px 22px; border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
  min-height: 44px; line-height: 1.2;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--color-primary); color: #fff; }
.btn-secondary:hover { background: var(--color-primary-dark); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--color-secondary); }
.brand-mark {
  display: inline-grid; place-items: center; width: 36px; height: 36px;
  background: var(--color-primary); color: #fff; font-family: var(--font-head);
  font-weight: 800; border-radius: 10px; font-size: 1.1rem;
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--color-secondary); }
.main-nav { display: flex; gap: 22px; margin-left: 18px; }
.main-nav a { color: var(--color-text); font-weight: 500; font-size: 0.96rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--color-primary); }
.header-cta { margin-left: auto; }
.nav-toggle {
  display: none; margin-left: auto; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-secondary); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; padding: 8px 20px 16px; border-top: 1px solid var(--color-border); }
.mobile-nav a { padding: 12px 0; color: var(--color-text); font-weight: 500; border-bottom: 1px solid var(--color-border); }
.mobile-nav.open { display: flex; }

/* ===== Hero ===== */
.hero { padding: clamp(40px, 6vw, 84px) 0; background: linear-gradient(160deg, var(--color-surface) 0%, #fff 70%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-subtitle { font-size: 1.12rem; color: var(--color-text); margin-bottom: 1rem; }
.hero-body { color: var(--color-muted); margin-bottom: 1.25rem; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 10px; }
.hero-bullets li { position: relative; padding-left: 30px; color: var(--color-text); }
.hero-bullets li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 18px; height: 18px;
  background: var(--color-primary); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }

/* ===== Benefits ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px;
  background: rgba(31,78,95,0.08); color: var(--color-primary); border-radius: 12px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.benefit-card p { color: var(--color-muted); margin: 0; font-size: 0.96rem; }

/* ===== Products ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  display: flex; flex-direction: column; background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card-media { display: block; background: var(--color-surface); aspect-ratio: 1 / 1; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card-media:hover img { transform: scale(1.04); }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.product-tag {
  align-self: flex-start; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-primary);
  background: rgba(31,78,95,0.08); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.product-card-title { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.35; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.stars { --rating: 0; --pct: calc(var(--rating) / 5 * 100%); display: inline-block; width: 88px; height: 16px; position: relative; }
.stars::before {
  content: "★★★★★"; position: absolute; inset: 0; font-size: 16px; letter-spacing: 2px;
  color: var(--color-border); line-height: 1;
}
.stars::after {
  content: "★★★★★"; position: absolute; inset: 0; font-size: 16px; letter-spacing: 2px;
  color: var(--color-star); line-height: 1; width: var(--pct); overflow: hidden; white-space: nowrap;
}
.rating-count { font-size: 0.84rem; color: var(--color-muted); }
.product-rating-new .rating-count {
  font-weight: 600; color: var(--color-accent-dark);
  background: rgba(232,116,59,0.1); padding: 3px 10px; border-radius: 999px;
}
.product-card-desc { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 12px; }
.product-card-points { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 7px; }
.product-card-points li { position: relative; padding-left: 20px; font-size: 0.88rem; color: var(--color-text); }
.product-card-points li::before { content: "✓"; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.product-cta { margin-top: auto; width: 100%; }
.products-note { text-align: center; color: var(--color-muted); font-size: 0.9rem; margin-top: 28px; }

/* ===== How it works ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; counter-reset: step; }
.step-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 28px 22px; box-shadow: var(--shadow-sm);
}
.step-number {
  display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px;
  background: var(--color-accent); color: #fff; font-family: var(--font-head); font-weight: 800;
  border-radius: 50%; font-size: 1.1rem;
}
.step-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step-card p { color: var(--color-muted); margin: 0; font-size: 0.94rem; }

/* ===== Features ===== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse .feature-media { order: 2; }
.feature-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.feature-text h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-text > p { color: var(--color-muted); }
.feature-points { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.feature-points li { position: relative; padding-left: 28px; color: var(--color-text); font-size: 0.95rem; }
.feature-points li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px;
  background: var(--color-primary); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ===== About brief / About page ===== */
.about-inner, .about-page-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.about-media img, .about-page-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.about-text h2 { margin-bottom: 16px; }
.about-text p, .about-page-copy p { color: var(--color-muted); }
.about-text .btn { margin-top: 8px; }
.about-page { padding: var(--section-pad) 0; }
.about-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.about-cta-inner p { color: var(--color-muted); margin-bottom: 24px; }

/* ===== Comparison table ===== */
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--color-bg); }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; vertical-align: top; }
.compare-table thead th { background: var(--color-secondary); color: #fff; font-family: var(--font-head); font-weight: 600; }
.compare-table tbody th { font-weight: 600; color: var(--color-secondary); background: var(--color-surface); }
.compare-table .col-brand { background: rgba(31,78,95,0.06); }
.compare-table thead .col-brand { background: var(--color-primary); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }

/* ===== Timeline / What you get ===== */
.timeline { list-style: none; padding: 0; margin: 0; max-width: 760px; margin: 0 auto; display: grid; gap: 4px; position: relative; }
.timeline-item { position: relative; padding: 0 0 28px 36px; border-left: 2px solid var(--color-border); }
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-mark {
  display: inline-block; position: relative; font-family: var(--font-head); font-weight: 700;
  color: var(--color-primary); margin-bottom: 6px;
}
.timeline-mark::before {
  content: ""; position: absolute; left: -45px; top: 4px; width: 16px; height: 16px;
  background: var(--color-accent); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline-item p { color: var(--color-muted); margin: 0; }

/* ===== Fears ===== */
.fears-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fear-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm);
}
.fear-card h3 { font-size: 1.06rem; margin-bottom: 10px; color: var(--color-secondary); }
.fear-card p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }
.fear-card-wide { grid-column: 1 / -1; }

/* ===== Mission / Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  display: flex; flex-direction: column; background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
}
.value-icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px;
  background: rgba(232,116,59,0.12); color: var(--color-accent-dark); border-radius: 12px;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }

/* ===== Who it's for ===== */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.persona-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.persona-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.persona-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.persona-card p { color: var(--color-muted); margin: 0; font-size: 0.94rem; }
.not-for {
  margin-top: 32px; background: var(--color-surface-2); border-radius: var(--radius-md);
  padding: 28px; border: 1px dashed var(--color-border);
}
.not-for h3 { font-size: 1.1rem; margin-bottom: 12px; }
.not-for ul { margin: 0; padding-left: 1.2rem; }
.not-for li { color: var(--color-muted); margin-bottom: 8px; }

/* ===== Use cases ===== */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usecase-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.usecase-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--color-primary); }
.usecase-card p { color: var(--color-muted); margin: 0; font-size: 0.93rem; }

/* ===== Expert ===== */
.expert-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start;
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
}
.expert-media { text-align: center; }
.expert-media img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; box-shadow: var(--shadow-sm); }
.expert-id { display: flex; flex-direction: column; gap: 4px; }
.expert-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--color-secondary); }
.expert-title { font-size: 0.86rem; color: var(--color-muted); }
.expert-quote {
  margin: 0 0 18px; padding-left: 20px; border-left: 4px solid var(--color-accent);
  font-size: 1.08rem; color: var(--color-text); font-style: normal;
}
.expert-tips { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 12px; }
.expert-tips li { position: relative; padding-left: 28px; color: var(--color-muted); font-size: 0.95rem; }
.expert-tips li::before { content: "→"; position: absolute; left: 0; color: var(--color-accent-dark); font-weight: 700; }
.expert-disclosure { font-size: 0.84rem; color: var(--color-muted); margin: 0; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 4px 20px; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 30px 16px 0; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--color-secondary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-primary); font-weight: 400; transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 0 16px; }
.faq-answer p { color: var(--color-muted); margin: 0; font-size: 0.96rem; }

/* ===== Newsletter ===== */
.newsletter { background: var(--color-primary); color: #fff; }
.newsletter-inner { text-align: center; }
.newsletter h2 { color: #fff; }
.newsletter .section-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 520px; margin: 0 auto; }
.newsletter-form .field { width: 100%; }
.newsletter-form input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-md); border: 0;
  font-family: var(--font-body); font-size: 1rem; min-height: 48px;
}
.newsletter-form .btn { width: 100%; }
.form-error { color: #FFD9C7; font-size: 0.9rem; margin: 0; min-height: 1.2em; }
.form-success { color: #DFF5E5; font-size: 0.95rem; margin: 0; }

/* ===== Page head (inner pages) ===== */
.page-head { background: var(--color-surface); padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); text-align: center; }
.page-head h1 { margin-bottom: 12px; }
.page-head-sub { color: var(--color-muted); font-size: 1.08rem; max-width: 680px; margin: 0 auto; }

/* ===== Contact ===== */
.contact { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap h2, .contact-side h2 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-form { display: grid; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--color-secondary); }
.form-field .req { color: var(--color-accent-dark); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text); background: #fff; min-height: 44px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--color-primary); outline-offset: 0; }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #C0392B; }
.field-error { color: #C0392B; font-size: 0.85rem; }
.form-status { font-size: 0.95rem; margin: 4px 0 0; }
.form-status.is-success { color: var(--color-primary); }
.form-status.is-error { color: #C0392B; }
.contact-side { background: var(--color-surface); border-radius: var(--radius-md); padding: 28px; }
.contact-points { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 16px; }
.contact-points li { display: flex; flex-direction: column; gap: 2px; }
.contact-point-label { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted); }
.contact-note p { color: var(--color-muted); font-size: 0.92rem; margin: 0; }

/* ===== Legal pages ===== */
.legal { padding: var(--section-pad) 0; }
.legal-inner { max-width: var(--container-narrow); margin: 0 auto; }
.legal-body h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--color-muted); }

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: var(--color-secondary); color: #fff; padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta[hidden] { display: none; }
.sticky-text { font-size: 0.95rem; }

/* ===== Footer ===== */
.site-footer { background: var(--color-secondary); color: rgba(255,255,255,0.78); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand, .footer-brand .brand-name { color: #fff; }
.footer-tagline { margin-top: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.75); padding: 5px 0; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px;
  font-size: 0.84rem; color: rgba(255,255,255,0.6);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.78); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .benefits-grid, .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature-row-reverse .feature-media { order: 0; }
  .about-inner, .about-page-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-media, .about-page-media { order: -1; }
  .fears-grid, .values-grid, .persona-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .expert-card { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .expert-quote { text-align: left; }
  .expert-tips { text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .benefits-grid, .products-grid, .steps-grid, .usecase-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .sticky-cta { flex-direction: column; gap: 8px; }
}
