/* ========================================
   Brisa CMS — Composable Sections
   ========================================
   Extracted from the sections prototype catalog.
   Requires styles.css (CSS variables, reset, base)
   and theme.css (dynamic variable overrides).

   Button classes are prefixed with sc- to avoid
   collision with the existing button styles in
   styles.css. PHP partials use these prefixed names.
   ======================================== */

/* ========================================
   SHARED SECTION STYLES
   ======================================== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-soft);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-wash) 0%, var(--color-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.img-placeholder svg {
  width: 48px; height: 48px;
  color: var(--color-soft);
  opacity: 0.5;
}
.img-placeholder.dark {
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-mid) 100%);
}
.img-placeholder.dark svg { color: var(--color-light); }

/* ========================================
   SECTION BUTTONS (sc- prefixed)
   ======================================== */
.sc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.sc-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.sc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--color-light);
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.sc-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.sc-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--accent);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.sc-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.sc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.sc-btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.sc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s var(--transition);
  text-decoration: none;
}
.sc-link-arrow:hover { gap: 0.7rem; }
.sc-link-arrow svg { width: 16px; height: 16px; }

/* ========================================
   HERO ACTIONS (scoped to sections only)
   ======================================== */
.s-hero-image .hero-actions,
.s-hero-video .hero-actions,
.s-hero-split .hero-actions,
.s-cta-banner .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================================
   1. HERO IMAGE
   ======================================== */
.s-hero-image {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.s-hero-image::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, var(--color-wash) 0%, transparent 70%);
  pointer-events: none;
}
.s-hero-image .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.s-hero-image .hero-text .hero-tag {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-soft);
  margin-bottom: 1rem;
}
.s-hero-image .hero-text .hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.s-hero-image .hero-text .hero-title em {
  font-style: italic;
  color: var(--color-mid);
}
.s-hero-image .hero-text .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.7;
}
.s-hero-image .hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.s-hero-image .hero-image-wrapper .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}
.s-hero-image .hero-image-accent {
  position: absolute;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-wash) 0%, var(--color-pale) 100%);
  top: 10%; right: -10%;
  z-index: 0;
}

/* ========================================
   2. HERO VIDEO
   ======================================== */
.s-hero-video {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1a26 0%, var(--color-deep) 40%, var(--color-mid) 100%);
}
.s-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(46,107,138,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(58,90,124,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.s-hero-video .hero-video-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.s-hero-video .hero-tag {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-light); margin-bottom: 1rem;
}
.s-hero-video .hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.s-hero-video .hero-title em { font-style: italic; color: var(--color-light); }
.s-hero-video .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.s-hero-video .hero-actions { justify-content: center; }
.s-hero-video .play-hint {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.s-hero-video .play-hint .play-circle {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.s-hero-video .play-hint .play-circle svg { width: 14px; height: 14px; color: rgba(255,255,255,0.5); }

/* ========================================
   3. HERO SPLIT
   ======================================== */
.s-hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.s-hero-split .hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  background: var(--color-wash);
}
.s-hero-split .hero-split-text .hero-tag {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-soft);
  margin-bottom: 1rem;
}
.s-hero-split .hero-split-text .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.s-hero-split .hero-split-text .hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.7;
}
.s-hero-split .hero-split-image {
  background: linear-gradient(145deg, var(--color-light) 0%, var(--color-wash) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-hero-split .hero-split-image svg { width: 64px; height: 64px; color: var(--color-soft); opacity: 0.4; }

/* ========================================
   4. FEATURES GRID
   ======================================== */
.s-features-grid {
  padding: 6rem 2.5rem;
  background: var(--color-pale);
}
.s-features-grid .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-features-grid .section-desc { margin: 0 auto; }
.s-features-grid .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.s-features-grid .feature-card {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}
.s-features-grid .feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.4s var(--transition);
}
.s-features-grid .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,58,0.08);
  border-color: transparent;
}
.s-features-grid .feature-card:hover::before { width: 100%; }
.s-features-grid .feature-icon {
  width: 44px; height: 44px;
  background: var(--color-wash);
  border-radius: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.s-features-grid .feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.s-features-grid .feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.s-features-grid .feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================
   5. FEATURES ALTERNATING
   ======================================== */
.s-features-alt { padding: 6rem 2.5rem; }
.s-features-alt .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.s-features-alt .section-desc { margin: 0 auto; }
.s-features-alt .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.s-features-alt .feature-row:last-child { margin-bottom: 0; }
.s-features-alt .feature-row.reverse .feature-row-image { order: 2; }
.s-features-alt .feature-row.reverse .feature-row-text { order: 1; }
.s-features-alt .feature-row-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
}
.s-features-alt .feature-row-text .section-tag { margin-bottom: 0.5rem; }
.s-features-alt .feature-row-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.s-features-alt .feature-row-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ========================================
   6. TEXT IMAGE
   ======================================== */
