/* Mega Wise Co — Corporate Site Styles */

:root {
  --color-primary: #002345;
  --color-primary-dark: #001528;
  --color-primary-mid: #003a6e;
  --color-primary-rgb: 0, 35, 69;
  --color-accent: #c89127;
  --color-accent-light: #dbaa42;
  --color-accent-dark: #9e7218;
  --color-accent-rgb: 200, 145, 39;
  --color-text: #0a2847;
  --color-text-muted: #526880;
  --color-border: #d8e0e8;
  --color-bg: #ffffff;
  --color-bg-alt: #f3f6fa;
  --color-bg-warm: #faf7f2;
  --color-footer: #001528;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1140px;
  --header-height: 88px;
  --logo-height: 106px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 12px rgba(0, 35, 69, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 35, 69, 0.09);
  --shadow-lg: 0 16px 48px rgba(0, 35, 69, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(var(--color-accent-rgb), 0.25);
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled .header-main {
  box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.12);
}

.header-top {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-mid) 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.25);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding: 0.4rem 0;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  transition: color var(--transition);
}

.header-top-link:hover {
  color: var(--color-accent-light);
}

.header-top-cta {
  color: var(--color-accent-light);
  font-weight: 600;
}

.header-top-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.header-top-offices strong {
  color: var(--color-accent-light);
  font-weight: 600;
}

.header-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.header-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light), var(--color-accent), var(--color-accent-dark));
  opacity: 0.9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo img {
  display: block;
  height: var(--logo-height);
  width: auto;
  max-width: min(320px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.main-nav a:hover {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.06);
}

.main-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-mid), var(--color-primary));
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.25);
}

.nav-cta {
  font-size: 0.88rem !important;
  padding: 0.62rem 1.25rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 5rem 0 4.5rem;
}

.hero-with-image {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--color-primary-dark);
  color: #fff;
  overflow: hidden;
}

.hero-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.92) 0%, rgba(var(--color-primary-rgb), 0.75) 55%, rgba(var(--color-primary-rgb), 0.4) 100%);
  z-index: 1;
}

.hero-with-image .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-with-image .container {
  position: relative;
  z-index: 2;
}

.hero-with-image h1 {
  color: #fff;
}

.hero-with-image .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-with-image .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* Home hero carousel */
.hero-carousel {
  position: relative;
  min-height: 88vh;
  max-height: 780px;
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(var(--color-primary-rgb), 0.94) 0%,
    rgba(var(--color-primary-rgb), 0.85) 38%,
    rgba(var(--color-primary-rgb), 0.5) 68%,
    rgba(var(--color-primary-rgb), 0.28) 100%
  );
  pointer-events: none;
}

.hero-carousel-content {
  position: relative;
  z-index: 3;
  padding: 7rem 1.5rem 5.5rem;
  width: 100%;
  max-width: var(--max-width);
}

.hero-brand h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-text-track {
  position: relative;
  min-height: 7.5rem;
  margin-bottom: 2rem;
}

.hero-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide-text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-carousel .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.85rem;
}

.hero-carousel .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-carousel .hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-carousel .hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev { left: 1.25rem; }
.hero-nav-next { right: 1.25rem; }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
}

.hero-dot.is-active {
  width: 32px;
  border-radius: 5px;
  background: var(--color-accent);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.12);
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 45%, var(--color-accent-dark) 100%);
  color: #fff;
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-color: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 22px rgba(var(--color-accent-rgb), 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(var(--color-primary-rgb), 0.35);
}

.btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-with-image .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-with-image .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  color: #fff;
  padding: 2.75rem 0;
  border-top: 3px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-bar .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-accent-light);
  letter-spacing: 0.01em;
}

.stat-item span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%);
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.05);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.1rem;
}

.section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 4px;
  background: linear-gradient(180deg, var(--color-accent-dark), var(--color-accent-light));
  border-radius: 2px;
}

.section-header .divider,
.page-hero .divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin-top: 0.75rem;
  transform-origin: left;
}

.section-header p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  max-width: 720px;
}

.section p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 800px;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Two column layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-grid img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition);
}

.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-with-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-with-image .card-body {
  padding: 1.5rem;
}

.section-alt .card {
  background: var(--color-bg);
}

