:root {
  --theme-primary-rgb: 1 75 131;
  --theme-accent-rgb: 77 184 255;
  --theme-gold-rgb: 201 168 76;
  --primary: rgb(var(--theme-primary-rgb));
  --primary-light: color-mix(in srgb, white 18%, var(--primary));
  --primary-dark: color-mix(in srgb, black 28%, var(--primary));
  --accent: rgb(var(--theme-accent-rgb));
  --accent2: #c8e8ff;
  --gold: rgb(var(--theme-gold-rgb));
  --white: #ffffff;
  --off-white: #f0f6fc;
  --text-dark: #0d1f2d;
  --text-muted: #4a6b85;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.template-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.template-nav.scrolled {
  background: rgba(1, 75, 131, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 40px rgba(1,75,131,0.25);
}

.nav-logo img {
  height: 54px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: white; }
.nav-cta::after { display: none !important; }

/* ========== HERO ========== */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,47,82,0.85) 0%,
    rgba(1,75,131,0.65) 45%,
    rgba(0,20,50,0.30) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,184,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,184,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

.hero-overlay.is-hidden,
.hero-grid.is-hidden {
  display: none;
}

#hero.has-nav-readable-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 8;
  height: clamp(96px, 12vh, 156px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 14, 24, 0.56) 0%,
    rgba(3, 14, 24, 0.28) 48%,
    rgba(3, 14, 24, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease;
}

@keyframes gridShift {
  to { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,184,255,0.15);
  border: 1px solid rgba(77,184,255,0.35);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-badge span.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title strong {
  font-weight: 700;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(1,75,131,0.5); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 60px;
  display: flex;
  gap: 50px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.3s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== WAVE DIVIDER ========== */
.wave-divider {
  position: relative;
  background: var(--primary);
  height: 80px;
  overflow: hidden;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* ========== MARQUEE STRIP ========== */
.marquee-strip {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(77,184,255,0.2);
  border-bottom: 1px solid rgba(77,184,255,0.2);
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
.template-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  max-width: 100%;
  padding: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--primary-light);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 22px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ========== ABOUT ========== */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 2px;
  display: block;
  box-shadow: 30px 30px 0 var(--accent2);
}

.about-float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: white;
  padding: 28px 36px;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(1,75,131,0.35);
}

.about-float-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-float-card .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.about-text .section-desc { max-width: 100%; }

.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 2px;
  border-left: 3px solid var(--primary);
  transition: transform 0.3s;
}
.about-feature:hover { transform: translateX(6px); }

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== PRODUCTS ========== */
#products {
  background: linear-gradient(160deg, #f0f6fc 0%, #e0effa 100%);
  max-width: 100%;
  padding: 100px 60px;
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(1,75,131,0.06);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(1,75,131,0.18);
}

