/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
  --navy: #06162f;
  --blue: #0b61de;
  --paper: #f8f8f6;
  --line: rgba(6, 22, 47, 0.14);
  --muted: #5f6b7d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================================
   Typography
   =================================== */
.font-display {
  font-family: "Playfair Display", serif;
}

.signature-font {
  font-family: "Caveat", cursive;
}

/* ===================================
   Navigation
   =================================== */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 22, 47, 0.08);
  box-shadow: 0 2px 10px rgba(6, 22, 47, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  margin: 0 auto;
  gap: 32px;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(6, 22, 47, 0.1);
  display: none;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  height: 48px;
  width: auto;
}

.brand-title {
  display: block;
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin: 4px 0 0;
  color: #626a77;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-size: 16px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.language-selector {
  position: relative;
  z-index: 10002;
  display: inline-flex;
  flex-shrink: 0;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(6, 22, 47, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 22, 47, 0.08);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.language-trigger:hover,
.language-trigger:focus {
  color: var(--blue);
  border-color: rgba(11, 97, 222, 0.35);
  box-shadow: 0 10px 26px rgba(11, 97, 222, 0.14);
}

.language-trigger:focus {
  outline: 2px solid rgba(11, 97, 222, 0.35);
  outline-offset: 2px;
}

.language-flag {
  font-size: 18px;
  line-height: 1;
}

.language-code {
  font-size: 13px;
  font-weight: 800;
}

.language-chevron {
  margin-left: 2px;
  transition: transform 160ms ease;
}

.language-chevron.open {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(6, 22, 47, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 22, 47, 0.16);
}

.language-dropdown button {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.language-dropdown button:hover,
.language-dropdown button:focus,
.language-dropdown button.selected {
  color: var(--blue);
  background: #eef5ff;
  outline: none;
}

.language-name {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--navy);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 10000;
}

.burger-menu span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   Mobile Menu (Vue)
   =================================== */

/* Hamburger Button */
.hamburger-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #06162f;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .hamburger-button {
    display: flex;
  }
}

/* Hamburger Lines */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #06162f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-line.active:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-line.active:nth-child(2) {
  opacity: 0;
}

.hamburger-line.active:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 22, 47, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
}

/* Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(6, 22, 47, 0.15);
}

/* Close Button */
.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  color: #06162f;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: #f1f5f9;
  border-color: #06162f;
}

.close-button:focus {
  outline: 2px solid #0b61de;
  outline-offset: 2px;
}

/* Menu Title */
.mobile-menu-title {
  margin: 60px 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0b61de;
}

/* Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #06162f;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: #f1f5f9;
  color: #0b61de;
}

.mobile-nav-link:focus {
  outline: 2px solid #0b61de;
  outline-offset: -2px;
}

.mobile-nav-link.active {
  color: #0b61de;
  background: #eff6ff;
}

.link-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover .link-arrow,
.mobile-nav-link:focus .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-language-selector {
  padding: 0 16px;
  margin-top: 12px;
}

.language-selector-mobile {
  display: block;
  width: 100%;
}

.language-selector-mobile .language-trigger {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  justify-content: flex-start;
  border-color: #dbe4ef;
  box-shadow: none;
}

.language-selector-mobile .language-chevron {
  margin-left: auto;
}

.language-selector-mobile .language-dropdown {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: none;
}

/* CTA Button */
.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 24px;
  background: #06162f;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-cta-button:hover,
.mobile-cta-button:focus {
  background: #0a2350;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 22, 47, 0.2);
}

.mobile-cta-button:focus {
  outline: 2px solid #0b61de;
  outline-offset: 2px;
}

/* Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-enter-from {
  transform: translateX(100%);
  opacity: 0;
}

.slide-leave-to {
  transform: translateX(100%);
  opacity: 0;
}

/* ===================================
   Buttons
   =================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  border-radius: 6px;
  padding: 0 25px;
  border: 1px solid var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(6, 22, 47, 0.18);
}

.button-primary:hover {
  background: #0a2350;
  border-color: #0a2350;
}

.nav-cta {
  min-width: 258px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button-secondary:hover {
  background: #ffffff;
}

/* ===================================
   Glass Effect
   =================================== */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(6, 22, 47, 0.08);
  box-shadow: 0 18px 50px rgba(6, 22, 47, 0.08);
}

/* ===================================
   Trust Logos
   =================================== */
.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 34px 42px;
}

.trust-logo {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.trust-logo img {
  display: block;
  width: auto;
  max-width: 158px;
  max-height: 54px;
  object-fit: contain;
}

.trust-logo-square img {
  max-width: 70px;
  max-height: 70px;
}

/* ===================================
   Hero Section (index.html)
   =================================== */
.hero-bg {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding-top: 24px;
  background:
    radial-gradient(circle at 72% 42%, rgba(190, 202, 216, 0.54), rgba(255, 255, 255, 0) 29%),
    linear-gradient(112deg, #ffffff 0%, #fbfbfa 44%, #edf1f5 100%);
  letter-spacing: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.36) 68%, rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(circle at 42% 58%, rgba(11, 97, 222, 0.08), transparent 22%);
  pointer-events: none;
}

.world-map {
  position: absolute;
  top: 124px;
  left: 43%;
  z-index: 1;
  width: 390px;
  max-width: 32vw;
  color: #7d8998;
  opacity: 0.23;
  pointer-events: none;
}

.city-skyline {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 58vw;
  height: 56vh;
  min-height: 460px;
  color: #77869a;
  opacity: 0.36;
  pointer-events: none;
}

.network-web {
  position: absolute;
  right: -3vw;
  bottom: 0;
  z-index: 2;
  width: 60vw;
  height: 68vh;
  min-height: 560px;
  opacity: 0.72;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 104px 48px 22px;
}

.hero-layout {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.93fr) minmax(460px, 0.86fr);
  align-items: center;
  min-height: 0;
  padding-top: 6px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 710px;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 74px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--blue);
}