.card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.image-card:hover {
  box-shadow: 0 8px 28px rgba(var(--color-primary-rgb), 0.12);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.card-link:hover {
  color: var(--color-accent-dark);
}

/* Feature List */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 2rem;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.feature-list .check {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.bullet-list {
  list-style: none;
  margin-top: 1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.numbered-list {
  margin-top: 1rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.numbered-list li {
  margin-bottom: 0.75rem;
}

/* Strengths tags */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.strength-tag {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
}

.section-alt .strength-tag {
  background: var(--color-bg);
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.image-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition);
}

.image-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-card .caption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gallery-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #fdf8ef;
  border: 1px solid rgba(var(--color-accent-rgb), 0.35);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-item h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  border-top: 3px solid var(--color-accent);
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.cta-section .btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: #fff;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
}

.contact-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-card .location {
  font-weight: 600;
  color: var(--color-text);
  margin-top: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info dl {
  display: grid;
  gap: 1.25rem;
}

.contact-info dt {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-info dd {
  color: var(--color-text-muted);
  margin-left: 0;
}

.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.22);
}

/* Page hero */
.page-hero {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
}

.page-hero p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  max-width: 720px;
}

/* Inner page hero with background image */
.page-hero-image {
  position: relative;
  padding: 5rem 0 4.25rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  border-bottom: none;
  overflow: hidden;
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(var(--color-primary-rgb), 0.94) 0%,
    rgba(var(--color-primary-rgb), 0.86) 42%,
    rgba(var(--color-primary-rgb), 0.52) 100%
  );
  z-index: 1;
}

.page-hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(var(--color-accent-rgb), 0.35) 70%, transparent 100%);
  z-index: 2;
}

.page-hero-image .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-image .container {
  position: relative;
  z-index: 2;
}

.page-hero-image h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-hero-image .page-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

.page-hero-image .divider {
  background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent));
  box-shadow: 0 0 12px rgba(var(--color-accent-rgb), 0.45);
}

/* Breadcrumbs */
.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
}

.breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0.6rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.45;
  flex-shrink: 0;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

.page-hero-image .breadcrumb li {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero-image .breadcrumb li + li::before {
  border-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.page-hero-image .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero-image .breadcrumb a:hover {
  color: #fff;
}

.page-hero-image .breadcrumb li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.98);
}

/* Legal pages */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-footer) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 0 1.75rem;
  margin-top: auto;
  position: relative;
}

.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light), var(--color-accent), var(--color-accent-dark));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 3.5rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block {
  padding-right: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.35rem;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo img {
  height: 86px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-offices span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-offices strong {
  color: var(--color-accent-light);
  font-weight: 600;
  margin-right: 0.35rem;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.footer-col p,
.footer-col li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.15rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a:hover {
  color: var(--color-accent-light);
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 2rem;
  }

  .footer-brand-block {
    padding-right: 0;
    text-align: center;
  }

  .footer-about {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-offices {
    align-items: center;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer-links-wrap {
    grid-template-columns: 1fr;
  }
}

/* Layout */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.text-link {
  font-weight: 600;
  color: var(--color-accent);
  position: relative;
  transition: color var(--transition);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 100%;
}

/* ── Entrance Animations ── */
@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBgZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@keyframes heroOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dividerGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerSlideDown 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-with-image .hero-bg,
  .page-hero-image .page-hero-bg {
    animation: heroBgZoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-with-image::before,
  .page-hero-image::before {
    animation: heroOverlayIn 1s ease both;
  }

  .hero-carousel-overlay {
    animation: heroOverlayIn 1s ease both;
  }

  .reveal {
    opacity: 0;
    will-change: opacity, transform;
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-up    { transform: translateY(36px); }
  .reveal-down  { transform: translateY(-24px); }
  .reveal-left  { transform: translateX(-36px); }
  .reveal-right { transform: translateX(36px); }
  .reveal-scale { transform: scale(0.9); }
  .reveal-fade  { transform: none; }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .section-header.is-visible .divider,
  .divider.reveal.is-visible {
    animation: dividerGrow 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  }

  .btn {
    transition:
      background var(--transition),
      color var(--transition),
      border-color var(--transition),
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.2);
  }

  .btn:active {
    transform: translateY(0);
  }

  .strength-tag {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .strength-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.2);
    border-color: var(--color-accent);
  }

  .value-item,
  .process-step,
  .contact-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }

  .value-item:hover,
  .process-step:hover,
  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .site-header,
  .hero-with-image .hero-bg,
  .hero-with-image::before,
  .page-hero-image .page-hero-bg,
  .page-hero-image::before,
  .hero-carousel-overlay {
    animation: none !important;
  }

  .hero-slide img {
    transform: scale(1) !important;
    transition: none !important;
  }

  .hero-slide {
    transition: none !important;
  }

  .hero-progress {
    display: none;
  }
}

/* Cookie consent */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(var(--color-primary-rgb), 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cookie-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.25rem 1.25rem;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-closing {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-accent {
  max-width: var(--max-width);
  margin: 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light), var(--color-accent));
  border-radius: 3px 3px 0 0;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 -8px 48px rgba(var(--color-primary-rgb), 0.18);
  overflow: hidden;
}

.cookie-banner-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
}

.cookie-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fdf8ef, var(--color-bg-alt));
  border: 1px solid rgba(var(--color-accent-rgb), 0.25);
  border-radius: 50%;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cookie-banner-text h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.cookie-banner-text a {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  font-size: 0.84rem;
  padding: 0.62rem 1.15rem;
  white-space: nowrap;
}

