/* ─────────────────────────────────────────
   Shared
   ───────────────────────────────────────── */

:root {
  --orange: #e07820;
  --orange-dark: #c46a18;
  --text: #1a1a1a;
  --text-secondary: #666;
  --border: #e8e8e8;
  --bg: #fff;
  --bg-alt: #f5f5f7;
  --bg-light: #f8f8f8;
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wordmark {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.btn-nav {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-nav:hover { background: var(--orange-dark); transform: scale(1.02); }

/* ── Footer ── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .wordmark,
footer .footer-wordmark {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
footer .copyright,
footer small {
  font-size: 13px;
  color: #aaa;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ── Responsive shared ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  footer { padding: 24px 20px; }
}


/* ─────────────────────────────────────────
   #home — Landing page
   ───────────────────────────────────────── */

#home footer { background: var(--bg-light); }

/* HERO */
#home .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background-color: #bde8ef;
}

#home .hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

#home .hero-bubbles span {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #8ecdd6;
  display: block;
}

#home .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 45%, rgba(189,232,239,0.1) 0%, rgba(189,232,239,0.65) 68%);
  pointer-events: none;
  z-index: 1;
}

#home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
}

#home .hero-logo {
  height: 132px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,120,32,0.08);
  color: var(--orange);
  border: 1px solid rgba(224,120,32,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#home .hero-badge.visible { opacity: 1; transform: translateY(0); }

#home .hero h1 {
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
#home .hero h1.visible { opacity: 1; transform: translateY(0); }
#home .hero h1 em { font-style: normal; color: var(--orange); }

#home .hero p {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
#home .hero p.visible { opacity: 1; transform: translateY(0); }

#home .hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
#home .hero-buttons.visible { opacity: 1; transform: translateY(0); }

#home .btn-install {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
#home .btn-install:hover { opacity: 0.8; transform: scale(1.03); }
#home .btn-install img { display: block; height: 52px; width: auto; }

#home .hero-screenshot {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}
#home .hero-screenshot.visible { opacity: 1; transform: translateY(0); }
#home .hero-screenshot video {
  display: block;
  width: 100%;
  height: auto;
}
#home .hero-screenshot span {
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FEATURES */
#home .features {
  padding: 0;
}

#home .features-header {
  padding: 80px 48px 32px;
  text-align: center;
}

#home .features-header .section-title { margin-bottom: 0; }

#home .section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#home .section-label.visible { opacity: 1; transform: translateY(0); }

#home .section-title {
  text-align: center;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
#home .section-title.visible { opacity: 1; transform: translateY(0); }

#home .feature-band {
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.2s ease;
}
#home .feature-band.visible { opacity: 1; transform: translateY(0); }
#home .feature-band:hover { background: var(--bg-alt); }

#home .feature-band { border-bottom: 1px solid var(--border); }

#home .feature-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

#home .feature-band-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .feature-band-icon svg { width: 26px; height: 26px; }

#home .feature-band:nth-child(1) .feature-band-icon { background: rgba(112,198,199,0.2); }
#home .feature-band:nth-child(1) .feature-band-icon svg { color: #3aadaf; }
#home .feature-band:nth-child(2) .feature-band-icon { background: rgba(224,120,32,0.12); }
#home .feature-band:nth-child(2) .feature-band-icon svg { color: #e07820; }
#home .feature-band:nth-child(3) .feature-band-icon { background: rgba(155,89,182,0.12); }
#home .feature-band:nth-child(3) .feature-band-icon svg { color: #9b59b6; }
#home .feature-band:nth-child(4) .feature-band-icon { background: rgba(255,107,107,0.12); }
#home .feature-band:nth-child(4) .feature-band-icon svg { color: #e04f4f; }

#home .feature-band-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#home .feature-band h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(0,0,0,0.85);
}

#home .feature-band p {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
}

