/* ============================================================
   Global CSS – Lykos SEO
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-bg:           #0a0a0a;
  --color-surface:      #111111;
  --color-primary:      #24B42B;
  --color-primary-hover:#1ea325;
  --color-text:         #f0f0f0;
  --color-text-muted:   #8a8a84;
  --color-text-dark:    #4a4a4a;
  --color-border:       #e8e8e8;
  --color-border-dark:  #222222;
  --color-white:        #ffffff;

  --font-heading: 'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 0.875rem;
  --text-lg:   1rem;
  --text-xl:   1.125rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;

  --spacing-section: 6rem;
  --container-max:   1400px;
  --container-px:    2rem;

  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        12px;
  --shadow-card:      0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-card-hover:0 4px 24px rgba(0,0,0,.12);

  --transition:      0.15s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.3s  cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family:            var(--font-body);
  font-size:              var(--text-base);
  line-height:            1.6;
  color:                  var(--color-text);
  background-color:       var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; font-size: inherit; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: 5rem; }

.section--dark     { background-color: var(--color-bg);      color: var(--color-text); }
.section--surface  { background-color: var(--color-surface);  color: var(--color-text); }
.section--contrast { background-color: #111111;               color: var(--color-text); }

/*
 * Light sections re-map the surface/border/text tokens so every component
 * inside (cards, lists, borders) flips to the light theme automatically,
 * matching the Lovable reference rhythm (dark hero, light content sections).
 */
.section--light,
.section--muted {
  color: #14171a;
  --color-surface:     #ffffff;
  --color-border-dark: var(--color-border);
  --color-text:        #14171a;
  --color-text-muted:  #5b6168;
}
.section--light { background-color: var(--color-white); }
.section--muted { background-color: #f5f6f7; }

.site-main { /* opened by header.php, closed by footer.php */ }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-primary);
  margin-bottom: .5rem;
}

.section-intro { text-align: center; margin-bottom: 3rem; }
.section-intro__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.section-intro h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-top: .5rem;
  margin-bottom: 1rem;
}
.section-intro p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 600px; margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.button {
  display:         inline-flex;
  align-items:     center;
  gap:             .5rem;
  padding:         .5rem 1rem;
  height:          40px;
  border-radius:   var(--radius-md);
  font-size:       var(--text-sm);
  font-weight:     500;
  border:          1px solid transparent;
  cursor:          pointer;
  white-space:     nowrap;
  transition:      all var(--transition);
  text-decoration: none;
}

.button--primary {
  background-color: var(--color-primary);
  color:            var(--color-white);
  border-color:     var(--color-primary);
}
.button--primary:hover {
  background-color: var(--color-primary-hover);
  border-color:     var(--color-primary-hover);
  color:            var(--color-white);
}

.button--outline {
  background-color: transparent;
  color:            var(--color-text);
  border-color:     var(--color-border-dark);
}
.button--outline:hover { background-color: rgba(255,255,255,.05); }

.button--outline-light {
  background-color: transparent;
  color:            var(--color-text-dark);
  border-color:     var(--color-border);
}
.button--outline-light:hover { background-color: rgba(0,0,0,.04); }

.button--lg { height: 48px; padding: .75rem 1.5rem; font-size: var(--text-base); }

.text-link {
  font-size:   var(--text-sm);
  font-weight: 500;
  color:       var(--color-text-muted);
  transition:  color var(--transition);
}
.text-link:hover { color: var(--color-primary); }

/* ============================================================
   Page Hero (used in archive, single, page.php)
   ============================================================ */
.page-hero {
  background-color: var(--color-bg);
  padding-block:    5rem 4rem;
  padding-top: calc(5rem + 72px); /* compensate for fixed header */
}

.page-hero__inner {
  display:        flex;
  flex-direction: column;
  gap:            .5rem;
}

.page-hero h1 {
  font-size:   var(--text-4xl);
  font-weight: 800;
}

.page-hero p { color: var(--color-text-muted); }