.cookie-banner-actions .cookie-btn-reject,
.cookie-banner-actions .cookie-btn-settings,
.cookie-settings-actions .cookie-btn-cancel {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.cookie-banner-actions .cookie-btn-reject:hover,
.cookie-banner-actions .cookie-btn-settings:hover,
.cookie-settings-actions .cookie-btn-cancel:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.cookie-settings-panel {
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%);
}

.cookie-settings-panel h3 {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin: 1.25rem 0 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.cookie-option-info span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-dark);
  background: #fdf8ef;
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #c5ced8;
  border-radius: 26px;
  transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
}

.cookie-fab {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-accent-rgb), 0.4);
  background: var(--color-primary);
  color: var(--color-accent-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, background var(--transition);
}

.cookie-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-fab:hover {
  background: var(--color-primary-mid);
  color: #fff;
}

@media (max-width: 900px) {
  .cookie-banner-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-banner-icon {
    margin: 0 auto;
  }

  .cookie-banner-actions {
    justify-content: center;
  }

  .cookie-settings-actions {
    flex-direction: column;
  }

  .cookie-settings-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    padding: 0.5rem 0.5rem 0.75rem;
  }

  .cookie-banner-main {
    padding: 1.15rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .cookie-fab {
    bottom: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }
}

/* ── Premium UI Components ── */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-dark);
  margin-bottom: 0.85rem;
}

.section-navy {
  background: linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-mid) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(var(--color-accent-rgb), 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(var(--color-accent-rgb), 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.section-navy .container {
  position: relative;
  z-index: 1;
}

.section-header--light h2,
.section-navy .section-header h2 {
  color: #fff;
}

.section-header--light p,
.section-navy .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-strip {
  background: var(--color-accent);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-strip .container {
  overflow: hidden;
  max-width: 100%;
  padding: 0;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
  animation: brandMarquee 28s linear infinite;
}

.brand-strip span:nth-child(even) {
  opacity: 0.55;
}

@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.identity-banner {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.15rem 0;
  border-bottom: 2px solid var(--color-accent);
  text-align: center;
}

.identity-banner p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.identity-banner strong {
  color: var(--color-accent-light);
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.why-choose-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
}

.why-choose-item h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.why-choose-item p {
  font-size: 0.88rem;
  margin: 0;
  max-width: none;
  color: var(--color-text-muted);
}

.mosaic-item img[src*="pomegronate"],
.product-thumb img[src*="pomegronate"],
.gallery-mosaic img[src*="pomegronate"] {
  image-orientation: from-image;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.mosaic-item:has(img[src*="pomegronate"]) {
  background: #fff;
}

.split-offset-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.split-offset-content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.split-offset-visual {
  position: relative;
}

.split-offset-visual img {
  width: 100%;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.visual-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 55%;
  height: 55%;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg) 0 0 0;
  z-index: -1;
}

.visual-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(var(--color-accent-rgb), 0.4);
}

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:nth-child(even) .service-row-media {
  order: 2;
}

.service-row:nth-child(even) .service-row-body {
  order: 1;
}

.service-row-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-row-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-row:hover .service-row-media img {
  transform: scale(1.04);
}

.service-row-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(var(--color-primary-rgb), 0.55) 100%);
  pointer-events: none;
}

.service-row-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.45);
}

.service-row-body h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-row-body p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  max-width: none;
}

.service-row-body .text-link {
  color: var(--color-accent-light);
}

.feature-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-panel {
  position: relative;
  padding: 2rem 1.75rem 2rem 5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--color-accent-rgb), 0.35);
}

.feature-panel-icon {
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-mid));
  color: var(--color-accent-light);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.25);
}

.feature-panel h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-panel p {
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-mid), var(--color-accent));
  border-radius: 2px;
  z-index: 0;
}

.timeline-step {
  position: relative;
  text-align: center;
  padding: 0 0.75rem;
  z-index: 1;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  border: 3px solid var(--color-bg-alt);
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.35);
}

.timeline-step h3 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.timeline-step p {
  font-size: 0.82rem;
  margin: 0 auto;
  max-width: 160px;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 180px;
  gap: 1rem;
  margin-top: 2rem;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.bento-item:hover img {
  transform: scale(1.06);
}

.bento-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(var(--color-primary-rgb), 0.88));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.bento-item--hero {
  grid-column: span 7;
  grid-row: span 2;
}

.bento-item--tall {
  grid-column: span 3;
  grid-row: span 2;
}

.bento-item--wide {
  grid-column: span 5;
}