#home .feature-band-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(0,0,0,0.3);
  transition: transform 0.2s ease, color 0.2s ease;
}
#home .feature-band:hover .feature-band-arrow {
  transform: translateX(4px);
  color: rgba(0,0,0,0.55);
}

/* CAROUSEL */
#home .carousel-section {
  padding: 80px 0 120px;
  overflow: hidden;
}

#home .carousel-header {
  text-align: center;
  padding: 0 24px 56px;
}

#home .carousel-outer {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 64px;
}

#home .carousel-browser {
  background: #e8e8e8;
  border-radius: 12px 12px 8px 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

#home .carousel-browser-bar {
  background: #e0e0e0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccc;
}

#home .browser-dots { display: flex; gap: 6px; }

#home .browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
#home .browser-dots span:nth-child(1) { background: #ff5f57; }
#home .browser-dots span:nth-child(2) { background: #febc2e; }
#home .browser-dots span:nth-child(3) { background: #28c840; }

#home .browser-url {
  flex: 1;
  background: #d4d4d4;
  border-radius: 6px;
  height: 24px;
  max-width: 320px;
  margin: 0 auto;
}

#home .carousel-clip { overflow: hidden; }

#home .carousel-track {
  position: relative;
  width: 100%;
}

#home .carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#home .carousel-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

#home .carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

#home .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 10;
}
#home .carousel-btn:hover { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.16); }
#home .carousel-btn.prev { left: 12px; }
#home .carousel-btn.next { right: 12px; }
#home .carousel-btn svg { width: 18px; height: 18px; color: #333; pointer-events: none; }

#home .carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 24px;
}

#home .carousel-caption {
  text-align: center;
  min-height: 58px;
}

#home .carousel-caption h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

#home .carousel-caption p {
  font-size: 16px;
  color: var(--text-secondary);
}

#home .carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

#home .carousel-dot {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

#home .carousel-dot.active {
  background: var(--orange);
  width: 24px;
}

/* FAQ */
#home .faq {
  padding: 80px max(48px, calc((100% - 760px) / 2));
  background: rgb(33, 37, 41);
}

#home .faq .section-label { color: var(--orange); }
#home .faq .section-title { color: #fff; }

#home .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}

#home .faq-item:first-of-type {
  border-top: 1px solid rgba(255,255,255,0.1);
}

#home .faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

#home .faq-answer {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* INSTALL */
#home .install {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg-light);
}

#home .install h2 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#home .install h2.visible { opacity: 1; transform: translateY(0); }

#home .install p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
#home .install p.visible { opacity: 1; transform: translateY(0); }

#home .install-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
#home .install-buttons.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  #home .features-header { padding: 64px 20px 48px; }
  #home .feature-band-inner { padding: 28px 20px; gap: 16px; flex-wrap: wrap; }
  #home .feature-band h3 { width: auto; }
  #home .feature-band-arrow { display: none; }
  #home .carousel-outer { padding: 0 40px; }
  #home .carousel-btn { width: 36px; height: 36px; }
}


/* ─────────────────────────────────────────
   #multiple-dashboards — Feature page
   ───────────────────────────────────────── */

/* PAGE HEADER */
#multiple-dashboards .page-header {
  padding: 140px 48px 80px;
  text-align: center;
  background-color: #bde8ef;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#multiple-dashboards .page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 45%, rgba(189,232,239,0.1) 0%, rgba(189,232,239,0.65) 68%);
  pointer-events: none;
  z-index: 1;
}

#multiple-dashboards .page-header > *:not(.page-bubbles) {
  position: relative;
  z-index: 2;
}

#multiple-dashboards .page-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

#multiple-dashboards .page-bubbles span {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #8ecdd6;
  display: block;
}

#multiple-dashboards .breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#multiple-dashboards .breadcrumb a {
  color: var(--orange);
  text-decoration: none;
}
#multiple-dashboards .breadcrumb a:hover { text-decoration: underline; }

#multiple-dashboards .breadcrumb-sep { color: #ccc; }

