/* ═══════════════════════════════════════════════════
   TercumeBurada.com — Frontend Stylesheet
   Ivory Prestige + Corporate Luxury Design System
   ═══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  /* Surfaces */
  --surface: #fbf9f4;
  --surface-low: #f5f3ee;
  --surface-high: #eae8e3;
  --surface-highest: #e4e2dd;
  --surface-lowest: #ffffff;
  --surface-container: #f0eee9;

  /* Brand */
  --primary: #436654;
  --primary-container: #7a9e8a;
  --primary-light: #9dbfad;
  --primary-dark: #2c4d3d;
  --tertiary: #8e4d32;
  --tertiary-container: #d08263;
  --tertiary-light: #ffb599;

  /* Text */
  --on-surface: #1b1c19;
  --on-surface-variant: #414844;
  --outline: #727973;
  --outline-variant: #c1c8c2;
  --muted: #6b7a82;

  /* Semantic */
  --error: #ba1a1a;
  --success: #155724;
  --warning: #856404;
  --info: #004085;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(27,28,25,.06);
  --sh-md: 0 4px 16px rgba(27,28,25,.08);
  --sh-lg: 0 12px 40px rgba(27,28,25,.1);
  --sh-xl: 0 24px 60px rgba(27,28,25,.12);

  /* Motion */
  --tr: .26s cubic-bezier(.4,0,.2,1);
  --tr-slow: .4s cubic-bezier(.4,0,.2,1);

  /* Spacing */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Radius */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-full: 50px;
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(122,158,138,.3);
  color: var(--on-surface);
}

a { color: inherit; text-decoration: none; transition: color var(--tr); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif', 'Cormorant Garamond', serif;
  color: var(--on-surface);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--on-surface-variant); font-size: 0.95rem; line-height: 1.7; }

.label-xs {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

/* ─── Layout Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section {
  padding: var(--sp-4xl) 0;
}

/* ─── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251,249,244,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193,200,194,.15);
  transition: box-shadow var(--tr);
}

.nav.scrolled {
  box-shadow: var(--sh-md);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.nav-brand {
  font-family: 'Noto Serif', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  list-style: none;
}

.nav-links > li > a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

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

.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: all var(--tr);
}

.lang-btn:hover { color: var(--primary); background: rgba(67,102,84,.05); }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  transition: all var(--tr);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(67,102,84,.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(67,102,84,.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface-highest);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--surface-high);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--on-surface);
  border: 1.5px solid var(--outline-variant);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-terra {
  background: var(--tertiary);
  color: #fff;
}

.btn-terra:hover { background: #7a3f28; }

.btn-wp {
  background: #25D366;
  color: #fff;
}

.btn-wp:hover { background: #1fb855; }

.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--r-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── Hero Section ──────────────────────────────── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: var(--sp-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  max-width: 520px;
  margin: var(--sp-lg) 0 var(--sp-xl);
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Noto Serif', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: var(--surface-low);
  border-radius: var(--r-sm);
  transform: translate(16px, 16px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-sm);
  filter: grayscale(0.15) contrast(1.05);
}

.hero-quote {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--surface-lowest);
  padding: var(--sp-lg);
  box-shadow: var(--sh-lg);
  max-width: 280px;
  z-index: 2;
}

.hero-quote p {
  font-family: 'Noto Serif', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--on-surface);
  margin-bottom: var(--sp-sm);
}

.hero-quote cite {
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

/* ─── Stats Bar ─────────────────────────────────── */
.stats-bar {
  background: var(--surface-low);
  padding: var(--sp-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-top: 6px;
}

/* ─── Guarantee Banner ──────────────────────────── */
.guarantee {
  background: var(--tertiary);
  color: #fff;
  padding: var(--sp-xl) 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.guarantee h3 {
  color: #fff;
  font-size: 1.5rem;
}

.guarantee p {
  color: rgba(255,255,255,.8);
  max-width: 500px;
}

/* ─── Services Grid ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface-highest);
}

.service-card {
  background: var(--surface);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: all var(--tr-slow);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--tr-slow);
}

.service-card:hover::before { opacity: 0.04; }

.service-card:hover { background: var(--surface-container); }

.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--sp-lg);
  transition: transform var(--tr);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-sm);
}

.service-card p {
  font-size: 0.85rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--tr-slow);
}

.service-card:hover p {
  opacity: 1;
  max-height: 100px;
}

/* ─── Why Us Section ────────────────────────────── */
.why-section {
  background: var(--on-surface);
  color: #fff;
  padding: var(--sp-4xl) 0;
  overflow: hidden;
}

.why-section .section-tag { color: var(--primary-container); }
.why-section h2 { color: var(--surface); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.why-section .section-sub { color: var(--outline-variant); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-2xl);
  border-radius: var(--r-sm);
  transition: all var(--tr);
}

.why-card:hover {
  border-color: var(--primary);
  background: rgba(255,255,255,.06);
}

.why-card .wi {
  font-size: 2rem;
  color: var(--primary-container);
  margin-bottom: var(--sp-lg);
  display: block;
  transition: transform var(--tr);
}

.why-card:hover .wi { transform: scale(1.15); }

.why-card h4 {
  color: var(--surface);
  font-size: 1.15rem;
  margin-bottom: var(--sp-sm);
}

.why-card p {
  color: var(--outline-variant);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─── Section Headers ───────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.section-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: var(--sp-md);
}

.section-sub {
  color: var(--on-surface-variant);
  max-width: 560px;
  margin: var(--sp-sm) auto 0;
}

/* ─── Forms ─────────────────────────────────────── */
.form-group {
  margin-bottom: var(--sp-lg);
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-low);
  border: 1px solid rgba(193,200,194,.2);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--on-surface);
  transition: all var(--tr);
  outline: none;
}

.form-input:focus {
  background: var(--surface-lowest);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67,102,84,.1);
}

.form-input::placeholder {
  color: var(--outline);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23727973' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 4px;
}

/* ─── Upload Zone ───────────────────────────────── */
.upload-zone {
  border: 2px dashed rgba(193,200,194,.3);
  background: var(--surface-low);
  border-radius: var(--r-sm);
  padding: var(--sp-3xl) var(--sp-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--tr);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--primary);
  background: var(--surface-high);
}

.upload-zone .icon {
  font-size: 3rem;
  color: var(--primary-container);
  margin-bottom: var(--sp-md);
}

.upload-zone h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-xs);
}

.upload-zone p {
  font-size: 0.8rem;
}

/* ─── Steps ─────────────────────────────────────── */
.steps {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-2xl);
}

.step {
  flex: 1;
  padding: var(--sp-lg);
  background: var(--surface-low);
  position: relative;
}

.step.active {
  background: var(--surface-lowest);
  border-bottom: 2px solid var(--primary);
}

.step-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 4px;
}

.step.active .step-num { color: var(--primary); }

.step h4 {
  font-family: 'Noto Serif', serif;
  font-size: 1rem;
}

.step:not(.active) h4 { color: var(--on-surface-variant); }

/* ─── Price Estimator ───────────────────────────── */
.price-card {
  background: var(--surface-lowest);
  border: 1px solid rgba(193,200,194,.1);
  box-shadow: var(--sh-lg);
  padding: var(--sp-xl);
  border-radius: var(--r-sm);
  position: sticky;
  top: 96px;
}

.price-amount {
  font-family: 'Noto Serif', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--on-surface);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--surface-high);
}

.price-row span:first-child { color: var(--on-surface-variant); }
.price-row span:last-child { font-weight: 500; }

.price-row.express { color: var(--tertiary); font-style: italic; }

/* ─── FAQ Accordion ─────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--surface-highest);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-lg) 0;
  cursor: pointer;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--on-surface);
  text-align: left;
}

.faq-question .arrow {
  transition: transform var(--tr);
  color: var(--primary);
}

.faq-item.open .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.faq-answer-inner {
  padding-bottom: var(--sp-lg);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--on-surface-variant);
}

/* ─── Contact Cards ─────────────────────────────── */
.contact-card {
  background: var(--surface-lowest);
  padding: var(--sp-lg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  transition: all var(--tr);
  border: 1px solid transparent;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.contact-card .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(67,102,84,.08);
  border-radius: var(--r-lg);
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface);
}