.hero-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 5.35vw, 80px);
  font-weight: 800;
  line-height: 0.91;
  color: var(--navy);
  max-width: 720px; /* Increased from implicit 650px to accommodate French text */
}

.hero-title em {
  display: inline-block;
  color: var(--blue);
  font-style: italic;
  font-weight: 700;
}

.hero-intro {
  max-width: 700px;
  margin-top: 20px;
  color: #111c31;
  font-size: 18px;
  line-height: 1.35;
}

.hero-intro p {
  margin: 0;
}

.hero-intro p + p {
  margin-top: 26px;
}

.expertise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 610px);
  margin-top: 30px;
}

.feature {
  position: relative;
  padding: 0 20px 0 0;
}

.feature + .feature {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.feature-icon {
  display: inline-flex;
  width: 27px;
  height: 27px;
  margin-bottom: 12px;
  color: var(--blue);
}

.feature h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.feature p {
  margin: 10px 0 0;
  color: #18233a;
  font-size: 11px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 26px;
}

@media (min-width: 1081px) {
  html[lang="fr"] .hero-title {
    max-width: 760px;
    font-size: clamp(68px, 5.08vw, 76px);
    line-height: 0.92;
  }
}

.hero-art {
  position: absolute;
  inset: 130px 0 0 auto;
  z-index: 3;
  width: 58vw;
  max-width: 880px;
  pointer-events: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  right: -7vw;
  top: 3vh;
  z-index: 1;
  width: 52vw;
  height: 62vh;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 38%, rgba(207, 218, 230, 0.58), rgba(236, 241, 245, 0.28) 38%, rgba(255, 255, 255, 0) 70%);
}

.signature-note {
  position: absolute;
  top: -34px;
  right: -260px;
  z-index: 5;
  color: var(--blue);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.92;
  transform: rotate(-5deg);
}

.signature-note span {
  position: relative;
  display: inline-block;
  margin-left: 18px;
}

.signature-note span::after {
  content: "";
  position: absolute;
  left: 1px;
  right: -24px;
  bottom: -11px;
  height: 11px;
  border-bottom: 3px solid var(--blue);
  border-radius: 100%;
  transform: rotate(-3deg);
}

.portrait-wrap {
  position: absolute;
  right: -520px;
  bottom: -145px;
  z-index: 4;
  width: 1450px;
  max-width: none;
}

.portrait-wrap img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

/* ===================================
   Podcast Styles
   =================================== */
.play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: #0952b8;
}

/* ===================================
   Article/Detail Pages
   =================================== */
.reading-progress {
  position: fixed;
  top: 72px;
  left: 0;
  height: 4px;
  background: var(--blue);
  z-index: 9998;
  transition: width 50ms ease-out;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #374151;
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #374151;
}

.prose ul li {
  list-style-type: disc;
}

.prose ol li {
  list-style-type: decimal;
}

.prose blockquote {
  border-left: 4px solid var(--blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
}

/* ===================================
   Use Case & Stats
   =================================== */
.stat-card,
.stat-box {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(6, 22, 47, 0.08);
}

/* ===================================
   Consultation Page
   =================================== */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid transparent;
  transition: all 200ms ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 40px rgba(11, 97, 222, 0.15);
  transform: translateY(-4px);
}

.service-card.selected {
  border-color: var(--blue);
  background: linear-gradient(to bottom, #eff6ff, white);
}

.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 200ms ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--blue);
}

.input-field::placeholder {
  color: #94a3b8;
}

select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 768px) {
  .trust-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .trust-logos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1600px) {
  .signature-note {
    right: -72px;
  }

  .portrait-wrap {
    right: -410px;
    bottom: -122px;
    width: 1280px;
  }
}

@media (max-width: 1320px) {
  .hero-title {
    font-size: 74px;
  }

  .hero-intro {
    font-size: 18px;
  }

  .nav-links {
    gap: 28px;
  }

  .portrait-wrap {
    right: -390px;
    bottom: -136px;
    width: 1240px;
  }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .burger-menu {
    display: flex !important;
  }

  .hero-bg {
    height: auto;
    min-height: 100svh;
  }

  .hero-shell {
    height: auto;
    padding: 104px 28px 48px;
  }

  .hero-nav {
    padding: 16px 28px;
  }

  .brand {
    min-width: 0;
  }

  .hero-layout {
    display: block;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    height: 690px;
    margin-top: 18px;
  }

  .signature-note {
    right: 52px;
    top: 18px;
  }

  .portrait-wrap {
    right: 50%;
    bottom: -92px;
    width: 1060px;
    transform: translateX(55%);
  }

  .city-skyline,
  .network-web {
    width: 100vw;
    opacity: 0.28;
  }

  .world-map {
    left: 44%;
    max-width: 44vw;
  }
}

@media (max-width: 720px) {
  .hero-shell {
    padding: 104px 20px 38px;
  }

  .hero-nav {
    padding: 16px 20px;
  }

  .brand-title {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .brand img {
    height: 36px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .expertise-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .feature:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    height: 560px;
  }

  .signature-note {
    right: 18px;
    font-size: 32px;
  }

  .portrait-wrap {
    bottom: -74px;
    width: 900px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 45px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .expertise-strip {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature + .feature,
  .feature:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-art {
    height: 470px;
  }

  .portrait-wrap {
    width: 760px;
  }
}