/* ============================================================
   Card Grid
   ============================================================ */
.card-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
}

.card-grid--cases { grid-template-columns: repeat(3, 1fr); }

.card-grid--blog { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   Service Card
   ============================================================ */
.service-card {
  display:          flex;
  flex-direction:   column;
  gap:              .75rem;
  padding:          1.5rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
  transition:       box-shadow var(--transition-slow);
}
.service-card:hover { box-shadow: var(--shadow-card-hover); }

.service-card h3 { font-size: var(--text-lg); }
.service-card p  { font-size: var(--text-sm); color: var(--color-text-muted); flex: 1; }

.card-icon {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           32px;
  height:          32px;
  border-radius: var(--radius-sm);
  color:            var(--color-primary);
  background-color: rgba(36,180,43,.12);
  flex-shrink: 0;
}

.card-icon__svg { width: 18px; height: 18px; }

.check-list { display: flex; flex-direction: column; gap: .5rem; }
.check-list li {
  display:     flex;
  align-items: flex-start;
  gap:         .5rem;
  font-size:   var(--text-sm);
  color:       var(--color-text-muted);
}
.check-list li::before {
  content:          '✓';
  color:            var(--color-primary);
  font-weight:      700;
  flex-shrink:      0;
  margin-top:       .1em;
}

/* ============================================================
   Case Card
   ============================================================ */
.case-card {
  display:          flex;
  flex-direction:   column;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  overflow:         hidden;
  background-color: var(--color-surface);
  transition:       box-shadow var(--transition-slow);
}
.case-card:hover { box-shadow: var(--shadow-card-hover); }

.case-card img {
  width:      100%;
  height:     200px;
  object-fit: cover;
}

.case-card__body {
  display:        flex;
  flex-direction: column;
  gap:            .5rem;
  padding:        1.25rem;
  flex:           1;
}

.case-card__body h3 {
  font-size:   1.875rem;
  font-weight: 800;
  color:       var(--color-primary);
  line-height: 1;
}

.case-card__metric { font-size: var(--text-xs); color: var(--color-text-muted); }

.case-card__body p { font-size: var(--text-sm); color: var(--color-text-muted); flex: 1; }

/* ============================================================
   Post Card
   ============================================================ */
.post-card {
  display:          flex;
  flex-direction:   column;
  gap:              .75rem;
  padding:          1.5rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
}

.post-card__visual {
  display:         flex;
  align-items:     center;
  justify-content: center;
  min-height:      108px;
  margin:          -1.5rem -1.5rem .25rem;
  background:      #f5f5f5;
  color:           var(--color-text-muted);
}

.post-card__visual .card-icon {
  color:            #b8b8b8;
  background-color: transparent;
}

.post-card h2, .post-card h3 {
  font-size: var(--text-lg);
  line-height: 1.3;
}

.post-card h2 a, .post-card h3 a {
  color: var(--color-text);
  transition: color var(--transition);
}
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--color-primary); }

.post-card p { font-size: var(--text-sm); color: var(--color-text-muted); flex: 1; }

.post-card__meta {
  display:     flex;
  gap:         .5rem;
  font-size:   var(--text-xs);
  color:       var(--color-text-muted);
}

.post-card__meta span {
  padding:          .125rem .5rem;
  border-radius:    var(--radius-sm);
  background-color: rgba(36,180,43,.1);
  color:            var(--color-primary);
}

/* ============================================================
   Brand Marquee
   ============================================================ */
.brand-strip { padding-block: 3rem; overflow: hidden; }

.brand-row {
  display:         flex;
  flex-wrap:       wrap;
  align-items:     center;
  justify-content: center;
  gap:             1rem 2rem;
}

.brand-row span {
  color:       var(--color-text-muted);
  font-size:   var(--text-xs);
  font-weight: 500;
}

.brand-marquee {
  overflow:    hidden;
  width:       100%;
  margin-top:  2rem;
}

.brand-marquee__track {
  display:     flex;
  align-items: center;
  gap:         3rem;
  width:       max-content;
  animation:   marquee 25s linear infinite;
}