.contact-card p {
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ─── Alert / Success ───────────────────────────── */
.alert {
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-lg);
  font-size: 0.88rem;
  margin-bottom: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.alert-success {
  background: rgba(67,102,84,.08);
  border: 1px solid rgba(67,102,84,.2);
  color: var(--primary-dark);
}

.alert-error {
  background: rgba(186,26,26,.06);
  border: 1px solid rgba(186,26,26,.15);
  color: var(--error);
}

.alert-info {
  background: rgba(67,102,84,.05);
  border: 1px solid rgba(67,102,84,.12);
  color: var(--on-surface-variant);
}

/* ─── Tracking Timeline ─────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--sp-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--surface-highest);
}

.tl-item {
  position: relative;
  padding-bottom: var(--sp-xl);
}

.tl-dot {
  position: absolute;
  left: calc(-1 * var(--sp-xl) + 4px);
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-highest);
  border: 2px solid var(--surface);
}

.tl-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(67,102,84,.15);
}

.tl-dot.done {
  background: var(--primary);
}

.tl-dot.pending {
  background: var(--surface-highest);
  border: 2px solid var(--outline-variant);
}

.tl-time {
  font-size: 0.68rem;
  color: var(--outline);
  font-style: italic;
}

.tl-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-surface);
}

.tl-desc {
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  margin-top: 2px;
}

/* ─── Status Badge ──────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--surface-highest);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-2xl);
}

.footer-brand {
  font-family: 'Noto Serif', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--sp-md);
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-md);
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  opacity: 0.7;
  padding: 4px 0;
  transition: opacity var(--tr);
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--surface-highest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  opacity: 0.6;
}

/* ─── WhatsApp Floating Button ──────────────────── */
.wp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 9999;
  transition: transform var(--tr);
  cursor: pointer;
}

.wp-float:hover { transform: scale(1.08); }

.wp-float .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wpPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes wpPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── Mobile Menu ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  transition: all var(--tr);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: var(--sp-lg);
  border-bottom: 1px solid var(--surface-highest);
  z-index: 999;
  box-shadow: var(--sh-lg);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--on-surface);
  border-bottom: 1px solid var(--surface-low);
}

/* ─── Animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RTL Support ───────────────────────────────── */
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .hero-grid { direction: rtl; }
[dir="rtl"] .form-row { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .wp-float { right: auto; left: 28px; }
[dir="rtl"] select.form-input {
  background-position: left 14px center;
  padding-left: 36px;
  padding-right: 16px;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: var(--sp-2xl) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-sm); }
  .form-row { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }
  .steps { flex-direction: column; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-md); }
  .btn-lg { padding: 14px 24px; font-size: 0.88rem; }
}

/* ─── Frontend Redesign 2026 ───────────────────── */
body.site-shell {
  --surface: #fff7f5;
  --surface-low: #fff0ee;
  --surface-high: #f7e4df;
  --surface-highest: #edd8d2;
  --surface-lowest: #ffffff;
  --surface-container: #fff5f2;
  --primary: #173640;
  --primary-container: #53bec6;
  --primary-light: #b5ebef;
  --primary-dark: #0d252c;
  --tertiary: #c97763;
  --tertiary-container: #efb7a7;
  --tertiary-light: #ffd6ca;
  --on-surface: #18262d;
  --on-surface-variant: #5a6974;
  --outline: #8c99a1;
  --outline-variant: rgba(23,54,64,.14);
  --sh-sm: 0 10px 30px rgba(23,54,64,.05);
  --sh-md: 0 18px 40px rgba(23,54,64,.09);
  --sh-lg: 0 28px 70px rgba(23,54,64,.12);
  --sh-xl: 0 40px 100px rgba(23,54,64,.14);
  background:
    radial-gradient(circle at top left, rgba(83,190,198,.14), transparent 30%),
    radial-gradient(circle at top right, rgba(201,119,99,.12), transparent 26%),
    linear-gradient(180deg, #fffaf8 0%, #fff5f2 38%, #fffdfb 100%);
  position: relative;
  isolation: isolate;
}

body.site-shell.menu-open {
  overflow: hidden;
}

body.site-shell::selection {
  background: rgba(83,190,198,.24);
}

body.site-shell .site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

body.site-shell .orb-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

body.site-shell .site-backdrop-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

body.site-shell .site-backdrop-glow-a {
  width: 34vw;
  height: 34vw;
  min-width: 320px;
  min-height: 320px;
  top: -10vw;
  right: -6vw;
  background: rgba(83,190,198,.4);
}

body.site-shell .site-backdrop-glow-b {
  width: 40vw;
  height: 40vw;
  min-width: 360px;
  min-height: 360px;
  bottom: -18vw;
  left: -10vw;
  background: rgba(201,119,99,.22);
}

body.site-shell .site-backdrop-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,54,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,54,64,.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 85%);
  opacity: 0.35;
}

body.site-shell .brand-accent {
  display: inline-block;
  margin-left: 2px;
}

body.site-shell .shiny-text {
  --shiny-color: rgba(83,190,198,.88);
  --shiny-glow: rgba(255,255,255,.98);
  --shiny-speed: 3s;
  --shiny-delay: 0s;
  background-image: linear-gradient(165deg, rgba(83,190,198,.72) 0%, rgba(83,190,198,.72) 34%, rgba(255,255,255,.98) 50%, rgba(83,190,198,.72) 66%, rgba(83,190,198,.72) 100%);
  background-size: 200% auto;
  background-position: 150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shinySweep var(--shiny-speed) ease-in-out infinite;
  animation-delay: var(--shiny-delay);
}

@keyframes shinySweep {
  0% { background-position: 150% center; }
  45% { background-position: -50% center; }
  55% { background-position: -50% center; }
  100% { background-position: 150% center; }
}

body.site-shell .nav {
  background: rgba(255,251,249,.68);
  border-bottom: 1px solid rgba(23,54,64,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

body.site-shell .nav.scrolled {
  box-shadow: 0 24px 60px rgba(23,54,64,.1);
}

body.site-shell .nav-inner {
  height: 80px;
}

body.site-shell .nav-brand,
body.site-shell .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

body.site-shell .nav-links > li > a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.site-shell .nav-links > li > a.active::after {
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-container), var(--tertiary));
}

body.site-shell .nav-actions {
  gap: 12px;
}

body.site-shell .lang-switcher,
body.site-shell .mobile-lang-switcher,
body.site-shell .footer-actions,
body.site-shell .footer-languages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.site-shell .lang-btn {
  border: 1px solid transparent;
  background: rgba(255,255,255,.48);
  backdrop-filter: blur(16px);
}

body.site-shell .lang-btn:hover,
body.site-shell .lang-btn.active {
  color: var(--primary-dark);
  border-color: rgba(83,190,198,.24);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 22px rgba(23,54,64,.08);
}

body.site-shell .btn {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
}

body.site-shell .btn-sm {
  padding: 10px 18px;
  font-size: 0.72rem;
}

body.site-shell .btn-lg {
  padding: 16px 32px;
  font-size: 0.82rem;
}

body.site-shell .btn-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #215d6f 52%, var(--primary-container) 100%);
  box-shadow: 0 18px 38px rgba(23,54,64,.18);
}

body.site-shell .btn-primary:hover,
body.site-shell .btn-outline:hover,
body.site-shell .btn-wp:hover {
  transform: translateY(-2px);
}

body.site-shell .btn-outline {
  background: rgba(255,255,255,.58);
  border-color: rgba(23,54,64,.12);
  box-shadow: 0 10px 28px rgba(23,54,64,.06);
}

body.site-shell .btn-outline:hover {
  background: rgba(255,255,255,.86);
}

body.site-shell .btn-wp {
  box-shadow: 0 16px 32px rgba(37,211,102,.24);
}

body.site-shell .page-shell-section {
  position: relative;
}

body.site-shell .page-shell-section .section-header {
  margin-bottom: var(--sp-3xl);
}

body.site-shell .page-split,
body.site-shell .upload-layout,
body.site-shell .service-detail-grid,
body.site-shell .tracking-meta-grid,
body.site-shell .tracking-actions,
body.site-shell .team-grid {
  display: grid;
  gap: var(--sp-xl);
}

body.site-shell .page-split {
  grid-template-columns: 1fr 1fr;
}

body.site-shell .page-split-top {
  align-items: start;
}

body.site-shell .upload-layout {
  grid-template-columns: 1.4fr 0.6fr;
}