.product-card-top {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.pc-shampoo { background: linear-gradient(135deg, #e0effa, #c8dff5); }
.pc-cream { background: linear-gradient(135deg, #faf0e0, #f5e0c8); }
.pc-serum { background: linear-gradient(135deg, #e0faf0, #c8f5e0); }
.pc-cleanser { background: linear-gradient(135deg, #f0e0fa, #e0c8f5); }
.pc-toner { background: linear-gradient(135deg, #fafae0, #f5f0c8); }
.pc-mask { background: linear-gradient(135deg, #fae0e0, #f5c8c8); }

.product-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-body {
  padding: 28px;
}

.product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.product-link:hover { gap: 14px; }
.product-link::after { content: '→'; }

/* ========== PROCESS ========== */
#process {
  background: var(--primary);
  max-width: 100%;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 150px solid rgba(77,184,255,0.05);
}

#process::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 100px solid rgba(77,184,255,0.05);
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-inner .section-label { color: var(--accent); }
.process-inner .section-label::before { background: var(--accent); }
.process-inner .section-title { color: white; }
.process-inner .section-desc { color: rgba(255,255,255,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,184,255,0.4), transparent);
}

.process-step {
  padding: 0 30px;
  text-align: center;
  position: relative;
}

.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(77,184,255,0.4);
  background: rgba(77,184,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.process-step:hover .process-num {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: scale(1.1);
}

.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ========== WHY US ========== */
#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  padding: 32px 28px;
  border: 1px solid rgba(1,75,131,0.12);
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before { opacity: 1; }
.why-card:hover .why-icon,
.why-card:hover .why-card-title,
.why-card:hover .why-card-desc { position: relative; z-index: 1; }
.why-card:hover .why-icon { filter: brightness(0) invert(1); }
.why-card:hover .why-card-title { color: white; }
.why-card:hover .why-card-desc { color: rgba(255,255,255,0.75); }

.why-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
  transition: filter 0.3s;
}

.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.why-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

/* ========== CERTIFICATIONS ========== */
#certs {
  background: var(--off-white);
  max-width: 100%;
  padding: 70px 60px;
  text-align: center;
}

.certs-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.certs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.certs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 36px;
  background: white;
  border: 1px solid rgba(1,75,131,0.1);
  border-radius: 2px;
  transition: all 0.3s;
  min-width: 140px;
}

.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1,75,131,0.12);
  border-color: var(--primary);
}

.cert-icon { font-size: 30px; }

.cert-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ========== CONTACT ========== */
#contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0a6bb5 100%);
  max-width: 100%;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: 'ANADOLU';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: 10px;
  user-select: none;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-left .section-label { color: var(--accent); }
.contact-left .section-label::before { background: var(--accent); }
.contact-left .section-title { color: white; }
.contact-left .section-desc { color: rgba(255,255,255,0.65); }

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(77,184,255,0.12);
  border: 1px solid rgba(77,184,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-item-text {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 14px 18px;
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea { height: 120px; resize: none; }

/* ========== FOOTER ========== */
.template-footer {
  background: #050e18;
  padding: 50px 60px 30px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  #about { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  #why { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-content { padding: 0 24px; }
  .about-float-card { display: none; }
  #products { padding: 70px 24px; }
  #process { padding: 70px 24px; }
  #contact { padding: 70px 24px; }
  footer { padding: 40px 24px 24px; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}
/* ========== MVC INTEGRATION LAYER ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

body {
  min-height: 100vh;
}

.container {
  width: min(1400px, calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1201;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 18px 40px rgba(1, 75, 131, 0.16);
}

.skip-link:focus {
  left: 1rem;
}

:focus-visible {
  outline: 2px solid rgba(77, 184, 255, 0.9);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.icon-sm {
  width: 0.95rem;
  height: 0.95rem;
}

.icon-md {
  width: 1.2rem;
  height: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.95rem 1.6rem;
  border-radius: 30px;
  border: 2px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(1, 75, 131, 0.18);
}

.button--primary:hover {
  background: #fff;
}

.button--secondary {
  background: transparent;
  color: var(--primary);
  border-color: rgba(1, 75, 131, 0.24);
}

.button--secondary:hover {
  background: rgba(1, 75, 131, 0.08);
  border-color: var(--primary);
}

.surface-card {
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.1);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(1, 75, 131, 0.08);
}

.section-shell {
  max-width: 100%;
  padding: 0;
}

.section-shell > .container {
  padding-block: 100px;
}

.section-shell--compact > .container {
  padding-block: 72px;
}

.section-shell--toned {
  background: linear-gradient(160deg, #f0f6fc 0%, #e0effa 100%);
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary-light);
}

.section-copy {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.content-body {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.content-body > * + * {
  margin-top: 1rem;
}

.content-body p,
.content-body ul,
.content-body ol,
.content-body blockquote {
  margin: 0;
}

.content-body ul,
.content-body ol {
  padding-left: 1.2rem;
}

.content-body a {
  color: var(--primary);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
  color: var(--text-dark);
}

.alert-banner {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.alert-banner--success {
  background: rgba(9, 118, 63, 0.1);
  border: 1px solid rgba(9, 118, 63, 0.2);
  color: #0f5b38;
}

.alert-banner--error {
  background: rgba(176, 30, 54, 0.08);
  border: 1px solid rgba(176, 30, 54, 0.16);
  color: #8a1c2f;
}

.public-main {
  min-height: 60vh;
}

.public-main:has(#hero) {
  padding-top: 0;
}

.public-navbar-shell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  isolation: isolate;
}

.public-navbar__meta {
  background: rgba(1, 75, 131, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 20;
}

.public-meta-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.public-topbar-html,
.public-meta-actions,
.public-footer__contacts,
.public-footer__mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.public-topbar-html > *,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77, 184, 255, 0.15);
  border: 1px solid rgba(77, 184, 255, 0.35);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.meta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.meta-link:hover {
  color: #fff;
}

.public-language-switch {
  position: relative;
}

.public-language-switch[open] {
  z-index: 30;
}

.public-language-switch__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.public-language-switch__summary::-webkit-details-marker {
  display: none;
}

.public-language-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  min-width: 180px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.1);
  box-shadow: 0 18px 40px rgba(1, 75, 131, 0.14);
  z-index: 35;
}

.public-language-switch__menu a {
  color: var(--text-dark);
  font-size: 13px;
  padding: 8px 10px;
}

.public-language-switch__menu a.is-active,
.public-language-switch__menu a:hover {
  color: var(--primary);
  background: var(--off-white);
}

.public-navbar__main {
  background: rgba(1, 75, 131, 0.9);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.public-navbar-shell.is-scrolled .public-navbar__main {
  background: rgba(1, 75, 131, 0.97);
  box-shadow: 0 4px 40px rgba(1, 75, 131, 0.25);
}

.public-nav-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-lockup__mark {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.brand-lockup__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-lockup__initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.brand-lockup__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-lockup__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.brand-lockup__tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.public-nav__item {
  position: relative;
}

.public-nav__item > summary {
  list-style: none;
}

.public-nav__item > summary::-webkit-details-marker {
  display: none;
}

.public-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.public-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.public-nav__link:hover,
.public-nav__item[open] > .public-nav__link {
  color: var(--accent);
}

.public-nav__link:hover::after,
.public-nav__item[open] > .public-nav__link::after,
.public-nav__link.is-active-section::after {
  width: 100%;
}

.public-nav__link.is-active-section {
  color: var(--accent);
}

.public-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.1);
  box-shadow: 0 18px 40px rgba(1, 75, 131, 0.14);
}

.public-nav__dropdown a {
  color: var(--text-dark);
  font-size: 13px;
  padding: 8px 10px;
}

.public-nav__dropdown a:hover {
  background: var(--off-white);
  color: var(--primary);
}

.public-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.public-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.public-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.public-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.public-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 14, 24, 0.45);
}

.public-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.public-mobile-menu.is-open .public-mobile-menu__panel {
  transform: translateX(0);
}

.public-mobile-menu__header,
.public-mobile-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.public-mobile-menu__header .brand-lockup__name {
  color: var(--primary);
}

.public-mobile-menu__close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(1, 75, 131, 0.16);
  background: var(--off-white);
  color: var(--primary);
  line-height: 1;
  cursor: pointer;
}

.public-mobile-menu__close .icon-md,
.public-mobile-menu__close svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.public-mobile-menu__links,
.public-mobile-menu__children,
.public-mobile-menu__languages {
  display: grid;
  gap: 10px;
}

.public-mobile-menu__links > a,
.public-mobile-menu__children > a,
.public-mobile-menu__group > summary,
.public-mobile-menu__languages a {
  color: var(--text-dark);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(1, 75, 131, 0.08);
}

.public-mobile-menu__group > summary {
  list-style: none;
  cursor: pointer;
}

.public-mobile-menu__group > summary::-webkit-details-marker {
  display: none;
}

.public-mobile-menu__languages a.is-active {
  color: var(--primary);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-copy {
  max-width: 680px;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-title {
  color: #fff;
  margin-bottom: 12px;
}

.hero-title strong,
.hero-title em,
.hero-title b {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 48px;
}

.hero-subtitle :is(p, span, strong, em, a, br) {
  color: inherit;
  font: inherit;
}

.hero-slide__detail {
  max-width: 560px;
  margin-bottom: 34px;
  padding-left: 22px;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
}

.hero-slide__detail :is(p, ul, ol, strong, em, li, a) {
  color: inherit;
}

.hero-slide__detail a {
  color: #fff;
}

.hero-actions {
  margin: 0;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-slider-arrows,
.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-slider-dot {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-slider-dot.is-active {
  background: var(--accent);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.editorial-media {
  min-height: 360px;
  background: linear-gradient(135deg, #e0effa, #c8dff5);
  box-shadow: 30px 30px 0 #c8e8ff;
}

.editorial-body {
  padding: 40px;
}

.editorial-tiles,
.downloads-grid {
  display: grid;
  gap: 18px;
}

.editorial-tile {
  padding: 24px;
  background: var(--off-white);
  border-left: 3px solid var(--primary);
}

.editorial-tile h3,
.download-link__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ---- #certs overrides for Presentations ViewComponent ---- */
#certs .editorial-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

#certs .surface-card.editorial-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 36px;
  border: 1px solid rgba(1, 75, 131, 0.1);
  border-radius: 2px;
  min-width: 140px;
  box-shadow: none;
  transition: all 0.3s;
}

#certs .surface-card.editorial-body:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1, 75, 131, 0.12);
  border-color: var(--primary);
}

#certs .downloads-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

#certs .download-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 36px;
  background: white;
  border: 1px solid rgba(1, 75, 131, 0.1);
  border-radius: 2px;
  min-width: 140px;
  transition: all 0.3s;
}

#certs .download-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1, 75, 131, 0.12);
  border-color: var(--primary);
}

#certs .download-link__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0;
}

#certs .download-link__cta {
  font-size: 10px;
  color: var(--text-muted);
}

.brand-grid,
.news-grid,
.gallery-grid {
  display: grid;
  gap: 30px;
}

.brand-grid,
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.brand-card,
.gallery-card,
.news-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-card:hover,
.gallery-card:hover,
.news-card:hover,
.download-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(1, 75, 131, 0.16);
}

.brand-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.brand-card__head {
  display: grid;
  gap: 18px;
}

.brand-card__logo {
  min-height: 92px;
  background: var(--off-white);
  border: 1px solid rgba(1, 75, 131, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.brand-card__logo img {
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
}

.brand-card__summary,
.gallery-card__caption,
.news-card__summary,
.public-footer__summary,
.page-hero__lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.brand-card__cta,
.news-card__cta,
.download-link__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.gallery-card__media {
  aspect-ratio: 4 / 3;
  background: #e0effa;
  overflow: hidden;
}

.gallery-section-copy {
  max-width: 760px;
  margin: -24px auto 48px;
  text-align: center;
}

.gallery-card__media--video-inline {
  aspect-ratio: 16 / 9;
  background: #050e18;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-video-fixed {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  background: #050e18;
  display: block;
}

.gallery-empty-body {
  text-align: center;
}

.gallery-card__media img,
.gallery-card__media video,
.news-card__media img,
.page-cover img {
  width: 100%;
  height: 100%;
}

.gallery-card__body,
.news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card > a,
a.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__media {
  min-height: 220px;
  background: linear-gradient(135deg, #e0effa, #c8dff5);
  overflow: hidden;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__media img {
  transition: transform 0.45s ease;
}

.news-card__meta,
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
}

.pill-list,
.news-pagination,
.contact-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill,
.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.news-pagination span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.contact-grid,
.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card,
.page-main-card,
.page-aside-card {
  padding: 40px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(1, 75, 131, 0.35);
}

.contact-info-card .section-title,
.contact-info-card .section-copy,
.contact-info-card .content-body,
.contact-info-card a,
.contact-info-card span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-contact-list {
  margin-top: 28px;
  flex-direction: column;
  align-items: stretch;
}

.contact-contact-list a,
.contact-contact-list > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.96);
}

.contact-form,
.form-field {
  display: grid;
  gap: 8px;
}

.contact-form {
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid rgba(1, 75, 131, 0.14);
  padding: 14px 16px;
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(77, 184, 255, 0.12);
}

.download-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--off-white);
  border: 1px solid rgba(1, 75, 131, 0.1);
}

.page-hero {
  max-width: 100%;
  margin: 0;
  padding: 150px 0 64px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'ANADOLU';
  position: absolute;
  right: -10px;
  bottom: -56px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 8px;
  pointer-events: none;
}

.page-hero .page-hero__meta,
.page-hero .page-hero__meta a,
.page-hero .page-hero__title,
.page-hero .page-hero__lead {
  position: relative;
  z-index: 1;
}

.page-hero .page-hero__meta,
.page-hero .page-hero__meta a {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero .page-hero__title,
.page-hero .page-hero__lead {
  color: #fff;
}

.page-main-card,
.page-aside-card {
  background: #fff;
}

.page-cover {
  margin-bottom: 32px;
  overflow: hidden;
}

.public-footer {
  background: #050e18;
  padding: 50px 0 30px;
  color: rgba(255, 255, 255, 0.5);
}

.public-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-lockup--footer .brand-lockup__mark {
  width: 56px;
  height: 56px;
}

.public-footer__brand,
.public-footer__column {
  display: grid;
  gap: 18px;
}

.public-footer__column h2 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.public-footer__links {
  display: grid;
  gap: 10px;
}

.public-footer__links a,
.public-footer__contacts a,
.public-footer__contacts span,
.public-footer__mini-links a,
.public-footer__bottom {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.public-footer__links a:hover,
.public-footer__contacts a:hover,
.public-footer__mini-links a:hover {
  color: var(--accent);
}

.public-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
}

@media (max-width: 1100px) {
  .public-nav {
    display: none;
  }

  .public-mobile-toggle {
    display: inline-flex;
  }

  .editorial-grid,
  .contact-grid,
  .page-shell,
  .public-footer__grid {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .public-navbar__meta {
    display: none;
  }

  .public-main {
    
  }

  .public-nav-row {
    min-height: 76px;
  }

  .section-shell > .container {
    padding-block: 72px;
  }

  .page-hero {
    padding-top: 128px;
  }

  .contact-form__row,
  .public-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1400px, calc(100% - 2rem));
  }

  .brand-grid,
  .news-grid,
  .gallery-grid,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 64px);
  }

  .page-hero,
  .section-shell > .container {
    width: min(1400px, calc(100% - 2rem));
  }

  .contact-info-card,
  .contact-form-card,
  .page-main-card,
  .page-aside-card,
  .editorial-body {
    padding: 28px;
  }
}