.s-text-image { padding: 6rem 2.5rem; }
.s-text-image .text-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.s-text-image .text-image-content .section-tag { margin-bottom: 0.75rem; }
.s-text-image .text-image-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.s-text-image .text-image-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.s-text-image .text-image-content p:last-of-type { margin-bottom: 2rem; }
.s-text-image .text-image-visual {
  position: relative;
}
.s-text-image .text-image-visual .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}
.s-text-image .text-image-visual::before {
  content: '';
  position: absolute;
  width: 85%; height: 85%;
  background: linear-gradient(135deg, var(--color-wash) 0%, var(--color-pale) 100%);
  border-radius: 50%;
  top: 8%; right: -8%;
  z-index: 0;
}

/* ========================================
   7. TEXT ONLY
   ======================================== */
.s-text-only { padding: 6rem 2.5rem; }
.s-text-only .text-only-inner {
  max-width: 720px;
  margin: 0 auto;
}
.s-text-only .text-only-inner .section-tag { margin-bottom: 0.75rem; }
.s-text-only .text-only-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.s-text-only .text-only-inner p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.s-text-only .text-only-inner blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-mid);
  border-left: 3px solid var(--color-light);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* ========================================
   8. GALLERY
   ======================================== */
.s-gallery {
  padding: 6rem 2.5rem;
  background: var(--color-pale);
}
.s-gallery .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.s-gallery .section-desc { margin: 0 auto; }
.s-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.s-gallery .gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.s-gallery .gallery-item .img-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.5s var(--transition);
}
.s-gallery .gallery-item:hover .img-placeholder { transform: scale(1.05); }
.s-gallery .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(26,42,58,0.8) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--transition);
}
.s-gallery .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.s-gallery .gallery-item.span-2 { grid-row: span 2; }
.s-gallery .gallery-item:nth-child(1) { background: linear-gradient(135deg, #c4dae8 0%, #8fb5cc 100%); }
.s-gallery .gallery-item:nth-child(2) { background: linear-gradient(135deg, #aecadb 0%, #7aa3bb 100%); }
.s-gallery .gallery-item:nth-child(3) { background: linear-gradient(135deg, #d0e2ec 0%, #a5c5d8 100%); }
.s-gallery .gallery-item:nth-child(4) { background: linear-gradient(135deg, #b8d5e4 0%, #8ab4cb 100%); }
.s-gallery .gallery-item:nth-child(5) { background: linear-gradient(135deg, #c8dde9 0%, #96bdd2 100%); }
.s-gallery .gallery-item:nth-child(6) { background: linear-gradient(135deg, #bcd7e6 0%, #82afca 100%); }

/* ========================================
   9. TESTIMONIALS
   ======================================== */
.s-testimonials { padding: 6rem 2.5rem; }
.s-testimonials .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-testimonials .section-desc { margin: 0 auto; }
.s-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.s-testimonials .testimonial-card {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s var(--transition);
}
.s-testimonials .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,58,0.08);
  border-color: transparent;
}
.s-testimonials .testimonial-quote-icon {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-wash);
  margin-bottom: 0.5rem;
  user-select: none;
}
.s-testimonials .testimonial-card .quote-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.s-testimonials .testimonial-divider {
  height: 1px;
  background: var(--color-wash);
  margin-bottom: 1.25rem;
}
.s-testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.s-testimonials .testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-wash) 0%, var(--color-light) 100%);
  flex-shrink: 0;
}
.s-testimonials .testimonial-author .author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.s-testimonials .testimonial-author .author-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ========================================
   10. STATS
   ======================================== */
.s-stats {
  padding: 5rem 2.5rem;
  background: var(--color-pale);
}
.s-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.s-stats .stat-item {
  padding-top: 1.5rem;
  border-top: 3px solid var(--color-wash);
  transition: border-color 0.3s var(--transition);
}
.s-stats .stat-item:hover { border-color: var(--accent); }
.s-stats .stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.5vw, 3.2rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.s-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   11. PRICING (single)
   ======================================== */
.s-pricing { padding: 6rem 2.5rem; }
.s-pricing .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.s-pricing .section-desc { margin: 0 auto; }
.s-pricing .pricing-card-single {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(26,42,58,0.04);
}
.s-pricing .pricing-plan-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-soft);
  margin-bottom: 1rem;
}
.s-pricing .pricing-amount {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.s-pricing .pricing-amount .currency { font-size: 0.5em; vertical-align: super; margin-right: 0.1em; }
.s-pricing .pricing-amount .period {
  font-family: var(--sans);
  font-size: 0.35em;
  color: var(--text-light);
  font-weight: 400;
}
.s-pricing .pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.s-pricing .pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--color-pale);
}
.s-pricing .pricing-features li:last-child { border-bottom: none; }
.s-pricing .pricing-features .check-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.s-pricing .pricing-card-single .sc-btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
.s-pricing .pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1.25rem;
}

/* ========================================
   12. PRICING COLUMNS
   ======================================== */
.s-pricing-cols {
  padding: 6rem 2.5rem;
  background: var(--color-pale);
}
.s-pricing-cols .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-pricing-cols .section-desc { margin: 0 auto; }
.s-pricing-cols .pricing-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.s-pricing-cols .pricing-col {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--transition);
}
.s-pricing-cols .pricing-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,58,0.08);
}
.s-pricing-cols .pricing-col.featured {
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 40px rgba(26,42,58,0.1);
  transform: scale(1.03);
  position: relative;
}
.s-pricing-cols .pricing-col.featured:hover { transform: scale(1.03) translateY(-4px); }
.s-pricing-cols .pricing-col .plan-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-wash);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.s-pricing-cols .pricing-col h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.s-pricing-cols .pricing-col .col-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.s-pricing-cols .pricing-col .col-price .period {
  font-family: var(--sans);
  font-size: 0.4em;
  color: var(--text-light);
  font-weight: 400;
}
.s-pricing-cols .pricing-col .col-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.s-pricing-cols .pricing-col .pricing-features { margin: 0 0 1.5rem; max-width: none; }
.s-pricing-cols .pricing-col .pricing-features li { justify-content: center; text-align: center; }
.s-pricing-cols .pricing-col .sc-btn-primary { width: 100%; justify-content: center; }
.s-pricing-cols .pricing-col .sc-btn-secondary { width: 100%; justify-content: center; }