body.site-shell .service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: var(--sp-3xl);
}

body.site-shell .tracking-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-lg);
}

body.site-shell .tracking-actions {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

body.site-shell .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-xl);
}

body.site-shell .tag-pill {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(23,54,64,.08);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  box-shadow: var(--sh-sm);
}

body.site-shell .about-stats-card {
  padding: var(--sp-3xl);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(145deg, #12303a 0%, #1f5160 100%);
  color: #fff;
  box-shadow: var(--sh-lg);
}

body.site-shell .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.site-shell .team-card {
  text-align: center;
  padding: var(--sp-xl);
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,54,64,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--sh-md);
}

body.site-shell .cert-strip {
  margin-top: var(--sp-3xl);
  padding: var(--sp-xl);
  text-align: center;
  border-radius: 30px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(23,54,64,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--sh-md);
}

body.site-shell .hero {
  min-height: 100vh;
  padding: 120px 0 80px;
}

body.site-shell .hero::before {
  content: '';
  position: absolute;
  top: 90px;
  right: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,190,198,.24) 0%, rgba(83,190,198,0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

body.site-shell .hero-grid {
  gap: clamp(2.5rem, 6vw, 6rem);
}

body.site-shell .hero-tag,
body.site-shell .section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

body.site-shell .hero h1 {
  max-width: 10ch;
}

body.site-shell .page-shell-section h1 {
  max-width: 14ch;
  margin-inline: auto;
}

body.site-shell .hero-sub {
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.85;
}

body.site-shell .hero-shell .hero-visual {
  height: auto;
}

body.site-shell .hero-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-xl);
}

body.site-shell .glass-panel,
body.site-shell .service-card,
body.site-shell .service-detail-card,
body.site-shell .calculator-shell,
body.site-shell .testimonial-card,
body.site-shell .contact-card,
body.site-shell .price-card,
body.site-shell .faq-item,
body.site-shell .mobile-menu {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,54,64,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--sh-md);
}

body.site-shell .hero-stat-card {
  padding: var(--sp-xl);
  border-radius: 34px;
}

body.site-shell .hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-lg);
}

body.site-shell .hero-stat {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(83,190,198,.12);
}

body.site-shell .hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--primary-dark);
}

body.site-shell .hero-contact-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--sp-2xl);
}

body.site-shell .hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(23,54,64,.08);
  box-shadow: var(--sh-sm);
}

body.site-shell .hero-contact-item:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}

body.site-shell .trust-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: var(--sp-xl);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, rgba(13,37,44,.96) 0%, rgba(23,54,64,.96) 45%, rgba(83,190,198,.84) 100%);
  color: #fff;
  box-shadow: var(--sh-lg);
}

body.site-shell .trust-card-head {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

body.site-shell .trust-card-title {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

body.site-shell .trust-card-copy {
  color: rgba(255,255,255,.9);
  margin-bottom: var(--sp-md);
}

body.site-shell .trust-card-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

body.site-shell .guarantee {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(90deg, #18333d 0%, #225565 52%, #53bec6 100%);
  padding: var(--sp-xl) 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 -1px 0 rgba(255,255,255,.08);
}

body.site-shell .guarantee h3 {
  color: #fff;
  margin-bottom: 4px;
}

body.site-shell .guarantee p {
  color: rgba(255,255,255,.84);
}

body.site-shell .guarantee-btn {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

body.site-shell .guarantee-btn:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}

body.site-shell .section-surface {
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.08));
}

body.site-shell .services-grid {
  gap: 18px;
  background: transparent;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.site-shell .service-card {
  min-height: 0;
  justify-content: flex-start;
  border-radius: 30px;
  padding: var(--sp-xl);
  gap: 10px;
}

body.site-shell .service-card::before {
  background: radial-gradient(circle at top left, var(--primary-container), transparent 60%);
}

body.site-shell .service-card:hover {
  transform: translateY(-6px);
}

body.site-shell .service-card p {
  opacity: 1;
  max-height: none;
  overflow: visible;
  font-size: 0.9rem;
}

body.site-shell .service-card:hover p {
  opacity: 1;
  max-height: none;
}

body.site-shell .why-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(83,190,198,.16), transparent 24%),
    linear-gradient(180deg, #102730 0%, #163640 100%);
}

body.site-shell .why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-4xl);
  align-items: center;
}

body.site-shell .why-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

body.site-shell .why-card {
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

body.site-shell .why-collage {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

body.site-shell .why-main-image,
body.site-shell .why-side-image {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--sh-xl);
}

body.site-shell .why-main-image {
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
  border: 6px solid rgba(255,255,255,.15);
}

body.site-shell .why-side-image {
  width: 65%;
  height: 72%;
  bottom: -36px;
  left: -18px;
  border: 6px solid rgba(255,255,255,.92);
}

body.site-shell .why-badge {
  position: absolute;
  top: 40px;
  left: -34px;
  padding: 16px 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  color: var(--primary-dark);
  text-align: center;
  box-shadow: var(--sh-lg);
  z-index: 3;
}

body.site-shell .why-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

body.site-shell .why-badge-label {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.site-shell .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-lg);
}

body.site-shell .testimonial-card {
  padding: var(--sp-xl);
  border-radius: 30px;
}

body.site-shell .testimonial-head {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

body.site-shell .testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-container));
}

body.site-shell .testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--on-surface);
}

body.site-shell .testimonial-role {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

body.site-shell .testimonial-stars {
  color: var(--tertiary);
  font-size: 0.82rem;
  margin-bottom: var(--sp-sm);
}

body.site-shell .testimonial-quote {
  font-size: 0.92rem;
  font-style: italic;
}

body.site-shell .faq-item {
  padding: 0 20px;
  border-radius: 24px;
  margin-bottom: 12px;
  border-bottom: none;
}

body.site-shell .faq-question {
  padding: 20px 0;
}

body.site-shell .faq-answer-inner {
  padding-bottom: 20px;
}

body.site-shell .final-cta {
  padding: var(--sp-4xl) 0;
}

body.site-shell .final-cta-card {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 40px;
  background:
    radial-gradient(circle at top center, rgba(83,190,198,.16), transparent 32%),
    rgba(255,255,255,.74);
  border: 1px solid rgba(23,54,64,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--sh-lg);
}

body.site-shell .final-cta-card h2 {
  margin-bottom: var(--sp-md);
}

body.site-shell .final-cta-card p {
  max-width: 560px;
  margin: 0 auto var(--sp-xl);
}

body.site-shell .final-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

body.site-shell .service-detail-card {
  border-radius: 30px;
  padding: var(--sp-xl);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

body.site-shell .service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83,190,198,.28);
  box-shadow: var(--sh-lg);
}

body.site-shell .service-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

body.site-shell .service-detail-icon {
  font-size: 2.15rem;
  color: var(--primary);
}

body.site-shell .service-detail-meta {
  text-align: right;
}

body.site-shell .service-detail-price,
body.site-shell .calculator-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1;
}

body.site-shell .service-detail-time,
body.site-shell .calculator-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

body.site-shell .service-detail-card h3 {
  margin-bottom: var(--sp-sm);
}

body.site-shell .service-detail-copy {
  margin-bottom: var(--sp-md);
  font-size: 0.9rem;
}

body.site-shell .service-detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

body.site-shell .service-detail-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--on-surface-variant);
}

body.site-shell .service-detail-list-item .material-symbols-outlined {
  font-size: 0.95rem;
  color: var(--primary);
}

body.site-shell .calculator-shell {
  padding: var(--sp-xl);
  border-radius: 34px;
}

body.site-shell .calculator-display {
  padding: var(--sp-xl);
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,245,242,.92));
  border: 1px solid rgba(23,54,64,.08);
}

body.site-shell .price-card {
  border-radius: 32px;
}

body.site-shell .contact-card:hover,
body.site-shell .price-card:hover {
  border-color: rgba(83,190,198,.28);
}

body.site-shell .footer {
  background: rgba(255,251,249,.76);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(23,54,64,.08);
}

body.site-shell .footer-intro {
  max-width: 320px;
  font-size: 0.84rem;
  margin-bottom: var(--sp-lg);
}

body.site-shell .footer-static {
  display: block;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  opacity: 0.76;
}

body.site-shell .footer-bottom {
  opacity: 0.84;
}

