/* ─── Variables ──────────────────────────────────────────── */
:root {
  --navy:        #1a2e4a;
  --navy-light:  #243d60;
  --orange:      #f39c12;
  --orange-dark: #d4870e;
  --cream:       #f9f7f4;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #5a6170;
  --border:      #e2ddd8;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 16px rgba(26,46,74,0.10);
  --shadow-lg:   0 6px 32px rgba(26,46,74,0.14);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1100px;
  --nav-h:       68px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }

/* ─── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.82); }

.tag {
  display: inline-block;
  background: rgba(243,156,18,0.15);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-dark .tag {
  background: rgba(243,156,18,0.25);
  color: var(--orange);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark { color: inherit; }
.nav-wordmark span { color: var(--orange); }
.logo-mark { flex-shrink: 0; }
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-mobile a:hover { background: var(--cream); color: var(--navy); }
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4080 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(243,156,18,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-content { max-width: 640px; }
.hero-content .tag { margin-bottom: 18px; }
.hero-content h1 { color: var(--white); margin-bottom: 18px; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-content { max-width: 560px; }
  .hero-stat-grid { grid-template-columns: 1fr; gap: 14px; min-width: 200px; }
  .hero-stat-num { font-size: 1.7rem; }
}

/* ─── Section header ─────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.text-center p { margin-inline: auto; }

/* ─── Card grid ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(243,156,18,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }

/* ─── Framework section ──────────────────────────────────── */
.framework {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.framework-visual {
  width: 100%;
  max-width: 380px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 2px dashed var(--border);
}
.framework-figure {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.framework-visual h3 { margin-bottom: 8px; }
.framework-visual p { font-size: 0.9rem; }
.framework-content { flex: 1; }
.framework-content h2 { margin-bottom: 16px; }
.framework-content p { margin-bottom: 16px; }
.framework-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.framework-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.framework-item-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 28px;
}
.framework-item h4 { margin-bottom: 2px; }
.framework-item p { font-size: 0.9rem; }
@media (min-width: 800px) {
  .framework { flex-direction: row; align-items: flex-start; gap: 56px; }
  .framework-visual { min-width: 300px; }
}

/* ─── Two-col split ──────────────────────────────────────── */
.split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.split-content { flex: 1; }
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 16px; }
@media (min-width: 800px) {
  .split { flex-direction: row; align-items: center; gap: 64px; }
  .split.reverse { flex-direction: row-reverse; }
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-dark .testimonial-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}
.section-dark .testimonial-quote { color: rgba(255,255,255,0.78); }
.testimonial-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.section-dark .testimonial-avatar { background: rgba(243,156,18,0.25); color: var(--orange); }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.section-dark .testimonial-name { color: var(--white); }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); }
.section-dark .testimonial-role { color: rgba(255,255,255,0.6); }

/* ─── CTA band ───────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 560px; margin-inline: auto; margin-bottom: 28px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.8); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ─── Service pills ──────────────────────────────────────── */
.service-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px 3px 3px 0;
  border: 1px solid var(--border);
}

/* ─── About page ─────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 800px) {
  .bio-grid { grid-template-columns: 280px 1fr; gap: 56px; }
}
.bio-photo-block {
  text-align: center;
}
.bio-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid var(--orange);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; }
.bio-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.bio-links { display: flex; flex-direction: column; gap: 8px; }
.bio-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted);
}
.bio-link a { color: var(--navy); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.value-item h4 { margin-bottom: 2px; }
.value-item p { font-size: 0.9rem; }

/* ─── Apps page ──────────────────────────────────────────── */
.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app-card + .app-card { margin-top: 32px; }
.app-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.app-card h2 { margin-bottom: 8px; }
.app-card p { font-size: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-item::before { content: '✓'; color: var(--orange); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ─── Contact page ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method h4 { margin-bottom: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method a, .contact-method p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-method a:hover { color: var(--orange-dark); text-decoration: underline; }
.booking-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.booking-card h2 { color: var(--white); margin-bottom: 12px; }
.booking-card p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.booking-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.booking-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
}
.booking-feature-icon { color: var(--orange); font-size: 1rem; }

/* ─── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin-inline: auto; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand h3 .nav-wordmark span { color: var(--orange); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}
@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── Divider ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── Scroll offset for fixed nav ───────────────────────── */
section[id], div[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ─── App screenshots ────────────────────────────────────── */
.app-screenshot {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.app-screenshot img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: contain;
  background: #f8f9fa;
}

/* ─── Service cards with images ─────────────────────────── */
.card--has-image { padding: 0; }
.card--has-image .card-body { padding: 24px; }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}
.card-header-band {
  border-radius: 12px 12px 0 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 24px;
}
.card-header-band h3 {
  color: white;
  font-size: 1.25rem;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}
.card-header-band--orange { background: var(--orange); }
.card-header-band--orange h3 { color: var(--navy); }
.service-subtitle {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 10px;
  font-style: italic;
}

/* ─── Image carousel ────────────────────────────────────── */
.carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  margin: 24px 0;
  background: #f8f9fa;
}
.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: contain;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,46,74,0.75);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--navy); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* ─── App video embeds ───────────────────────────────────── */
.app-video { margin: 24px 0 8px; }
.app-video-section { margin: 32px 0 8px; }
.video-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-list li { background: white; }
@media (max-width: 640px) { .video-list { grid-template-columns: 1fr; } }
.video-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.video-list li a::before {
  content: '▶';
  color: var(--orange);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.video-list li a:hover { background: var(--cream); color: var(--orange); }
.app-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .app-video-grid { grid-template-columns: 1fr; }
}
.app-video-item-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.app-video-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 10px;
}
.app-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.app-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