/* ========================================
   13. CTA BANNER
   ======================================== */
.s-cta-banner {
  padding: 6rem 2.5rem;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cta-banner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(106,143,173,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.s-cta-banner .cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.s-cta-banner .section-tag { color: var(--color-light); }
.s-cta-banner .section-title { color: var(--white); }
.s-cta-banner .section-desc {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2rem;
}
.s-cta-banner .hero-actions { justify-content: center; }

/* ========================================
   14. CTA INLINE
   ======================================== */
.s-cta-inline { padding: 4rem 2.5rem; }
.s-cta-inline .cta-inline-box {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-wash);
  border-radius: 1.5rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.s-cta-inline .cta-inline-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.s-cta-inline .cta-inline-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   15. FAQ
   ======================================== */
.s-faq { padding: 6rem 2.5rem; }
.s-faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.s-faq .section-desc { margin: 0 auto; }
.s-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.s-faq .faq-item {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s var(--transition);
}
.s-faq .faq-item.active { border-color: var(--color-light); }
.s-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
}
.s-faq .faq-question:hover { color: var(--accent); }
.s-faq .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--transition);
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
}
.s-faq .faq-item.active .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.s-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition), padding 0.3s;
}
.s-faq .faq-item.active .faq-answer { max-height: 300px; }
.s-faq .faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   16. CONTACT FORM
   ======================================== */