body.site-shell .mobile-menu {
  top: 88px;
  right: 16px;
  left: 16px;
  border-radius: 28px;
  padding: 18px;
}

body.site-shell .mobile-menu-backdrop {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(13,37,44,.12);
  backdrop-filter: blur(4px);
  border: none;
  pointer-events: none;
  opacity: 0;
}

body.site-shell .mobile-menu-backdrop:not([hidden]) {
  display: block !important;
  pointer-events: auto;
  opacity: 1;
}

body.site-shell .mobile-menu a {
  border-bottom-color: rgba(23,54,64,.08);
}

body.site-shell .hamburger {
  border-radius: 999px;
}

body.site-shell .hamburger span {
  background: var(--primary-dark);
}

@media (max-width: 1180px) {
  body.site-shell .why-layout {
    grid-template-columns: 1fr;
  }

  body.site-shell .why-collage {
    min-height: 420px;
  }

  body.site-shell .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  body.site-shell .hero {
    min-height: auto;
    padding: 112px 0 56px;
  }

  body.site-shell .hero h1,
  body.site-shell .page-shell-section h1 {
    max-width: none;
  }

  body.site-shell .services-grid,
  body.site-shell .testimonials-grid,
  body.site-shell .service-detail-grid,
  body.site-shell .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.site-shell .nav-actions {
    display: none;
  }

  body.site-shell .hero-contact-strip,
  body.site-shell .final-cta-actions,
  body.site-shell .footer-actions,
  body.site-shell .footer-languages {
    justify-content: center;
  }

  body.site-shell .hero-stat-grid,
  body.site-shell .services-grid,
  body.site-shell .testimonials-grid,
  body.site-shell .service-detail-list,
  body.site-shell .why-grid-compact,
  body.site-shell .page-split,
  body.site-shell .upload-layout,
  body.site-shell .service-detail-grid,
  body.site-shell .tracking-meta-grid,
  body.site-shell .team-grid {
    grid-template-columns: 1fr;
  }

  body.site-shell .service-detail-head {
    flex-direction: column;
  }

  body.site-shell .service-detail-meta {
    text-align: left;
  }

  body.site-shell .why-collage {
    min-height: 360px;
  }

  body.site-shell .why-main-image {
    width: 82%;
  }

  body.site-shell .why-side-image {
    width: 62%;
    left: 0;
    bottom: -20px;
  }

  body.site-shell .why-badge {
    top: 18px;
    left: 0;
  }

  body.site-shell .final-cta-card {
    border-radius: 28px;
  }

  body.site-shell .tracking-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  body.site-shell .hero-contact-item,
  body.site-shell .btn,
  body.site-shell .lang-btn {
    width: 100%;
    justify-content: center;
  }

  body.site-shell .hero-stat-card,
  body.site-shell .trust-card,
  body.site-shell .service-card,
  body.site-shell .service-detail-card,
  body.site-shell .calculator-shell,
  body.site-shell .testimonial-card,
  body.site-shell .price-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site-shell .shiny-text,
  body.site-shell .wp-float .pulse,
  body.site-shell .fade-in {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── Mobile-First Refresh ─────────────────────── */
body.site-shell {
  --surface: #f3f7fb;
  --surface-low: #eef3f8;
  --surface-high: #e3ebf4;
  --surface-highest: #d8e2ee;
  --surface-lowest: #ffffff;
  --surface-container: #f7fafe;
  --primary: #13283f;
  --primary-container: #2bb8c8;
  --primary-light: #99ecf2;
  --primary-dark: #0b1a2c;
  --tertiary: #ff7a59;
  --tertiary-container: #ffc3ae;
  --tertiary-light: #ffe2d7;
  --on-surface: #142033;
  --on-surface-variant: #556274;
  --outline: #8e99a8;
  --outline-variant: rgba(19,40,63,.12);
  --sh-sm: 0 10px 24px rgba(19,40,63,.06);
  --sh-md: 0 22px 48px rgba(19,40,63,.09);
  --sh-lg: 0 36px 80px rgba(19,40,63,.13);
  --sh-xl: 0 52px 110px rgba(19,40,63,.16);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43,184,200,.12), transparent 22%),
    radial-gradient(circle at top right, rgba(255,122,89,.08), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #f3f7fb 36%, #edf3f8 100%);
}

body.site-shell,
body.site-shell p,
body.site-shell .form-input,
body.site-shell .form-label,
body.site-shell .btn,
body.site-shell .lang-btn {
  font-family: 'Manrope', sans-serif;
}

body.site-shell h1,
body.site-shell h2,
body.site-shell h3,
body.site-shell h4,
body.site-shell h5,
body.site-shell h6,
body.site-shell .nav-brand,
body.site-shell .footer-brand,
body.site-shell .hero-stat-num,
body.site-shell .service-detail-price,
body.site-shell .calculator-amount,
body.site-shell .why-badge-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

body.site-shell h1,
body.site-shell h2 {
  font-weight: 700;
}

body.site-shell .hero h1 em {
  font-style: normal;
}

body.site-shell .site-backdrop,
body.site-shell .orb-canvas,
body.site-shell .site-backdrop-glow,
body.site-shell .site-backdrop-grid,
body.site-shell .mobile-menu-backdrop {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.site-shell .shiny-text {
  background-image: linear-gradient(145deg, rgba(43,184,200,.72) 0%, rgba(43,184,200,.72) 36%, rgba(255,255,255,.98) 50%, rgba(43,184,200,.72) 64%, rgba(43,184,200,.72) 100%);
}

body.site-shell .container {
  padding: 0 18px;
}

body.site-shell .section {
  padding: 72px 0;
}

body.site-shell .nav {
  top: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(9,21,36,.95) 0%, rgba(15,33,53,.92) 100%);
  box-shadow: 0 24px 55px rgba(8,19,31,.2);
}

body.site-shell .nav.scrolled {
  box-shadow: 0 28px 70px rgba(8,19,31,.28);
}

body.site-shell .nav-inner {
  height: 68px;
  padding: 0 14px;
}

body.site-shell .nav-brand,
body.site-shell .footer-brand {
  font-size: 1.24rem;
  color: #f6fbff;
}

body.site-shell .brand-lockup,
body.site-shell .footer-brand-lockup,
body.site-shell .mobile-menu-brandline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.site-shell .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,.98);
  padding: 4px;
  box-shadow: 0 10px 24px rgba(8,19,31,.14);
  flex-shrink: 0;
}

body.site-shell .brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.site-shell .brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

body.site-shell .brand-status {
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,250,255,.58);
}

body.site-shell .footer-brand .brand-status {
  color: rgba(244,250,255,.48);
}

body.site-shell .nav-brand .brand-status {
  display: none !important;
}

body.site-shell .nav-links,
body.site-shell .nav-actions {
  display: none;
}

body.site-shell .nav-links > li {
  position: relative;
}

body.site-shell .nav-drawer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(244,250,255,.82);
  background: rgba(255,255,255,.02);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

body.site-shell .nav-drawer-toggle:hover,
body.site-shell .nav-drawer-item:focus-within .nav-drawer-toggle,
body.site-shell .nav-drawer-item:hover .nav-drawer-toggle,
body.site-shell .nav-drawer-item.open .nav-drawer-toggle {
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

body.site-shell .nav-drawer-caret {
  font-size: 1rem;
  transition: transform .24s ease;
}

body.site-shell .nav-drawer-item.open .nav-drawer-caret {
  transform: rotate(180deg);
}

body.site-shell .nav-mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(84vw, 860px);
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,252,255,.98) 100%);
  border: 1px solid rgba(16,35,55,.08);
  box-shadow: 0 28px 60px rgba(8,19,31,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1200;
}

body.site-shell .nav-drawer-item:hover .nav-mega-panel,
body.site-shell .nav-drawer-item:focus-within .nav-mega-panel,
body.site-shell .nav-drawer-item.open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.site-shell .nav-mega-layout {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 18px;
}

body.site-shell .nav-mega-intro {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19,40,63,.98) 0%, rgba(25,51,77,.96) 100%);
  border: 1px solid rgba(19,40,63,.08);
}

body.site-shell .nav-mega-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(153,236,242,.78);
}

body.site-shell .nav-mega-intro h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #ffffff;
}

body.site-shell .nav-mega-intro p {
  margin: 0 0 16px;
  color: rgba(236,244,255,.72);
  line-height: 1.7;
}