.brand-marquee__track span {
  font-size:   var(--text-sm);
  font-weight: 500;
  color:       var(--color-text-muted);
  white-space: nowrap;
  padding:     .5rem 1.25rem;
  border:      1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background-color: var(--color-surface);
  padding-block:    var(--spacing-section);
}

.watermark-cta {
  position:         relative;
  overflow:         hidden;
  background-image: radial-gradient(55% 120% at 0% 50%, rgba(36,180,43,.16), transparent 72%);
}

.watermark-cta__image {
  position: absolute;
  top:      50%;
  left:     50%;
  width:    180px;
  opacity:  .12;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.watermark-cta .cta-section__inner { position: relative; z-index: 1; }

.cta-section__inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             2rem;
}

.cta-section h2 { font-size: var(--text-3xl); font-weight: 800; margin-bottom: .5rem; }
.cta-section p  { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ============================================================
   FAQ — native <details> (used in template-tags.php)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-list details {
  border:        1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  overflow:      hidden;
}

.faq-list summary {
  list-style:      none;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  gap:             1rem;
  padding:         1rem 1.25rem;
  font-weight:     500;
  font-size:       var(--text-base);
  cursor:          pointer;
  transition:      background var(--transition);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content:    '▾';
  color:      var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-slow);
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list summary:hover { background-color: rgba(255,255,255,.03); }

.faq-list details p {
  padding:    0 1.25rem 1rem;
  font-size:  var(--text-sm);
  color:      var(--color-text-muted);
  line-height: 1.6;
}

/* FAQ — custom JS accordion (used in Elementor templates) */
.faq-item {
  border:        1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  overflow:      hidden;
}

.faq-question {
  width:           100%;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  gap:             1rem;
  padding:         1rem 1.25rem;
  font-weight:     500;
  font-size:       var(--text-base);
  text-align:      left;
  color:           inherit;
  background:      transparent;
  border:          none;
  cursor:          pointer;
  transition:      background var(--transition);
}
.faq-question:hover { background-color: rgba(255,255,255,.03); }

.faq-question__icon {
  flex-shrink: 0;
  transition:  transform var(--transition-slow);
}
.faq-item.open .faq-question__icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow:   hidden;
  transition: max-height var(--transition-slow);
}
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer__inner {
  padding:    0 1.25rem 1rem;
  font-size:  var(--text-sm);
  color:      var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   Case Page Layouts
   ============================================================ */
.split-layout {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   3rem;
  align-items:           start;
}

.content-image {
  width:         100%;
  border-radius: var(--radius-lg);
  object-fit:    cover;
}

.case-story {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   2rem;
}

.case-story__content h2 {
  margin-top:    1.5rem;
  margin-bottom: .5rem;
}

.case-story__content p { color: var(--color-text-muted); }

.stat-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
}

.stat-grid--wide { grid-template-columns: repeat(3, 1fr); }

.stat-grid > div {
  display:        flex;
  flex-direction: column;
  gap:            .25rem;
  text-align:     center;
}

.stat-grid strong {
  display:     block;
  font-size:   var(--text-4xl);
  font-weight: 800;
  color:       var(--color-primary);
}

.stat-grid span { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   Single Post
   ============================================================ */
.single-post__content {
  max-width:  760px;
  margin-inline: auto;
}

.single-post__content p       { margin-bottom: 1rem; color: var(--color-text-muted); }
.single-post__content h2,
.single-post__content h3      { margin-top: 2rem; margin-bottom: .75rem; }
.single-post__content ul,
.single-post__content ol      { margin-bottom: 1rem; padding-left: 1.5rem; }
.single-post__content li      { margin-bottom: .25rem; list-style: disc; }
.single-post__content blockquote {
  border-left:  3px solid var(--color-primary);
  padding-left: 1rem;
  color:        var(--color-text-muted);
  margin-block: 1.5rem;
}

/* ============================================================
   Background Symbols
   ============================================================ */
.bg-symbol {
  position:       absolute;
  opacity:        .04;
  pointer-events: none;
  user-select:    none;
  z-index:        0;
}

/* ============================================================
   Utilities
   ============================================================ */
.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;
}