/* ========== PUBLIC TEMPLATE 2 OVERRIDES ========== */
html.public-menu-open,
html.gallery-modal-open,
body.public-menu-open,
body.gallery-modal-open {
  overflow: hidden;
}

.home-sections,
.page-sections {
  display: block;
}

.public-main {
  
}

.template-nav.is-scrolled {
  background: rgba(1, 75, 131, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(1, 75, 131, 0.25);
}

.public-site-nav {
  padding: 20px 0;
}

.public-site-nav__inner,
.public-site-nav__actions,
.public-footer__inner,
.public-footer__nav,
.public-footer__contacts {
  display: flex;
  align-items: center;
}

.public-site-nav__inner,
.public-footer__inner {
  justify-content: space-between;
  gap: 28px;
}

.public-site-nav__links {
  flex: 1 1 auto;
  justify-content: center;
}

.public-site-nav__actions {
  gap: 14px;
}

.public-site-nav__logo {
  min-width: 0;
}

.public-site-nav__logo .brand-lockup__name,
.public-footer__brand .brand-lockup__name {
  color: #fff;
}

.public-site-nav__logo .brand-lockup__tag,
.public-footer__brand .brand-lockup__tag {
  color: rgba(255, 255, 255, 0.72);
}

.public-language-switch__summary {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.public-language-switch__menu {
  margin-top: 10px;
}

.public-nav__dropdown {
  z-index: 1202;
}

.public-mobile-menu__footer {
  flex-direction: column;
  align-items: stretch;
}

.public-mobile-menu__meta-link {
  color: var(--text-muted);
  font-size: 14px;
}

.public-mobile-menu__meta-link:hover {
  color: var(--primary);
}

.public-footer {
  padding: 42px 0 26px;
}

.public-footer__inner {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-footer__nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.public-footer__nav a,
.public-footer__contacts a,
.public-footer__contacts span,
.public-footer__mini-links a,
.public-footer__bottom {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.public-footer__nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.public-footer__nav a:hover,
.public-footer__contacts a:hover,
.public-footer__mini-links a:hover {
  color: var(--accent);
}

.public-footer__contacts {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 320px;
}

.brand-lockup--footer .brand-lockup__mark {
  width: 54px;
  height: 54px;
}

#hero-bg-image,
#hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#hero-bg-image {
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}

#hero-bg-image.is-visible,
#hero-bg-video.is-visible {
  opacity: 1;
}

#hero-bg-video {
  object-fit: cover;
}

.content-body--spaced {
  margin-bottom: 1rem;
}

.process-copy {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-copy .section-label {
  justify-content: center;
}

.process-copy .section-desc,
.process-copy .section-copy,
.process-copy .content-body,
.process-step-desc :is(p, ul, ol, li, strong, em, span, a) {
  color: rgba(255, 255, 255, 0.68);
}

.process-step-desc > * + * {
  margin-top: 0.75rem;
}

.process-inner--builder .process-steps--builder {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.process-inner--builder .process-steps--builder::before {
  display: none;
}

.process-inner--builder .process-step--builder {
  padding: 32px;
  text-align: left;
  border: 1px solid rgba(77, 184, 255, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.process-inner--builder .process-step--builder .process-num {
  margin: 0 0 24px;
}

.process-inner--builder .process-step-desc--rich .content-body {
  display: grid;
  gap: 12px;
}

.process-inner--builder .process-step-desc--rich :is(h1, h2, h3, h4, h5, h6, strong, b) {
  color: #fff;
}

@media (max-width: 900px) {
  .process-inner--builder .process-steps--builder {
    grid-template-columns: 1fr;
  }
}

.product-card-top--media {
  font-size: 0;
}

.product-card-top__brand {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.product-card-top__logo {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.product-card-top__initial {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-dark);
}

.category-products {
  padding-bottom: 24px;
}

.contact-info-card__title,
.page-aside-card__title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-copy,
.contact-copy :is(p, ul, ol, li, strong, em, span, a) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form-fields {
  display: grid;
  gap: 20px;
}

.contact-form__submit {
  width: 100%;
  font-size: 13px;
  padding: 18px;
}

.brand-card__logo-image,
.news-card__image,
.page-cover__image,
.gallery-card__image,
.gallery-card__video {
  width: 100%;
  height: 100%;
}

.brand-card__logo-image {
  object-fit: contain;
}

.brand-card__logo--detail {
  width: 100%;
  min-height: 12rem;
}

.page-aside-card__brand-visual {
  min-height: 14rem;
}

.brand-card__logo-image--detail {
  width: 70%;
  height: 70%;
}

.news-grid--stacked {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.news-card--stacked {
  display: block;
}

.news-card__media--compact {
  min-height: 10rem;
}

.news-card__title--compact {
  font-size: 1.65rem;
}

.gallery-card {
  position: relative;
}

.gallery-card__video {
  object-fit: contain;
  background: #fff;
}

.gallery-card__trigger {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 14, 24, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__content {
  max-width: min(1080px, 100%);
  width: 100%;
  display: grid;
  gap: 14px;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  margin: 0 auto;
  object-fit: contain;
}

.gallery-modal__caption {
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.rich-text-content {
  width: 100%;
}

.rich-text-shell .content-body {
  font-size: 16px;
}

.rich-text-shell.section-shell--toned .content-body {
  padding-block: 20px;
}

.maintenance-page {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 20px;
  background:
    linear-gradient(135deg, rgba(244, 248, 251, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 18% 22%, rgba(1, 75, 131, 0.12), transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(33, 126, 181, 0.12), transparent 34%);
}

.maintenance-standalone .maintenance-page {
  min-height: 100vh;
}

.maintenance-page__inner {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.construction-panel {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 74px);
  border: 1px solid rgba(1, 75, 131, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 251, 0.92));
  box-shadow: 0 24px 80px rgba(15, 45, 70, 0.12);
}

.construction-panel__eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.construction-panel h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

.construction-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.construction-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.construction-panel__grid > div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(1, 75, 131, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.construction-panel__grid strong {
  color: var(--theme-primary);
  font-size: 13px;
  letter-spacing: 0;
}

.construction-panel__grid span {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .construction-panel h1 {
    font-size: 48px;
  }

  .construction-panel__grid {
    grid-template-columns: 1fr;
  }

  .construction-panel__grid > div {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .construction-panel {
    padding: 28px;
  }

  .construction-panel h1 {
    font-size: 38px;
  }

  .construction-panel p {
    font-size: 16px;
  }
}

.page-builder-legacy {
  width: 100%;
}

.page-builder-legacy.container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-builder-legacy__header,
.page-builder-legacy .sectionTitle {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.page-builder-legacy .sectionTitle > div {
  display: grid;
  gap: 16px;
}

.page-builder-legacy :is(h1, h2, h3, h4) {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-dark);
  line-height: 1.1;
}

.page-builder-legacy h2 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
}

.page-builder-legacy h3 {
  font-size: 26px;
  font-weight: 600;
}

.page-builder-legacy p,
.page-builder-legacy li,
.page-builder-legacy span {
  color: var(--text-muted);
}

.page-builder-legacy .text-white,
.page-builder-legacy .text-white * {
  color: var(--text-dark) !important;
}

.page-builder-legacy .text-primary {
  color: var(--primary) !important;
}

.page-builder-legacy .text-textMuted {
  color: var(--text-muted) !important;
}

.page-builder-legacy .uppercase {
  text-transform: uppercase;
}

.page-builder-legacy .tracking-widest {
  letter-spacing: 2px;
}

.page-builder-legacy .font-bold {
  font-weight: 700;
}

.page-builder-legacy .font-display {
  font-family: "Cormorant Garamond", serif;
}

.page-builder-legacy .leading-relaxed {
  line-height: 1.8;
}

.page-builder-legacy .grid {
  display: grid;
  gap: 30px;
}

.page-builder-legacy .gap-3 {
  gap: 12px;
}

.page-builder-legacy .gap-8 {
  gap: 32px;
}

.page-builder-legacy .space-y-4 > * + * {
  margin-top: 1rem;
}

.page-builder-legacy .space-y-6 > * + * {
  margin-top: 1.5rem;
}

.page-builder-legacy .mb-4 {
  margin-bottom: 1rem;
}

.page-builder-legacy .mt-4 {
  margin-top: 1rem;
}

.page-builder-legacy .block {
  display: block;
}

.page-builder-legacy .flex {
  display: flex;
}

.page-builder-legacy .items-start {
  align-items: flex-start;
}

.page-builder-legacy .hover\:text-primary:hover {
  color: var(--primary);
}

.page-builder-legacy .transition-colors {
  transition: color 0.25s ease;
}

.page-builder-legacy .md\:grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page-builder-legacy .md\:col-span-5 {
  grid-column: span 5 / span 5;
}

.page-builder-legacy .md\:col-span-6 {
  grid-column: span 6 / span 6;
}

.page-builder-legacy .md\:col-span-7 {
  grid-column: span 7 / span 7;
}

.page-builder-legacy .certs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-builder-legacy .cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.page-builder-legacy .panel,
.page-builder-legacy .card {
  background: #fff;
  border: 1px solid rgba(1, 75, 131, 0.1);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(1, 75, 131, 0.08);
  padding: 28px;
}

.page-builder-legacy .panel__body > * + * {
  margin-top: 1rem;
}

.page-builder-legacy .metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-builder-legacy .metric {
  padding: 24px;
  background: var(--off-white);
  border-left: 3px solid var(--primary);
}

.page-builder-legacy .metric .v,
.page-builder-legacy .metric .v * {
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.1;
}

.page-builder-legacy .metric .k,
.page-builder-legacy .metric .k * {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.page-builder-legacy .bullets {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.page-builder-legacy .btn,
.page-builder-legacy .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.7rem;
  background: var(--primary);
  border: 0;
  border-radius: 4px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-builder-legacy .btn:hover,
.page-builder-legacy .btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(1, 75, 131, 0.24);
}

@media (max-width: 1100px) {
  .public-site-nav__links {
    display: none;
  }

  .public-mobile-toggle {
    display: inline-flex;
  }

  .public-site-nav__actions {
    margin-left: auto;
  }

  .public-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-footer__nav,
  .public-footer__contacts {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .public-main {
    
  }

  .public-site-nav__logo .brand-lockup__tag,
  .public-language-switch {
    display: none;
  }

  .page-builder-legacy .md\:grid-cols-12,
  .page-builder-legacy .metrics {
    grid-template-columns: 1fr;
  }

  .page-builder-legacy .md\:col-span-5,
  .page-builder-legacy .md\:col-span-6,
  .page-builder-legacy .md\:col-span-7 {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .template-nav {
    padding-inline: 0;
  }

  .public-site-nav__logo .brand-lockup__text {
    display: none;
  }

  .public-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-builder-legacy .panel,
  .page-builder-legacy .card,
  .page-builder-legacy .metric {
    padding: 22px;
  }
}

/* ========== TEMPLATE 2 PUBLIC HARDENING / P94 ========== */
body:has(#hero) .public-main,
body.has-public-hero .public-main {
  padding-top: 0;
}

.template-nav.public-site-nav {
  background: rgba(1, 75, 131, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(2, 24, 43, 0.2);
  padding: 14px 0;
}

body:has(#hero) .template-nav.public-site-nav:not(.is-solid):not(.is-scrolled),
body.has-public-hero .template-nav.public-site-nav.has-hero:not(.is-solid):not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(3, 14, 24, 0.78) 0%, rgba(3, 14, 24, 0.44) 52%, rgba(3, 14, 24, 0) 100%);
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
  padding: 20px 0;
}

.template-nav.public-site-nav.is-solid,
.template-nav.public-site-nav.is-scrolled,
body:not(:has(#hero)) .template-nav.public-site-nav {
  background: rgba(1, 75, 131, 0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(2, 24, 43, 0.2);
  padding: 14px 0;
}

.public-site-nav__inner {
  min-height: 68px;
}

.public-site-nav__links {
  gap: 28px;
}

.public-site-nav__actions {
  gap: 12px;
}

.public-site-nav__cta {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(2, 24, 43, 0.18);
}

.public-site-nav__cta:hover {
  box-shadow: 0 16px 34px rgba(2, 24, 43, 0.24);
}

.hero-content {
  max-width: 1520px;
  padding-inline: clamp(1.5rem, 4vw, 4.75rem);
  padding-block: 7rem 4.5rem;
  box-sizing: border-box;
}

.hero-copy {
  max-width: none;
}

.hero-slide__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 5rem);
  min-height: 520px;
}

.hero-slide__layout--with-detail {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: end;
}

.hero-slide__layout--detail-only {
  justify-items: end;
}

.hero-slide__copy {
  max-width: min(680px, 100%);
  display: grid;
  align-content: center;
}

.hero-slide__layout--with-detail .hero-slide__copy {
  align-content: end;
}

.hero-badge {
  margin-bottom: 18px;
  padding: 9px 16px;
  letter-spacing: 0;
}

.hero-title {
  max-width: 13ch;
  margin-bottom: 16px;
  font-size: 4.75rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 58ch;
  margin-bottom: 28px;
  font-size: 1.12rem;
  line-height: 1.58;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  letter-spacing: 0;
}

.hero-slide__detail {
  position: relative;
  align-self: center;
  max-width: 360px;
  margin-bottom: 0;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 0;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(3, 14, 24, 0.42) 0%, rgba(5, 34, 58, 0.28) 100%);
  box-shadow: 0 24px 60px rgba(2, 24, 43, 0.24);
}

.hero-slide__layout--with-detail .hero-slide__detail {
  align-self: end;
  margin-bottom: 12px;
}

.hero-slide__detail :is(p, ul, ol, li, strong, em, span, a) {
  color: rgba(255, 255, 255, 0.82);
}

.hero-slider-controls {
  width: fit-content;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.products-inner,
.process-inner--builder,
.contact-inner--builder {
  max-width: 1520px;
}

.process-inner--builder .process-copy {
  width: 100%;
  max-width: none;
  margin: 0 0 42px;
  text-align: left;
}

.process-inner--builder .process-copy .section-label {
  justify-content: flex-start;
}

.process-inner--builder .process-copy .content-body,
.process-inner--builder .process-copy .section-copy {
  max-width: 76ch;
}

.process-copy__body {
  max-width: none !important;
}

.process-copy__body .process-header {
  display: grid;
  gap: 18px;
  max-width: 76ch;
}

.process-copy__body .process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.process-copy__body .process-steps::before {
  left: 8%;
  right: 8%;
}

.process-copy__body .process-step {
  padding: 0 12px 0 0;
  text-align: left;
}

.process-copy__body .process-step .process-num {
  width: 64px;
  height: 64px;
  margin: 0 0 18px;
  font-size: 26px;
}

.process-copy__body .process-step-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-copy__body .process-step-desc {
  max-width: 24ch;
}

.process-inner--builder .process-steps--builder {
  gap: 22px;
  margin-top: 0;
}

.process-inner--builder .process-step--builder {
  min-height: 100%;
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 20px 44px rgba(2, 24, 43, 0.12);
}

.process-inner--builder .process-step--builder .process-num {
  width: 64px;
  height: 64px;
  margin: 0 0 20px;
  font-size: 26px;
}

.process-inner--builder .process-step-desc--rich .content-body {
  gap: 10px;
}

#contact {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.contact-inner--builder {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(2rem, 4vw, 4.75rem);
  align-items: stretch;
}

.contact-left--builder {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-copy {
  max-width: 62ch;
}

.contact-info {
  margin-top: 8px;
  gap: 18px;
}

.contact-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form--surface {
  display: grid;
  gap: 22px;
  padding: clamp(1.75rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(2, 24, 43, 0.18);
}

.contact-form--surface .content-body--spaced {
  margin-bottom: 0;
}

.contact-form-fields {
  gap: 18px;
}

.contact-form-fields .form-row {
  gap: 16px;
}

.contact-form-fields .form-group {
  margin-bottom: 0;
}

.contact-form-fields .form-group label {
  margin-bottom: 10px;
}

.contact-form-fields .form-group input,
.contact-form-fields .form-group textarea,
.contact-form-fields .form-group select {
  min-height: 56px;
  border-radius: 16px;
}

.contact-form-fields .form-group textarea {
  min-height: 154px;
}

.contact-form__submit {
  margin-top: 8px;
}

.page-hero {
  padding: 138px 0 58px;
}

.page-shell {
  gap: 30px;
}

.page-aside-card__brand-visual {
  min-height: 16rem;
}

@media (max-width: 1100px) {
  .hero-content {
    padding-block: 6.5rem 4rem;
  }

  .hero-slide__layout {
    min-height: 480px;
  }

  .hero-slide__layout--with-detail {
    grid-template-columns: 1fr;
  }

  .hero-slide__detail {
    max-width: 440px;
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding-inline: 1.25rem;
    padding-block: 6rem 4rem;
  }

  .hero-title {
    max-width: none;
    font-size: 3.35rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 48rem;
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-slide__layout {
    min-height: 420px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .contact-inner--builder {
    grid-template-columns: 1fr;
  }

  .process-copy__body .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-copy__body .process-steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .template-nav.public-site-nav,
  .template-nav.public-site-nav.is-solid,
  .template-nav.public-site-nav.is-scrolled,
  body:not(:has(#hero)) .template-nav.public-site-nav {
    padding: 12px 0;
  }

  body:has(#hero) .template-nav.public-site-nav:not(.is-solid):not(.is-scrolled),
  body.has-public-hero .template-nav.public-site-nav.has-hero:not(.is-solid):not(.is-scrolled) {
    padding: 16px 0;
  }

  .hero-content {
    padding-block: 5.5rem 3.75rem;
  }

  .hero-slide__layout {
    min-height: 380px;
  }

  .hero-badge {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 10px;
  }

  .hero-title {
    margin-bottom: 14px;
    font-size: 2.65rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-slider-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-copy__body .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-copy__body .process-step {
    padding: 24px;
    border: 1px solid rgba(77, 184, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
  }

  .process-inner--builder .process-step--builder,
  .contact-form--surface {
    padding: 24px;
  }
}