.bento-item--sm {
  grid-column: span 2;
}

.trust-band {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  padding: 2rem 0;
}

.trust-band-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.cta-section--rich {
  position: relative;
  overflow: hidden;
}

.cta-section--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 35%);
  pointer-events: none;
}

.cta-section--rich .container {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-section .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.cta-section .btn-outline-light:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.stat-item {
  position: relative;
  padding: 0.5rem 1rem;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--color-accent-light);
}

/* License showcase */
.section-licenses {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.15);
}

.license-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.license-intro h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.license-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.license-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

.license-tag--gold {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent-dark));
}

.license-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.license-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.license-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.license-card-frame {
  position: relative;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-bottom: 3px solid var(--color-accent);
}

.license-card-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.35);
  border-radius: 4px;
  pointer-events: none;
}

.license-card-frame img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  object-fit: contain;
  background: #fff;
}

.license-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.license-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.65rem;
}

.license-card-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ea86a;
  box-shadow: 0 0 0 3px rgba(46, 168, 106, 0.2);
}

.license-card-body h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.license-card-body p {
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}

.license-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.license-trust-bar .trust-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.license-trust-bar .trust-point svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.office-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.office-panel {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.office-panel-flag {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-mid));
  color: var(--color-accent-light);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 14px;
}

.office-panel h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.office-panel p {
  margin: 0;
  max-width: none;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.product-showcase-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.product-showcase-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(var(--color-primary-rgb), 0.9));
  color: #fff;
  font-weight: 600;
}

.product-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-thumb {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-thumb:hover {
  border-color: rgba(var(--color-accent-rgb), 0.4);
  box-shadow: var(--shadow-sm);
}

.product-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-thumb span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Product category layouts */
.product-category-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.product-category-copy p + p {
  margin-top: 1rem;
}

.product-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-image-pair--single {
  grid-template-columns: 1fr;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.product-pair-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.product-pair-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

.product-pair-item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.product-image-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-image-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-row-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.product-row-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-row-item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
}

.product-image-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.product-image-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-image-grid--no-captions .product-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-image-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-grid-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-grid-item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
}

.export-doc-thumb {
  max-width: 200px;
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-bg);
}

.export-doc-thumb img {
  width: 100%;
  display: block;
}

.export-doc-thumb figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.gallery-mosaic {
  columns: 3;
  column-gap: 1rem;
  margin-top: 2rem;
}

.gallery-mosaic .mosaic-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-mosaic .mosaic-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-mosaic img {
  width: 100%;
  display: block;
}

.gallery-mosaic figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
}

.gallery-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent-dark));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(var(--color-accent-rgb), 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .timeline::before {
    display: none;
  }

  .bento-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }

  .bento-item--hero { grid-column: span 6; grid-row: span 1; min-height: 260px; }
  .bento-item--tall { grid-column: span 3; grid-row: span 1; min-height: 200px; }
  .bento-item--wide { grid-column: span 3; min-height: 200px; }
  .bento-item--sm { grid-column: span 3; min-height: 180px; }

  .feature-panels {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-row:nth-child(even) .service-row-media,
  .service-row:nth-child(even) .service-row-body {
    order: unset;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .split-offset-grid,
  .license-intro,
  .license-showcase,
  .office-panels,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-category-block {
    grid-template-columns: 1fr;
  }

  .product-image-row--3,
  .product-image-grid--4,
  .product-image-grid--3 {
    grid-template-columns: 1fr 1fr;
  }

  .product-image-pair {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .product-image-row--3,
  .product-image-grid--4,
  .product-image-grid--3,
  .product-image-pair {
    grid-template-columns: 1fr;
  }

  .feature-panels {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    columns: 1;
  }

  .visual-badge {
    left: 0.5rem;
    bottom: -0.5rem;
  }

  .nav-cta {
    display: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-main {
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.5rem 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
  }

  .main-nav li {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    white-space: normal;
    border-radius: var(--radius);
  }

  .main-nav .nav-cta {
    display: block;
    text-align: center;
    width: 100%;
  }

  :root {
    --header-height: 88px;
    --logo-height: 86px;
  }

  .header-inner {
    padding: 0.6rem 0;
    min-height: 88px;
  }

  .logo img {
    max-width: min(240px, 62vw);
  }

  .hero,
  .hero-with-image,
  .page-hero-image {
    padding: 3.5rem 0 3rem;
    min-height: 240px;
  }

  .hero-carousel {
    min-height: 75vh;
    max-height: none;
  }

  .hero-carousel-content {
    padding: 6rem 1.5rem 5rem;
  }

  .hero-text-track {
    min-height: 9rem;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
  }

  .hero-nav-prev { left: 0.75rem; }
  .hero-nav-next { right: 0.75rem; }

  .hero-dots {
    bottom: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }
}