.relative       { position: relative; }
.overflow-hidden{ overflow: hidden; }
.text-center    { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --text-4xl:       1.875rem;
    --text-5xl:       2.25rem;
    --spacing-section:4rem;
    --container-px:   1.25rem;
  }

  .card-grid,
  .card-grid--cases,
  .card-grid--blog { grid-template-columns: 1fr; }

  .cta-section__inner {
    flex-direction: column;
    text-align:     center;
  }

  .stat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --text-4xl:       1.625rem;
    --spacing-section:3rem;
  }

  .page-hero { padding-block: 4rem 3rem; padding-top: calc(4rem + 64px); }
}

/* ============================================================
   Native Page Components (mobile-first)
   Shared section components used by the native page templates.
   Base styles target mobile; min-width queries scale up.
   ============================================================ */

/* Narrow container variant (FAQ, prose) */
.container--narrow { max-width: 820px; }

/* Section-level action row (e.g. "Ver todos os cases") */
.section-action { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ---- Home hero ---- */
.home-hero {
  background-color: var(--color-bg);
  background-image: radial-gradient(60% 60% at 50% 0%, rgba(36,180,43,.18) 0%, rgba(36,180,43,0) 70%);
  padding-top:      calc(5rem + 72px);
  padding-bottom:   4rem;
  text-align:       center;
  position:         relative;
  overflow:         hidden;
}

.home-hero__inner {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             1.25rem;
}

.home-hero__title {
  font-size:   var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  max-width:   18ch;
}

.home-hero__subtitle {
  font-size:  var(--text-lg);
  color:      var(--color-text-muted);
  max-width:  60ch;
}

.home-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.home-hero__stats {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1rem;
  width:                 100%;
  max-width:             520px;
  margin-top:            1.5rem;
}

.home-hero__stat {
  display:          flex;
  flex-direction:   column;
  gap:              .25rem;
  padding:          1.25rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
}
.home-hero__stat strong { font-size: var(--text-3xl); font-weight: 800; color: var(--color-primary); line-height: 1; }
.home-hero__stat span   { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---- Feature / value cards ---- */
.feature-grid { grid-template-columns: 1fr; }

.feature-card {
  display:          flex;
  flex-direction:   column;
  gap:              .75rem;
  padding:          1.5rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
  transition:       box-shadow var(--transition-slow);
}
.feature-card:hover { box-shadow: var(--shadow-card-hover); }
.feature-card h3 { font-size: var(--text-lg); }
.feature-card p  { font-size: var(--text-sm); color: var(--color-text-muted); }
.feature-card--link:hover { border-color: var(--color-primary); }

/* ---- About summary block ---- */
.about-summary__text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.about-summary__text h2 { font-size: var(--text-3xl); font-weight: 800; }
.about-summary__text p  { color: var(--color-text-muted); font-size: var(--text-base); }

.about-summary__highlights { display: flex; flex-direction: column; gap: 1rem; }
.about-summary__highlight {
  display:          flex;
  flex-direction:   column;
  gap:              .35rem;
  padding:          1.25rem 1.5rem;
  border:           1px solid var(--color-border-dark);
  border-left:      3px solid var(--color-primary);
  border-radius:    var(--radius-md);
  background-color: var(--color-surface);
}
.about-summary__highlight strong { font-size: var(--text-lg); }
.about-summary__highlight span   { font-size: var(--text-sm); color: var(--color-text-muted); }

.home-about {
  background-color: #050505;
  background-image: radial-gradient(45% 80% at 50% 50%, rgba(36,180,43,.06), transparent 75%);
}

.home-about .section-intro { margin-bottom: 2rem; }
.home-about .section-intro h2 { color: var(--color-text); }
.home-about .section-intro h2::first-letter { color: var(--color-text); }

.home-about__card {
  max-width:        900px;
  margin-inline:    auto;
  padding:          2rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: rgba(255,255,255,.04);
}

.home-about .about-summary__highlights {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1rem;
  margin-top:            1.5rem;
}

.home-about .about-summary__highlight {
  align-items:   center;
  border:        0;
  padding:       .75rem;
  text-align:    center;
  background:    transparent;
}

.home-about .about-summary__highlight .card-icon { border-radius: 999px; }

/* ---- Team ---- */
.team-card {
  display:          flex;
  flex-direction:   column;
  gap:              .5rem;
  padding:          1.5rem;
  text-align:       center;
  align-items:      center;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
}
.team-card img {
  width:        96px;
  height:       96px;
  border-radius:50%;
  object-fit:   cover;
  margin-bottom:.5rem;
}
.team-card h3 { font-size: var(--text-lg); }
.team-card__role { font-size: var(--text-sm); color: var(--color-primary); font-weight: 600; }
.team-card p:last-child { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---- Service plans ---- */
.plan-card {
  display:          flex;
  flex-direction:   column;
  gap:              1rem;
  padding:          1.75rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
}
.plan-card h3 { font-size: var(--text-xl); }
.plan-card__summary { font-size: var(--text-sm); color: var(--color-text-muted); }
.plan-card .check-list { flex: 1; }
.plan-card .button { margin-top: auto; }

/* Boxed check-list (service detail) */
.check-list--boxed {
  padding:          1.5rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-lg);
  background-color: var(--color-surface);
  gap:              .75rem;
}

.service-detail__text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.service-detail__text h2 { font-size: var(--text-3xl); font-weight: 800; }
.service-detail__text p  { color: var(--color-text-muted); }

/* ---- Contact ---- */
.contact-layout { align-items: stretch; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .375rem; }
.form-field span { font-size: var(--text-sm); font-weight: 500; }
.form-field input,
.form-field textarea {
  width:            100%;
  padding:          .75rem 1rem;
  border:           1px solid var(--color-border-dark);
  border-radius:    var(--radius-md);
  background-color: var(--color-surface);
  color:            var(--color-text);
  transition:       border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form__submit { align-self: flex-start; }

.form-feedback { padding: .875rem 1rem; border-radius: var(--radius-md); font-size: var(--text-sm); margin-bottom: 1rem; }
.form-feedback--success { background-color: rgba(36,180,43,.12); color: var(--color-primary); }
.form-feedback--error   { background-color: rgba(220,60,60,.12);  color: #ff6b6b; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info h2 { font-size: var(--text-xl); }
.contact-info__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__list li { display: flex; flex-direction: column; gap: .2rem; }
.contact-info__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); }
.contact-info__trust { padding-top: 1.5rem; border-top: 1px solid var(--color-border-dark); }

/* ---- Scale up: tablet ---- */
@media (min-width: 768px) {
  .home-hero { padding-top: calc(6rem + 72px); padding-bottom: 5rem; }
  .home-hero__title { font-size: var(--text-5xl); }
  .home-hero__stats { grid-template-columns: repeat(2, 1fr); }

  .feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(3, 1fr); }
  .plan-grid       { grid-template-columns: repeat(2, 1fr); }
  .home-about .about-summary__highlights { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Scale up: desktop ---- */
@media (min-width: 1024px) {
  .feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .plan-grid       { grid-template-columns: repeat(3, 1fr); }

  .about-summary .split-layout,
  .contact-layout { grid-template-columns: 3fr 2fr; }

  .case-story { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Case snapshots inherit the published 1.5 line-height on strategy card titles. */
.lykos-reference-page section.py-12.sm\:py-16.md\:py-20.bg-\[\#f5f5f5\] h3.font-bold.mb-2.text-\[\#000000\] {
  line-height: 1.5;
}

/* The legacy button reset must not remove Tailwind's outlined button style. */
.lykos-reference-page button.border {
  border-style: solid;
}