.s-contact { padding: 6rem 2.5rem; }
.s-contact .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-contact .section-desc { margin: 0 auto; }
.s-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.s-contact .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.s-contact .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.s-contact .contact-method-icon {
  width: 44px; height: 44px;
  background: var(--color-wash);
  border-radius: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.s-contact .contact-method-icon svg { width: 20px; height: 20px; color: var(--accent); }
.s-contact .contact-method .method-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.s-contact .contact-method .method-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.s-contact .contact-map-placeholder {
  flex: 1;
  min-height: 180px;
  background: var(--color-wash);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.5rem;
}
.s-contact .contact-map-placeholder svg { width: 40px; height: 40px; color: var(--color-soft); opacity: 0.5; }

.s-contact .contact-form-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(26,42,58,0.05);
  border: 1px solid rgba(184,207,224,0.2);
}
.s-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.s-contact .form-group {
  margin-bottom: 1.25rem;
}
.s-contact .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.s-contact .form-group input,
.s-contact .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-wash);
  border-radius: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.s-contact .form-group input:focus,
.s-contact .form-group textarea:focus { border-color: var(--accent); }
.s-contact .form-group textarea { resize: vertical; min-height: 100px; }
.s-contact .form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.s-contact .form-privacy input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}
.s-contact .contact-form-card .sc-btn-primary { width: 100%; justify-content: center; }

/* ========================================
   17. TEAM
   ======================================== */
.s-team {
  padding: 6rem 2.5rem;
  background: var(--color-pale);
}
.s-team .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.s-team .section-desc { margin: 0 auto; }
.s-team .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.s-team .team-card {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.2);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--transition);
}
.s-team .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,58,0.08);
}
.s-team .team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-wash) 0%, var(--color-light) 100%);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.s-team .team-avatar svg { width: 36px; height: 36px; color: var(--color-soft); opacity: 0.5; }
.s-team .team-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.s-team .team-card .team-role {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.s-team .team-card .team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.s-team .team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.s-team .team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-pale);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--transition);
}
.s-team .team-social a:hover {
  background: var(--accent);
  color: var(--white);
}
.s-team .team-social a svg { width: 15px; height: 15px; color: var(--color-soft); }
.s-team .team-social a:hover svg { color: var(--white); }

/* ========================================
   18. LOGO STRIP
   ======================================== */
.s-logos {
  padding: 4rem 2.5rem;
  background: var(--color-pale);
  border-top: 1px solid var(--color-wash);
  border-bottom: 1px solid var(--color-wash);
}
.s-logos .logos-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-logos .logo-placeholder {
  width: 120px; height: 44px;
  background: var(--color-light);
  border-radius: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.3s var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.s-logos .logo-placeholder:hover { opacity: 0.85; }
.s-logos .logo-placeholder span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   19. TIMELINE
   ======================================== */
.s-timeline { padding: 6rem 2.5rem; }
.s-timeline .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.s-timeline .section-desc { margin: 0 auto; }
.s-timeline .timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.s-timeline .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--color-light);
  transform: translateX(-50%);
}
.s-timeline .timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.s-timeline .timeline-item:last-child { margin-bottom: 0; }
.s-timeline .timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  z-index: 2;
}
.s-timeline .timeline-card {
  background: var(--white);
  border: 1px solid rgba(184,207,224,0.3);
  border-radius: 1rem;
  padding: 1.5rem;
}
.s-timeline .timeline-item:nth-child(odd) .timeline-card { grid-column: 1; }
.s-timeline .timeline-item:nth-child(odd) .timeline-spacer { grid-column: 2; }
.s-timeline .timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.s-timeline .timeline-item:nth-child(even) .timeline-card { grid-column: 2; }
.s-timeline .timeline-year {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--color-wash);
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  margin-bottom: 0.6rem;
}
.s-timeline .timeline-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.s-timeline .timeline-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ========================================
   20. MAP EMBED
   ======================================== */