body.site-shell .nav-mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.site-shell .nav-mega-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(247,251,255,.96);
  border: 1px solid rgba(19,40,63,.08);
  color: #13283f;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

body.site-shell .nav-mega-link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(43,184,200,.24);
}

body.site-shell .nav-mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,184,200,.14);
  color: #9debf2;
}

body.site-shell .nav-mega-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.site-shell .nav-mega-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #13283f;
}

body.site-shell .nav-mega-desc {
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(19,40,63,.66);
}

body.site-shell .hamburger {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

body.site-shell .hamburger span {
  width: 18px;
  background: #f7fbff;
}

body.site-shell .mobile-menu {
  display: block !important;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: min(88vw, 390px);
  padding: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #0f2136 0%, #13283f 100%);
  box-shadow: -20px 0 60px rgba(4,12,22,.35);
  transform: translateX(104%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .24s ease;
  z-index: 1050;
  overflow-y: auto;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.site-shell .mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

body.site-shell .mobile-menu-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
}

body.site-shell .mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

body.site-shell .mobile-menu-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(153,236,242,.78);
}

body.site-shell .mobile-menu-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.32rem;
  line-height: 1;
  color: #f8fcff;
}

body.site-shell .mobile-menu-sub {
  margin-top: 8px;
  color: rgba(236,244,255,.66);
  font-size: 0.88rem;
  line-height: 1.55;
}

body.site-shell .mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}

body.site-shell .mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.site-shell .mobile-menu .mobile-nav-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  color: #f4fbff;
}

body.site-shell .mobile-menu .mobile-nav-card.active {
  background: linear-gradient(135deg, rgba(43,184,200,.22) 0%, rgba(255,122,89,.18) 100%);
  border-color: rgba(153,236,242,.28);
}

body.site-shell .mobile-menu .mobile-nav-icon,
body.site-shell .mobile-menu .mobile-nav-arrow {
  font-size: 1.18rem;
  color: rgba(153,236,242,.96);
}

body.site-shell .mobile-menu .mobile-nav-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.site-shell .mobile-menu .mobile-nav-title {
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff;
}

body.site-shell .mobile-menu .mobile-nav-desc {
  font-size: 0.76rem;
  color: rgba(236,244,255,.62);
}

body.site-shell .mobile-drawer-group {
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

body.site-shell .mobile-drawer-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  color: #ffffff;
}

body.site-shell .mobile-drawer-summary::-webkit-details-marker {
  display: none;
}

body.site-shell .mobile-drawer-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.site-shell .mobile-drawer-group[open] .mobile-drawer-summary .material-symbols-outlined {
  transform: rotate(180deg);
}

body.site-shell .mobile-drawer-group .mobile-drawer-summary .material-symbols-outlined {
  transition: transform .2s ease;
}

body.site-shell .mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
}

body.site-shell .mobile-drawer-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: #f4fbff;
}

body.site-shell .mobile-menu-cta,
body.site-shell .mobile-menu-langbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.site-shell .mobile-menu .btn {
  border-bottom: none;
  padding: 15px 22px;
  justify-content: center;
}

body.site-shell .mobile-menu .mobile-lang-switcher {
  gap: 10px;
}

body.site-shell .mobile-menu .lang-btn {
  color: #eff8ff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  border-bottom: none;
}

body.site-shell .mobile-menu .lang-btn.active {
  color: #08131f;
  background: #eff8ff;
}

body.site-shell .page-shell-section .section-header {
  margin-bottom: 32px;
}

body.site-shell .hero {
  min-height: auto;
  padding: 104px 0 52px;
}

body.site-shell .hero-grid,
body.site-shell .page-split,
body.site-shell .upload-layout,
body.site-shell .service-detail-grid,
body.site-shell .services-grid,
body.site-shell .why-layout,
body.site-shell .why-grid-compact,
body.site-shell .testimonials-grid,
body.site-shell .team-grid,
body.site-shell .tracking-meta-grid {
  grid-template-columns: 1fr;
}

body.site-shell .hero h1,
body.site-shell .page-shell-section h1 {
  max-width: none;
}

body.site-shell h1 {
  font-size: clamp(2.1rem, 10vw, 3.4rem);
  line-height: 0.98;
}

body.site-shell h2 {
  font-size: clamp(1.7rem, 8vw, 2.7rem);
  line-height: 1;
}

body.site-shell .hero-sub,
body.site-shell .section-sub {
  font-size: 0.96rem;
  line-height: 1.72;
  max-width: none;
}

body.site-shell .hero-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-xl);
}