#multiple-dashboards .page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

#multiple-dashboards .page-header h1 em {
  font-style: normal;
  color: var(--orange);
}

#multiple-dashboards .page-header p {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FEATURE SECTIONS */
#multiple-dashboards .feature-section { padding: 100px 48px; }

#multiple-dashboards .feature-section:nth-child(even) { background: var(--bg-alt); }

#multiple-dashboards .feature-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#multiple-dashboards .feature-section:nth-child(even) .feature-section-inner { direction: rtl; }
#multiple-dashboards .feature-section:nth-child(even) .feature-section-inner > * { direction: ltr; }

#multiple-dashboards .section-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

#multiple-dashboards .feature-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

#multiple-dashboards .feature-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#multiple-dashboards .feature-screenshot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  background: #e8e8ea;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#multiple-dashboards .feature-screenshot img,
#multiple-dashboards .feature-screenshot video {
  display: block;
  width: 100%;
  height: auto;
}

#multiple-dashboards .feature-screenshot.placeholder {
  background: linear-gradient(135deg, #e4e4e6 0%, #ececee 100%);
}

#multiple-dashboards .feature-screenshot.placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0b0b4;
}

/* Responsive */
@media (max-width: 768px) {
  #multiple-dashboards .page-header { padding: 120px 24px 60px; }
  #multiple-dashboards .feature-section { padding: 64px 24px; }
  #multiple-dashboards .feature-section-inner { grid-template-columns: 1fr; gap: 40px; }
  #multiple-dashboards .feature-section:nth-child(even) .feature-section-inner { direction: ltr; }
}


/* ─────────────────────────────────────────
   Feature pages — shared (.feat-*)
   ───────────────────────────────────────── */

.feat-header {
  padding: 120px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.feat-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.feat-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.feat-back:hover { color: var(--text); }

.feat-header h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.feat-header h1 em { font-style: normal; color: var(--orange); }

.feat-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

/* Sections */
.feat-section {
  border-bottom: 1px solid var(--border);
}
.feat-section:nth-child(even) { background: rgb(33, 37, 41); }
.feat-section:nth-child(even) .feat-section-intro h2,
.feat-section:nth-child(even) .feat-item-text h3 { color: #fff; }
.feat-section:nth-child(even) .feat-section-label { color: var(--orange); }
.feat-section:nth-child(even) .feat-item-text p { color: rgba(255,255,255,0.6); }
.feat-section:nth-child(even) .feat-item { border-top-color: rgba(255,255,255,0.1); }

.feat-section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.feat-section-intro {
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feat-section-intro.visible { opacity: 1; transform: none; }

.feat-section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.feat-section-intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Feature items */
.feat-item {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feat-item.visible { opacity: 1; transform: none; }

.feat-item--flip { grid-template-columns: 1.7fr 1fr; }
.feat-item--flip .feat-item-text { order: 2; }
.feat-item--flip .feat-item-media { order: 1; }

.feat-item-text h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.feat-item-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feat-screenshot {
  background: #000;
  border-radius: 18px;
  padding: 8px;
  line-height: 0;
}

.feat-screenshot img {
  width: 100%;
  display: block;
}

.feat-screenshot span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ccc;
}

/* Lightbox */
#feat-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
}
#feat-lightbox.open { opacity: 1; pointer-events: all; }
#feat-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}
#feat-lightbox.open img { transform: scale(1); }
.feat-screenshot img { cursor: zoom-in; }
.lb-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  color: #333;
  font-size: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.lb-arr:hover { background: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* Feature page responsive */
@media (max-width: 768px) {
  .feat-header { padding: 100px 20px 60px; }
  .feat-section-content { padding: 56px 20px; }
  .feat-item { grid-template-columns: 1fr; gap: 28px; }
  .feat-item--flip { grid-template-columns: 1fr; }
  .feat-item--flip .feat-item-text { order: 0; }
  .feat-item--flip .feat-item-media { order: 1; }
}