.s-map { padding: 0; }
.s-map .map-placeholder {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--color-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.s-map .map-placeholder svg { width: 56px; height: 56px; color: var(--color-soft); opacity: 0.4; }
.s-map .map-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}
.s-map .map-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.s-map .map-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   RESPONSIVE — 900px
   ======================================== */
@media (max-width: 900px) {
  /* Sections responsive */
  .s-hero-image .section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-hero-image .hero-image-wrapper { max-width: 400px; margin: 0 auto; }
  .s-hero-split { grid-template-columns: 1fr; }
  .s-hero-split .hero-split-image { min-height: 300px; }
  .s-hero-split .hero-split-text { padding: 3rem 1.5rem; }
  .s-features-grid .features-grid { grid-template-columns: 1fr; }
  .s-features-alt .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .s-features-alt .feature-row.reverse .feature-row-image { order: 0; }
  .s-features-alt .feature-row.reverse .feature-row-text { order: 0; }
  .s-text-image .text-image-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-text-image .text-image-visual { max-width: 400px; }
  .s-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .s-gallery .gallery-item.span-2 { grid-row: span 1; }
  .s-testimonials .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .s-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .s-pricing-cols .pricing-columns { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .s-pricing-cols .pricing-col.featured { transform: none; }
  .s-pricing-cols .pricing-col.featured:hover { transform: translateY(-4px); }
  .s-contact .contact-grid { grid-template-columns: 1fr; }
  .s-team .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .s-cta-inline .cta-inline-box { grid-template-columns: 1fr; text-align: center; }
  .s-cta-inline .cta-inline-box .sc-btn-primary { width: 100%; justify-content: center; }
  .s-timeline .timeline::before { left: 20px; }
  .s-timeline .timeline-item { grid-template-columns: 1fr; padding-left: 50px; }
  .s-timeline .timeline-dot { left: 20px; }
  .s-timeline .timeline-item:nth-child(odd) .timeline-card,
  .s-timeline .timeline-item:nth-child(even) .timeline-card { grid-column: 1; }
  .s-timeline .timeline-spacer { display: none; }
  .s-map .map-info-strip { grid-template-columns: 1fr; gap: 1.25rem; padding: 2rem 1.5rem; }
  .s-logos .logos-inner { justify-content: center; }
  .s-contact .form-row { grid-template-columns: 1fr; }

  /* Global section padding */
  .s-hero-image,
  .s-features-grid,
  .s-features-alt,
  .s-text-image,
  .s-text-only,
  .s-gallery,
  .s-testimonials,
  .s-pricing,
  .s-pricing-cols,
  .s-cta-banner,
  .s-faq,
  .s-contact,
  .s-team,
  .s-timeline { padding: 4rem 1.5rem; }
  .s-stats, .s-cta-inline, .s-logos { padding: 3rem 1.5rem; }
}

/* ========================================
   RESPONSIVE — 600px
   ======================================== */
@media (max-width: 600px) {
  .s-stats .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .s-gallery .gallery-grid { grid-template-columns: 1fr; }
  .s-hero-image .hero-actions,
  .s-hero-video .hero-actions,
  .s-hero-split .hero-actions,
  .s-cta-banner .hero-actions { flex-direction: column; }
  .s-hero-image .hero-actions .sc-btn-primary,
  .s-hero-image .hero-actions .sc-btn-secondary,
  .s-hero-image .hero-actions .sc-btn-white,
  .s-hero-image .hero-actions .sc-btn-ghost,
  .s-hero-video .hero-actions .sc-btn-primary,
  .s-hero-video .hero-actions .sc-btn-secondary,
  .s-hero-video .hero-actions .sc-btn-white,
  .s-hero-video .hero-actions .sc-btn-ghost,
  .s-hero-split .hero-actions .sc-btn-primary,
  .s-hero-split .hero-actions .sc-btn-secondary,
  .s-hero-split .hero-actions .sc-btn-white,
  .s-hero-split .hero-actions .sc-btn-ghost,
  .s-cta-banner .hero-actions .sc-btn-primary,
  .s-cta-banner .hero-actions .sc-btn-secondary,
  .s-cta-banner .hero-actions .sc-btn-white,
  .s-cta-banner .hero-actions .sc-btn-ghost { width: 100%; justify-content: center; }
}