body.site-shell .hero-actions,
body.site-shell .hero-contact-strip,
body.site-shell .final-cta-actions,
body.site-shell .tracking-actions,
body.site-shell .footer-actions,
body.site-shell .footer-languages {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

body.site-shell .hero-actions .btn,
body.site-shell .hero-contact-item,
body.site-shell .final-cta-actions .btn,
body.site-shell .tracking-actions .btn,
body.site-shell .footer-actions .btn,
body.site-shell .mobile-menu-cta .btn {
  width: 100%;
}

body.site-shell .hero-contact-item {
  justify-content: center;
  min-height: 52px;
}

body.site-shell .btn {
  padding: 15px 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

body.site-shell .btn-outline {
  background: rgba(255,255,255,.9);
}

body.site-shell .glass-panel,
body.site-shell .service-card,
body.site-shell .service-detail-card,
body.site-shell .calculator-shell,
body.site-shell .testimonial-card,
body.site-shell .contact-card,
body.site-shell .price-card,
body.site-shell .faq-item,
body.site-shell .team-card,
body.site-shell .cert-strip,
body.site-shell .final-cta-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(19,40,63,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.site-shell .hero-stat-card,
body.site-shell .trust-card,
body.site-shell .service-card,
body.site-shell .service-detail-card,
body.site-shell .calculator-shell,
body.site-shell .testimonial-card,
body.site-shell .price-card,
body.site-shell .contact-card,
body.site-shell .final-cta-card {
  border-radius: 26px;
}

body.site-shell .hero-stat-card,
body.site-shell .service-card,
body.site-shell .service-detail-card,
body.site-shell .calculator-shell,
body.site-shell .testimonial-card,
body.site-shell .team-card,
body.site-shell .contact-card,
body.site-shell .price-card {
  padding: 20px;
}

body.site-shell .hero-stat-grid {
  gap: 10px;
}

body.site-shell .hero-stat {
  padding: 14px 12px;
}

body.site-shell .hero-stat-label {
  font-size: 0.64rem;
}

body.site-shell .trust-card {
  background: linear-gradient(145deg, #13283f 0%, #183757 58%, #2bb8c8 100%);
}

body.site-shell .guarantee {
  border-radius: 28px;
  margin: 0 18px;
  padding: 20px 0;
}

body.site-shell .guarantee-inner {
  align-items: flex-start;
}

body.site-shell .why-section {
  border-radius: 34px 34px 0 0;
}

body.site-shell .why-collage {
  min-height: 320px;
}

body.site-shell .why-main-image {
  width: 78%;
  border-radius: 24px;
}

body.site-shell .why-side-image {
  width: 58%;
  left: 0;
  bottom: -10px;
  border-radius: 22px;
}

body.site-shell .why-badge {
  top: 12px;
  left: 0;
  padding: 12px 16px;
}

body.site-shell .service-card:hover,
body.site-shell .service-detail-card:hover,
body.site-shell .btn-primary:hover,
body.site-shell .btn-outline:hover,
body.site-shell .btn-wp:hover,
body.site-shell .contact-card:hover,
body.site-shell .hero-contact-item:hover {
  transform: none;
}

body.site-shell .service-detail-card[id] {
  scroll-margin-top: 120px;
}

body.site-shell .footer {
  margin-top: 36px;
  padding: 56px 0 calc(20px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(12,25,40,.96) 0%, rgba(8,18,29,.98) 100%);
  border-top: none;
}

body.site-shell .footer-brand,
body.site-shell .footer-col h5,
body.site-shell .footer-intro,
body.site-shell .footer-static,
body.site-shell .footer-bottom,
body.site-shell .footer-col a {
  color: rgba(244,250,255,.9);
}

body.site-shell .footer-brand-lockup .brand-mark {
  background: rgba(255,255,255,.96);
}

body.site-shell .footer-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

body.site-shell .footer-col a,
body.site-shell .footer-static {
  opacity: 0.74;
}

body.site-shell .wp-float {
  width: 54px;
  height: 54px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
}

@media (min-width: 720px) {
  body.site-shell .container {
    padding: 0 24px;
  }

  body.site-shell .services-grid,
  body.site-shell .service-detail-grid,
  body.site-shell .testimonials-grid,
  body.site-shell .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.site-shell .hero-actions,
  body.site-shell .hero-contact-strip,
  body.site-shell .tracking-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  body.site-shell .hero-actions .btn,
  body.site-shell .hero-contact-item,
  body.site-shell .tracking-actions .btn {
    width: auto;
  }

}

@media (min-width: 1040px) {
  body.site-shell .container {
    padding: 0 28px;
  }

  body.site-shell .section {
    padding: 92px 0;
  }

  body.site-shell .nav {
    top: 18px;
    left: 18px;
    right: 18px;
    border-radius: 28px;
  }

  body.site-shell .nav-inner {
    height: 76px;
    padding: 0 18px;
  }

  body.site-shell .nav-brand {
    font-size: 1.4rem;
  }

  body.site-shell .hero {
    padding: 128px 0 84px;
  }

  body.site-shell .hero-grid,
  body.site-shell .why-layout,
  body.site-shell .page-split {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  body.site-shell .upload-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  body.site-shell .tracking-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.site-shell .hero-stack {
    gap: 18px;
  }

  body.site-shell .hero-stat-card,
  body.site-shell .trust-card,
  body.site-shell .service-card,
  body.site-shell .service-detail-card,
  body.site-shell .calculator-shell,
  body.site-shell .testimonial-card,
  body.site-shell .price-card,
  body.site-shell .contact-card,
  body.site-shell .final-cta-card {
    border-radius: 30px;
  }
}

@media (min-width: 1180px) {
  body.site-shell .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  body.site-shell .nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(244,250,255,.82);
    background: rgba(255,255,255,.02);
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
  }

  body.site-shell .nav-links > li > a:hover,
  body.site-shell .nav-links > li > a.active {
    color: #ffffff;
    background: rgba(255,255,255,.08);
  }

  body.site-shell .nav-links > li > a .nav-link-icon {
    display: none;
  }

  body.site-shell .nav-links > li > a.active::after {
    display: none;
  }

  body.site-shell .mobile-drawer-group {
    display: none;
  }

  body.site-shell .nav-actions {
    display: flex;
    align-items: center;
  }

  body.site-shell .nav .brand-status {
    display: none;
  }

  body.site-shell .nav-brand {
    margin-right: 8px;
  }

  body.site-shell .nav-inner {
    gap: 18px;
  }

  body.site-shell .lang-switcher {
    gap: 6px;
  }

  body.site-shell .lang-btn {
    color: rgba(244,250,255,.82);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
  }

  body.site-shell .lang-btn.active,
  body.site-shell .lang-btn:hover {
    color: #0a1522;
    background: #f7fbff;
  }

  body.site-shell .hamburger,
  body.site-shell .mobile-menu,
  body.site-shell .mobile-menu-backdrop {
    display: none !important;
  }

  body.site-shell .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.site-shell .service-detail-grid,
  body.site-shell .testimonials-grid,
  body.site-shell .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1179px) {
  body.site-shell .nav .brand-status {
    display: none;
  }

  body.site-shell .nav-brand {
    max-width: calc(100vw - 96px);
  }

  body.site-shell .nav-brand .brand-title {
    font-size: 0.96rem;
  }

  body.site-shell .nav-mega-panel,
  body.site-shell .nav-drawer-toggle {
    display: none !important;
  }
}

/* ─── Stabilization Hotfix 2026-04-05 ───────────────────────────── */
body.site-shell {
  background:
    radial-gradient(circle at 10% 0%, rgba(43,184,200,.14), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(83,190,198,.12), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(255,122,89,.08), transparent 18%),
    linear-gradient(180deg, #f4f9ff 0%, #eef5fb 40%, #f8fbff 100%);
  background-attachment: fixed;
}

body.site-shell h1,
body.site-shell h2,
body.site-shell h3,
body.site-shell h4,
body.site-shell h5,
body.site-shell h6,
body.site-shell .brand-title,
body.site-shell .nav-drawer-toggle,
body.site-shell .hero-stat-num,
body.site-shell .mobile-menu-title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.site-shell,
body.site-shell p,
body.site-shell .btn,
body.site-shell .form-input,
body.site-shell .form-label,
body.site-shell .lang-btn {
  font-family: 'Manrope', sans-serif;
}

body.site-shell .nav {
  top: 18px;
  left: 18px;
  right: 18px;
  border: 1px solid rgba(19,40,63,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 24px 60px rgba(19,40,63,.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.site-shell .nav.scrolled {
  box-shadow: 0 28px 70px rgba(19,40,63,.16);
}

body.site-shell .nav-inner {
  height: 82px;
  padding: 0 22px;
  gap: 20px;
}

body.site-shell .nav-brand {
  flex-shrink: 0;
  color: #10233a;
  font-size: 1.12rem;
}

body.site-shell .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
}

body.site-shell .brand-title {
  white-space: nowrap;
  font-size: 1.08rem;
  color: #10233a;
}

body.site-shell .nav-links > li,
body.site-shell .nav-drawer-item {
  display: flex;
  align-items: center;
}

body.site-shell .nav-links > li > a,
body.site-shell .nav-drawer-toggle {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #203247;
  background: transparent;
  white-space: nowrap;
}

body.site-shell .nav-links > li > a:hover,
body.site-shell .nav-links > li > a.active,
body.site-shell .nav-drawer-toggle:hover,
body.site-shell .nav-drawer-item:hover .nav-drawer-toggle,
body.site-shell .nav-drawer-item:focus-within .nav-drawer-toggle,
body.site-shell .nav-drawer-item.open .nav-drawer-toggle {
  color: #10233a;
  background: rgba(19,40,63,.06);
}

body.site-shell .nav-link-icon,
body.site-shell .nav-links > li > a .nav-link-icon {
  display: none !important;
}

body.site-shell .nav-drawer-caret {
  font-size: 1rem;
  color: #537089;
}

body.site-shell .nav-mega-panel {
  top: calc(100% + 14px);
  left: 0;
  width: min(920px, calc(100vw - 72px));
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(19,40,63,.08);
  box-shadow: 0 34px 80px rgba(19,40,63,.16);
}

body.site-shell .nav-mega-layout {
  grid-template-columns: minmax(248px, 280px) minmax(0, 1fr);
  gap: 18px;
}

body.site-shell .nav-mega-intro {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(165deg, #10233a 0%, #173650 56%, #2bb8c8 100%);
  border: 1px solid rgba(19,40,63,.08);
}

body.site-shell .nav-mega-intro h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

body.site-shell .nav-mega-intro p {
  font-size: 0.86rem;
  line-height: 1.72;
}

body.site-shell .nav-mega-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.site-shell .nav-mega-link {
  min-height: 92px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(19,40,63,.08);
  box-shadow: 0 12px 24px rgba(19,40,63,.04);
}

body.site-shell .nav-mega-link:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(19,40,63,.08);
}

body.site-shell .nav-mega-icon {
  background: rgba(43,184,200,.12);
  color: #1d8b9a;
}

body.site-shell .nav-mega-title {
  font-size: 0.95rem;
  color: #10233a;
}

body.site-shell .nav-mega-desc {
  font-size: 0.79rem;
  line-height: 1.65;
  color: rgba(16,35,58,.7);
}

body.site-shell .lang-switcher {
  gap: 6px;
}

body.site-shell .lang-btn {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(19,40,63,.08);
  color: #203247;
}

body.site-shell .lang-btn:hover,
body.site-shell .lang-btn.active {
  color: #10233a;
  background: #ffffff;
  border-color: rgba(43,184,200,.2);
}

body.site-shell .btn-primary {
  background: linear-gradient(135deg, #10233a 0%, #194160 50%, #2bb8c8 100%);
}

body.site-shell .glass-panel,
body.site-shell .service-card,
body.site-shell .service-detail-card,
body.site-shell .calculator-shell,
body.site-shell .testimonial-card,
body.site-shell .contact-card,
body.site-shell .price-card,
body.site-shell .faq-item,
body.site-shell .team-card,
body.site-shell .cert-strip,
body.site-shell .final-cta-card,
body.site-shell .mobile-menu {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(19,40,63,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.site-shell .hero::before {
  top: 110px;
  right: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(43,184,200,.18) 0%, rgba(43,184,200,0) 72%);
}

body.site-shell .trust-card {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(145deg, #10233a 0%, #183654 58%, #2bb8c8 100%);
}

body.site-shell .guarantee {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(90deg, #10233a 0%, #1a4966 52%, #2bb8c8 100%);
}

body.site-shell .why-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(83,190,198,.18), transparent 25%),
    linear-gradient(180deg, #10263a 0%, #153247 100%);
}

body.site-shell .footer {
  background: linear-gradient(180deg, rgba(12,25,40,.96) 0%, rgba(8,18,29,.98) 100%);
  border-top: none;
}

@media (min-width: 1180px) {
  body.site-shell .nav-links {
    flex: 1 1 auto;
    justify-content: center;
    gap: 10px;
  }

  body.site-shell .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
}

@media (min-width: 1180px) and (max-width: 1360px) {
  body.site-shell .lang-switcher {
    display: none;
  }

  body.site-shell .nav-links {
    gap: 8px;
  }

  body.site-shell .nav-links > li > a,
  body.site-shell .nav-drawer-toggle {
    padding: 11px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1179px) {
  body.site-shell .nav {
    top: 12px;
    left: 12px;
    right: 12px;
    border-radius: 24px;
  }

  body.site-shell .nav-inner {
    height: 72px;
    padding: 0 16px;
  }

  body.site-shell .brand-title {
    font-size: 1rem;
  }
}

/* ─── Mobile Navigation Polish 2026-04-05 ───────────────────────── */
body.site-shell .mobile-nav-tools,
body.site-shell .mobile-nav-cta {
  display: none;
}

@media (max-width: 1179px) {
  body.site-shell .nav {
    background: rgba(255,255,255,.92);
    border-color: rgba(19,40,63,.09);
    box-shadow: 0 18px 44px rgba(19,40,63,.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body.site-shell .nav-inner {
    height: 74px;
    padding: 0 14px 0 16px;
    gap: 12px;
  }

  body.site-shell .nav-brand {
    max-width: min(52vw, 220px);
    min-width: 0;
  }

  body.site-shell .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(19,40,63,.12);
  }

  body.site-shell .brand-title {
    font-size: 1rem;
    font-weight: 700;
    color: #10233a;
  }

  body.site-shell .mobile-nav-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
  }

  body.site-shell .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10233a 0%, #194160 54%, #2bb8c8 100%);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(25,65,96,.24);
    white-space: nowrap;
  }

  body.site-shell .hamburger {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #10233a;
    border: 1px solid rgba(16,35,58,.12);
    box-shadow: 0 12px 24px rgba(16,35,58,.18);
  }

  body.site-shell .hamburger span {
    width: 19px;
    background: #ffffff;
  }

  body.site-shell .mobile-menu {
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: min(94vw, 420px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background:
      radial-gradient(circle at top right, rgba(83,190,198,.2), transparent 24%),
      linear-gradient(180deg, #10233a 0%, #132b43 52%, #0d1b2d 100%);
    box-shadow: -24px 0 60px rgba(4,12,22,.36);
  }

  body.site-shell .mobile-menu-shell {
    gap: 18px;
    padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
  }

  body.site-shell .mobile-menu-head {
    align-items: stretch;
  }

  body.site-shell .mobile-menu-brandblock {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.04) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }

  body.site-shell .mobile-menu-brandline {
    gap: 10px;
  }

  body.site-shell .mobile-menu-title {
    font-size: 1.4rem;
  }

  body.site-shell .mobile-menu-sub {
    margin-top: 10px;
    color: rgba(236,244,255,.74);
    font-size: 0.9rem;
    line-height: 1.62;
  }

  body.site-shell .mobile-menu-quickfacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  body.site-shell .mobile-menu-fact {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    color: #eff8ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.site-shell .mobile-menu-close {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }

  body.site-shell .mobile-menu-links {
    gap: 12px;
  }

  body.site-shell .mobile-drawer-group {
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  }

  body.site-shell .mobile-drawer-group[open] {
    background: rgba(255,255,255,.1);
    border-color: rgba(153,236,242,.18);
  }

  body.site-shell .mobile-drawer-summary {
    padding: 16px;
  }

  body.site-shell .mobile-drawer-summary-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  body.site-shell .mobile-drawer-badge {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(43,184,200,.16);
    color: #9debf2;
    flex-shrink: 0;
  }

  body.site-shell .mobile-drawer-copyblock {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  body.site-shell .mobile-drawer-label {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  body.site-shell .mobile-drawer-meta {
    margin-top: 2px;
    color: rgba(236,244,255,.62);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }

  body.site-shell .mobile-drawer-links {
    gap: 10px;
    padding: 0 14px 14px;
  }

  body.site-shell .mobile-drawer-link {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07);
  }

  body.site-shell .mobile-drawer-link .mobile-nav-title,
  body.site-shell .mobile-nav-card .mobile-nav-title {
    font-size: 0.94rem;
    font-weight: 800;
  }

  body.site-shell .mobile-drawer-link .mobile-nav-desc,
  body.site-shell .mobile-nav-card .mobile-nav-desc {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  body.site-shell .mobile-menu .mobile-nav-card {
    min-height: 76px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  }

  body.site-shell .mobile-menu .mobile-nav-card.active {
    background: linear-gradient(135deg, rgba(43,184,200,.24) 0%, rgba(255,122,89,.14) 100%);
  }

  body.site-shell .mobile-menu-cta {
    margin-top: auto;
    padding-top: 4px;
  }

  body.site-shell .mobile-menu .btn {
    min-height: 52px;
    border-radius: 18px;
  }

  body.site-shell .mobile-menu-langbar {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 680px) {
  body.site-shell .mobile-nav-cta {
    display: none;
  }

  body.site-shell .nav-brand {
    max-width: calc(100vw - 86px);
  }

  body.site-shell .mobile-menu {
    width: calc(100vw - 16px);
    top: 8px;
    right: 8px;
    bottom: 8px;
  }
}

body.site-shell .site-campaign-band {
  position: relative;
  z-index: 6;
  margin-top: 112px;
  padding: 0 20px;
}

body.site-shell .site-campaign-shell {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 28px;
  border: 1px solid rgba(19, 40, 63, 0.08);
  background:
    radial-gradient(circle at top right, rgba(92, 213, 224, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(12, 31, 52, 0.96) 0%, rgba(20, 58, 85, 0.94) 54%, rgba(31, 106, 115, 0.9) 100%);
  box-shadow:
    0 24px 44px rgba(10, 24, 39, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body.site-shell .site-campaign-shell::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

body.site-shell .site-campaign-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

body.site-shell .site-campaign-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(234, 246, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.site-shell .site-campaign-text {
  margin: 0;
  color: #f7fbff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

body.site-shell .site-campaign-inline-price {
  color: #8ef16e;
  white-space: nowrap;
}

body.site-shell .site-campaign-note {
  color: rgba(229, 242, 251, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.site-shell .site-campaign-spotlight {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(235, 247, 250, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 18px 30px rgba(8, 23, 36, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.05);
}

body.site-shell .site-campaign-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 40, 63, 0.06);
  color: #1c4f62;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.site-shell .site-campaign-price {
  color: #0c2338;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-shadow: 0 10px 24px rgba(92, 213, 224, 0.22);
}

body.site-shell .site-campaign-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

body.site-shell .site-campaign-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

body.site-shell .site-campaign-cta:hover,
body.site-shell .site-campaign-cta:focus-visible {
  transform: translateY(-2px);
}

body.site-shell .site-campaign-cta .material-symbols-outlined {
  font-size: 1.05rem;
}

body.site-shell .site-campaign-cta--upload {
  min-height: 50px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(10, 24, 39, 0.14);
  color: #f3fbff;
}

body.site-shell .site-campaign-cta--upload:hover,
body.site-shell .site-campaign-cta--upload:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 32px rgba(10, 24, 39, 0.18);
}

body.site-shell .site-campaign-cta--whatsapp {
  background: linear-gradient(135deg, #8ef16e 0%, #58d96c 100%);
  box-shadow: 0 18px 30px rgba(88, 217, 108, 0.24);
  color: #0d2614;
}

body.site-shell .site-campaign-cta--whatsapp:hover,
body.site-shell .site-campaign-cta--whatsapp:focus-visible {
  box-shadow: 0 24px 36px rgba(88, 217, 108, 0.28);
}

body.site-shell .site-campaign-whatsapp-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

body.site-shell .site-campaign-band + .hero {
  min-height: auto;
  padding-top: 56px;
}

body.site-shell .site-campaign-band + .page-shell-section {
  padding-top: calc(44px + var(--sp-2xl)) !important;
}

@media (max-width: 1024px) {
  body.site-shell .site-campaign-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.site-shell .site-campaign-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  body.site-shell .site-campaign-actions .site-campaign-cta {
    flex: 1 1 240px;
  }
}

@media (max-width: 720px) {
  body.site-shell .site-campaign-band {
    margin-top: 96px;
    padding: 0 12px;
  }

  body.site-shell .site-campaign-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
  }

  body.site-shell .site-campaign-copy {
    gap: 6px;
  }

  body.site-shell .site-campaign-kicker {
    min-height: 30px;
    font-size: 0.66rem;
  }

  body.site-shell .site-campaign-text {
    font-size: 1rem;
    line-height: 1.28;
  }

  body.site-shell .site-campaign-note {
    font-size: 0.82rem;
  }

  body.site-shell .site-campaign-spotlight {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    padding: 14px 16px;
  }

  body.site-shell .site-campaign-price {
    font-size: 2rem;
  }

  body.site-shell .site-campaign-actions {
    gap: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
  }

  body.site-shell .site-campaign-actions .site-campaign-cta {
    width: auto;
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  body.site-shell .site-campaign-cta {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }

  body.site-shell .site-campaign-cta--upload {
    min-height: 46px;
    padding: 0 12px;
    flex: 0 1 auto;
  }

  body.site-shell .site-campaign-cta--whatsapp {
    flex: 1 1 0;
  }

  body.site-shell .site-campaign-whatsapp-icon {
    width: 16px;
    height: 16px;
  }

  body.site-shell .site-campaign-band + .hero {
    padding-top: 44px;
  }

  body.site-shell .site-campaign-band + .page-shell-section {
    padding-top: calc(30px + var(--sp-xl)) !important;
  }
}

/* ─── Brand / Footer / About Refresh 2026-04-08 ─────────────────── */
body.site-shell .nav-brand.brand-lockup,
body.site-shell .footer-brand-lockup,
body.site-shell .mobile-menu-brandline {
  gap: 0;
  line-height: 0;
}

body.site-shell .brand-lockup-image {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(9, 21, 36, 0.12));
}

body.site-shell .brand-lockup-image--nav {
  height: 68px;
  max-width: min(24vw, 270px);
}

body.site-shell .brand-lockup-image--mobile {
  height: 84px;
  max-width: 100%;
}

body.site-shell .brand-lockup-image--footer {
  height: 108px;
  max-width: min(100%, 320px);
}

body.site-shell .lang-btn,
body.site-shell .footer-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
}

body.site-shell .lang-flag-emoji {
  font-size: 1.08rem;
  line-height: 1;
}

body.site-shell .footer-brand-block {
  min-width: 0;
}

body.site-shell .footer-brand-lockup--stacked {
  display: block;
}

body.site-shell .footer-brand-status {
  margin: 14px 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 250, 255, 0.62);
}

body.site-shell .footer-grid {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 0.78fr));
  align-items: start;
  gap: 30px;
}

body.site-shell .footer-col {
  min-width: 0;
}

body.site-shell .footer-col h5 {
  margin-bottom: 14px;
}

body.site-shell .footer-languages {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

body.site-shell .footer-lang-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4faff;
}

body.site-shell .footer-lang-btn:hover,
body.site-shell .footer-lang-btn.active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(153, 236, 242, 0.2);
}

body.site-shell .page-about .section-header--compact {
  margin-bottom: 26px;
}

body.site-shell .about-hero-grid {
  align-items: stretch;
}

body.site-shell .about-story-card,
body.site-shell .about-process-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 40, 63, 0.08);
  box-shadow: 0 22px 54px rgba(19, 40, 63, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.site-shell .about-block-kicker,
body.site-shell .about-stats-eyebrow,
body.site-shell .about-cert-title {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 35, 58, 0.06);
  color: #1d4e63;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.site-shell .about-story-title {
  margin: 18px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  color: #10233a;
}

body.site-shell .about-story-copy {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.82;
  color: rgba(16, 35, 58, 0.78);
}

body.site-shell .about-stats-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.site-shell .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.site-shell .about-stat-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.site-shell .about-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
}

body.site-shell .about-stat-label {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 250, 255, 0.78);
}

body.site-shell .about-stats-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(244, 250, 255, 0.8);
}

body.site-shell .about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

body.site-shell .about-pillar-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(19, 40, 63, 0.08);
  box-shadow: 0 18px 42px rgba(19, 40, 63, 0.06);
}

body.site-shell .about-pillar-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(43, 184, 200, 0.12);
  color: #1d8b9a;
  font-size: 1.3rem;
}

body.site-shell .about-pillar-card h3 {
  margin: 16px 0 10px;
  font-size: 1rem;
  color: #10233a;
}

body.site-shell .about-pillar-card p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
  line-height: 1.72;
  font-size: 0.9rem;
}

body.site-shell .about-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.site-shell .about-process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(19, 40, 63, 0.07);
}

body.site-shell .about-process-step {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #10233a 0%, #2bb8c8 100%);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

body.site-shell .about-process-copy h3 {
  margin: 2px 0 8px;
  font-size: 0.98rem;
  color: #10233a;
}

body.site-shell .about-process-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(16, 35, 58, 0.72);
}

body.site-shell .about-section-intro {
  max-width: 780px;
  margin: 8px auto 0;
  color: rgba(16, 35, 58, 0.72);
  line-height: 1.8;
}

body.site-shell .team-grid--expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.site-shell .team-card--profile {
  text-align: left;
  padding: 22px;
}

body.site-shell .team-photo-shell {
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 35, 58, 0.06) 0%, rgba(43, 184, 200, 0.1) 100%);
  border: 1px solid rgba(19, 40, 63, 0.07);
}

body.site-shell .team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

body.site-shell .team-member-name {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #10233a;
}

body.site-shell .team-member-role {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f6f80;
}

body.site-shell .team-member-focus {
  margin: 12px 0 14px;
  color: rgba(16, 35, 58, 0.74);
  line-height: 1.7;
  font-size: 0.9rem;
}

body.site-shell .team-member-langs {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 35, 58, 0.06);
  color: #10233a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.site-shell .about-cert-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

body.site-shell .about-cert-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 40, 63, 0.08);
  color: #10233a;
  font-size: 0.84rem;
  font-weight: 700;
}

@media (min-width: 720px) and (max-width: 1039px) {
  body.site-shell .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.site-shell .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  body.site-shell .footer-brand-block {
    grid-column: auto;
  }
}

@media (max-width: 1179px) {
  body.site-shell .brand-lockup-image--nav {
    height: 58px;
    max-width: min(58vw, 240px);
  }

  body.site-shell .mobile-menu .lang-btn {
    min-width: 48px;
    height: 46px;
  }

  body.site-shell .about-pillars-grid,
  body.site-shell .about-process-list,
  body.site-shell .team-grid--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  body.site-shell .brand-lockup-image--nav {
    height: 52px;
    max-width: min(64vw, 220px);
  }

  body.site-shell .brand-lockup-image--mobile {
    height: 72px;
  }

  body.site-shell .brand-lockup-image--footer {
    height: 86px;
  }

  body.site-shell .footer-grid,
  body.site-shell .about-pillars-grid,
  body.site-shell .about-process-list,
  body.site-shell .team-grid--expanded {
    grid-template-columns: 1fr;
  }

  body.site-shell .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.site-shell .footer-languages {
    justify-content: flex-start;
  }

  body.site-shell .about-story-card,
  body.site-shell .about-process-card,
  body.site-shell .about-stats-card {
    padding: 20px;
    border-radius: 28px;
  }

  body.site-shell .about-stats-grid {
    gap: 12px;
  }

  body.site-shell .about-process-item {
    grid-template-columns: 1fr;
  }
}
