/* ============================================================
   MARO OFFICE s.r.o. — Main Stylesheet
   ============================================================ */

/* ─── 1. Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand colors (from logo) */
  --azure:          #00B4E6;
  --azure-light:    #33C5EC;
  --azure-pale:     #D0F0FA;
  --azure-dark:     #0090B8;
  --blue-brand:     #1A3FA8;
  --blue-mid:       #0F2570;
  --gradient-brand: linear-gradient(135deg, #00B4E6 0%, #1A3FA8 100%);
  --gradient-brand-hover: linear-gradient(135deg, #33C5EC 0%, #2952C8 100%);

  /* Aliases kept for backward compat */
  --navy:           #040C1A;
  --navy-deep:      #020810;
  --navy-light:     #0F2570;
  --navy-mid:       #1A3FA8;
  --gold:           #00B4E6;
  --gold-light:     #33C5EC;
  --gold-pale:      #D0F0FA;
  --gold-dark:      #0090B8;

  --white:         #FFFFFF;
  --off-white:     #F7F8FC;
  --gray-50:       #F1F5F9;
  --gray-100:      #E8EDF5;
  --gray-200:      #D1D9E6;
  --gray-300:      #A8B5CC;
  --gray-500:      #64748B;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-900:      #0F172A;
  --success:       #16A34A;
  --error:         #DC2626;

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font sizes */
  --text-xs:       0.75rem;
  --text-sm:       0.875rem;
  --text-base:     1rem;
  --text-lg:       1.125rem;
  --text-xl:       1.25rem;
  --text-2xl:      1.5rem;
  --text-3xl:      1.875rem;
  --text-4xl:      2.25rem;
  --text-5xl:      3rem;
  --text-6xl:      3.75rem;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Layout */
  --container:     1240px;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(4,12,26,0.08), 0 1px 2px rgba(4,12,26,0.04);
  --shadow:        0 4px 12px rgba(4,12,26,0.10), 0 2px 6px rgba(4,12,26,0.06);
  --shadow-md:     0 8px 24px rgba(4,12,26,0.12), 0 4px 10px rgba(4,12,26,0.08);
  --shadow-lg:     0 16px 48px rgba(4,12,26,0.16), 0 8px 20px rgba(4,12,26,0.10);
  --shadow-gold:   0 8px 32px rgba(0,180,230,0.25);

  /* Transitions */
  --transition:    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lg: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── 3. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; }

p { line-height: 1.75; color: var(--gray-600); }

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--gray-500);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

/* eyebrow::before intentionally removed — no decorative dash */

/* ─── 4. Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

section {
  position: relative;
}

/* ─── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(
    to right,
    #00B4E6 0%,
    #1A3FA8 49%,
    #0094CC 51%,
    #0F2570 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transition: background-position 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.2s ease,
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary::after { display: none; }

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 0 20px rgba(0,180,230,0.4), 0 8px 24px rgba(0,180,230,0.25);
  transform: scale(1.02);
}

.btn-primary:active { transform: scale(0.98); }

.btn-primary:hover svg { transform: translateX(4px); }

.btn-primary svg { transition: transform 0.2s ease; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.25s ease, color 0.25s ease,
              transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline:hover {
  border-color: #00B4E6;
  color: #00B4E6;
  background: transparent;
  transform: scale(1.02);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover { color: var(--gold-dark); }

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn:hover svg { transform: translateX(3px); }

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-base);
}

/* ─── 6. Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: #040C1A;
  overflow: hidden;
  transform: translateY(-100%);
  transition: background 0.3s ease, box-shadow 0.3s ease,
              height 0.3s ease, backdrop-filter 0.3s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.visible {
  transform: translateY(0);
}

.nav.scrolled {
  background: rgba(4,12,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  height: 66px;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* Logo — absolutely centered in the bar regardless of side-column widths */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Nav right group (CTA + hamburger) */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}

.nav-logo-circle {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
}

.nav-logo-sep { display: none; }

.nav-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: #00B4E6;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #00B4E6;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--white);
  font-weight: 600;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-phone {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color 0.25s ease;
}

.nav-phone:hover { color: var(--azure-light); }
.nav-phone svg { width: 15px; height: 15px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile .nav-link {
  font-size: var(--text-2xl);
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-3) var(--sp-6);
  font-weight: 600;
}

.nav-mobile .nav-link:hover { color: var(--gold); }
.nav-mobile .nav-link.active { color: var(--gold); }
.nav-mobile .nav-link::after { display: none; }

.nav-mobile-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: var(--sp-4) 0;
}

.nav-mobile-footer {
  margin-top: var(--sp-8);
  text-align: center;
}

.nav-mobile-footer p {
  color: rgba(255,255,255,0.45);
  font-size: var(--text-sm);
}

/* ─── 7. Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}

.section-header h2 {
  margin-bottom: var(--sp-5);
}

.section-header .lead {
  max-width: 560px;
  margin: 0 auto;
}

.section-header-left {
  text-align: left;
  max-width: none;
  margin-bottom: var(--sp-12);
}

/* ─── 8. Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Left: content pane */
.hero-content {
  position: relative;
  z-index: 5;
  background: var(--navy-deep);
  padding: calc(80px + var(--sp-16)) var(--sp-12) var(--sp-16) max(var(--sp-12), calc((100vw - var(--container)) / 2 + var(--sp-8)));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0,180,230,0.15);
  border: 1px solid rgba(0,180,230,0.35);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-6);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Right: visual pane */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

/* Decorative pattern */
.hero-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,180,230,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,180,230,0.06) 0%, transparent 40%);
}

/* Diagonal slice — angled cut on the left edge of the photo */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 80px;
  background: var(--navy-deep);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
  pointer-events: none;
}

/* Left-to-right dark gradient blending photo into background */
.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(
    to right,
    var(--navy-deep) 0%,
    rgba(2, 8, 16, 0.60) 22%,
    rgba(2, 8, 16, 0.15) 58%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,180,230,0.20);
  animation: rotate-ring 30s linear infinite;
}

.hero-ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 40s;
}

.hero-ring-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0,180,230,0.15);
  animation-duration: 25s;
  animation-direction: reverse;
}

.hero-ring-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0,180,230,0.30);
  animation-duration: 15s;
  border-width: 2px;
}

@keyframes rotate-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center emblem */
.hero-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(0,180,230,0.15);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-emblem-inner {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

/* ─── Floating cards on hero ─────────────────────────────────── */
.hero-float-wrap {
  position: absolute;
  z-index: 2;
}

/* Entrance → then continuous float (no time overlap = no conflict) */
.hero-float-wrap-1 {
  top: 18%;
  right: 10%;
  animation:
    float-in-right 0.7s 1.8s cubic-bezier(0.22, 1, 0.36, 1) both,
    card-float 4s 2.6s ease-in-out infinite;
}

.hero-float-wrap-2 {
  bottom: 22%;
  left: 14%;
  animation:
    float-in-up 0.7s 2.0s cubic-bezier(0.22, 1, 0.36, 1) both,
    card-float 5s 2.8s ease-in-out infinite;
}

/* Pause float + scale on wrapper hover */
.hero-float-wrap:hover {
  animation-play-state: paused;
}

.hero-float-wrap:hover .hero-float-card {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 4px 24px rgba(0,180,230,0.18);
}

/* Glassmorphism card */
.hero-float-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

/* Card 1 — číslo + popis */
.fc-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.fc-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
}

.fc-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

/* Card 2 — status s pulzující tečkou */
.fc-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.fc-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.65); }
  60%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.fc-status-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* Float keyframes */
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes float-in-right {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: max(var(--sp-12), calc((100vw - var(--container)) / 2 + var(--sp-8)));
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scan 2.5s ease-in-out infinite;
}

@keyframes scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── 9. Stats Bar ────────────────────────────────────────────── */
.stats {
  background: #0A0F1E;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  cursor: default;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 5vw, 5.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
}

.stat-suffix {
  font-size: 52%;
  color: #ffffff;
  opacity: 0.75;
  font-weight: 600;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ─── 10. Services Section ───────────────────────────────────── */
.services {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: var(--transition-lg);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(4,12,26,0.09), 0 2px 8px rgba(4,12,26,0.05);
  border-color: var(--gray-200);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
  color: var(--navy);
}

.service-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: var(--sp-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
  margin-top: auto;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.service-link:hover { color: var(--navy); }
.service-link:hover svg { transform: translateX(4px); }

/* Service number */
.service-card-num {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-family: var(--font-serif);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gray-50);
  line-height: 1;
  transition: color 0.35s ease;
  pointer-events: none;
}

.service-card:hover .service-card-num { color: var(--gold-pale); }

/* ─── 11. Why Choose Us ──────────────────────────────────────── */
.why-us {
  padding: var(--sp-24) 0;
  background: var(--off-white);
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-us-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-card-stack {
  position: relative;
  width: 340px;
  height: 440px;
}

.why-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.why-card-main {
  width: 280px;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-8);
}

.why-card-main h4 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-4);
}

.why-card-main p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.why-card-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0,180,230,0.2);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 0.25rem 0.875rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold-light);
}

.why-card-stat {
  width: 200px;
  bottom: 40px;
  right: 0;
  z-index: 3;
  padding: var(--sp-6);
  border-top: 3px solid var(--gold);
}

.why-card-stat-num {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.why-card-stat p {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.5;
}

.why-card-accent {
  width: 160px;
  bottom: 0;
  left: 30px;
  z-index: 1;
  background: var(--gold-pale);
  padding: var(--sp-5);
  border-top: 3px solid var(--gold-dark);
}

.why-card-accent p {
  font-size: var(--text-xs);
  color: var(--gold-dark);
  font-weight: 600;
  line-height: 1.5;
}

/* Feature list */
.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.why-feature {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.why-feature-body h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-1);
}

.why-feature-body p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--gray-500);
}

/* ─── 12. Testimonials ───────────────────────────────────────── */
.testimonials {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-lg);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: var(--sp-4);
}

.testimonial-card.featured .testimonial-quote { color: rgba(0,180,230,0.4); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.7); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
  background: rgba(0,180,230,0.2);
  color: var(--gold-light);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.testimonial-card.featured .testimonial-name { color: var(--white); }

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,0.45); }

/* ─── 13. CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  padding: var(--sp-24) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,180,230,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(26,63,168,0.8) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-12);
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-lg);
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}

.cta-phone-link svg { width: 15px; height: 15px; }
.cta-phone-link:hover { color: var(--gold-light); }

/* ─── 14. Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: calc(80px + var(--sp-16)) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0,180,230,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(26,63,168,0.5) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.page-hero .lead {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: var(--gold-light);
  transition: color 0.25s ease;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

/* ─── 15. Services Page ──────────────────────────────────────── */
.services-full {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  transition: var(--transition-lg);
}

.service-full-card:hover {
  box-shadow: inset 3px 0 0 var(--azure), var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}

.service-full-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-full-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-full-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.service-full-body p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.service-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-600);
}

/* Process steps */
.process {
  padding: var(--sp-24) 0;
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

.process-step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-pale);
}

.process-step h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-2);
  color: var(--navy);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.65;
}

/* FAQ */
.faq {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  gap: var(--sp-4);
}

.faq-item.open .faq-question { color: var(--gold-dark); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--gray-600);
}

/* ─── 16. About Page ──────────────────────────────────────────── */
.about-story {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-img-block {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,180,230,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(4,12,26,0.8) 0%, transparent 60%);
}

.about-img-emblem {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-img-emblem .big-m {
  font-family: var(--font-serif);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(0,180,230,0.15);
  line-height: 1;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-img-badge .badge-num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-img-badge .badge-text {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: 2px;
}

.about-img-badge-2 {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  background: var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  z-index: 2;
}

.about-img-badge-2 p {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-deep);
}

.about-story-content h2 {
  margin-bottom: var(--sp-6);
}

.about-story-content p {
  margin-bottom: var(--sp-5);
  font-size: var(--text-base);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.about-highlight {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Values */
.values {
  padding: var(--sp-24) 0;
  background: var(--navy);
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  transition: background 0.35s ease,
              border-color 0.35s ease,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(0, 180, 230, 0.2);
  border-top-color: var(--azure);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.value-card h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: var(--text-sm);
  line-height: 1.78;
}

/* Team */
.team {
  padding: var(--sp-24) 0;
  background: var(--white);
}

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

.team-card {
  text-align: center;
  transition: var(--transition-lg);
}

.team-card:hover { transform: translateY(-6px); }

.team-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--sp-5);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto;
  border: 3px solid var(--gray-100);
  transition: border-color 0.35s ease;
}

.team-card:hover .team-avatar { border-color: var(--gold); }

.team-badge {
  position: absolute;
  bottom: 4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-badge svg {
  width: 12px;
  height: 12px;
  color: var(--navy-deep);
}

.team-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  font-family: var(--font-serif);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* Certifications */
.certifications {
  padding: var(--sp-16) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.cert-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
}

.cert-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}

/* ─── 17. Contact Page ──────────────────────────────────────── */
.contact-section {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Contact Info */
.contact-info-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-8);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  color: var(--azure);
}

.contact-info-item:hover .ci-icon {
  background: #EAF5FC;
  border-color: var(--gray-200);
}

.ci-body .ci-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.ci-body .ci-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.ci-body .ci-sub {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.contact-hours h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-4);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--gray-100);
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: var(--gray-500); }
.hours-row .time { font-weight: 600; color: var(--navy); }
.hours-row .closed { color: var(--gray-300); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
}

.form-subtitle {
  color: var(--gray-500);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-8);
}

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

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--sp-2);
}

.form-label span {
  color: var(--error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(4,12,26,0.06);
  outline: none;
}

.form-control.error { border-color: var(--error); }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--sp-1);
  min-height: 16px;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.6;
}

.form-checkbox-label a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border: none;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,230,0.30);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

/* Form states */
.form-status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-5);
  display: none;
  align-items: flex-start;
  gap: var(--sp-3);
}

.form-status.show { display: flex; }

.form-status.success {
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--success);
}

.form-status.error {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  color: var(--error);
}

.form-status svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Map */
.map-section {
  height: 400px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── 18. Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: var(--sp-20) 0 0;
  color: rgba(255,255,255,0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-6);
  max-width: 340px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}

.footer-contact-item:hover a, .footer-contact-item a:hover { color: var(--gold-light); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--gold-light); }

/* Footer newsletter */
.footer-newsletter p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--white);
  transition: var(--transition);
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus {
  border-color: rgba(0,180,230,0.5);
  outline: none;
  background: rgba(255,255,255,0.08);
}

.footer-newsletter-btn {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-newsletter-btn:hover { background: var(--gold-light); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer-copy strong { color: rgba(255,255,255,0.5); }

.footer-legal {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--gold-light); }

/* ─── 19. Scroll Animations ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] { transform: translateY(32px); }
[data-animate="fade-down"] { transform: translateY(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="scale"] { transform: scale(0.92); }
[data-animate="zoom"] { transform: scale(0.85); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }
[data-delay="700"] { transition-delay: 0.70s; }
[data-delay="800"] { transition-delay: 0.80s; }

/* ─── 20. Utilities ──────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-serif { font-family: var(--font-serif); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: var(--sp-6) 0;
}

.section-divider.center { margin: var(--sp-6) auto; }

/* ─── 22. Homepage redesign additions ───────────────────────── */

/* Section padding increase */
.services, .why-us, .testimonials {
  padding: 7.5rem 0;
}

/* ─── Hero photo ──────────────────────────────────────────────── */
.hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Subtle dark vignette */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,8,16,0.10) 0%,
    rgba(2,8,16,0.35) 100%
  );
  pointer-events: none;
}

/* ─── Location badge ─────────────────────────────────────────── */
.hero-loc-badge {
  position: absolute;
  bottom: 2.25rem;
  left: 2.25rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  animation: badge-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s both;
}

.hero-loc-badge .badge-star {
  color: #C8A84B;
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Shimmer sweep */
.hero-loc-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 100%
  );
  transform: translateX(-220%);
  animation: badge-shimmer 4s ease-in-out 2.4s infinite;
}

@keyframes badge-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes badge-shimmer {
  0%   { transform: translateX(-220%); }
  35%  { transform: translateX(420%); }
  100% { transform: translateX(420%); }
}

/* Stat year — stacked "od roku" stat number */
.stat-year {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 5vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Why features — numbered instead of icon boxes */
.why-feature-num {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--azure);
  min-width: 3rem;
  flex-shrink: 0;
  line-height: 1.1;
  opacity: 0.85;
}

/* Testimonial border-left style */
.testimonial-border {
  border-left: 3px solid var(--azure);
  border-radius: 0 16px 16px 0;
  padding-left: 2rem;
}

.testimonial-border.featured {
  border-left-color: var(--azure-light);
}

/* Footer 3-column layout (no newsletter) */
.footer-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* ─── 21. Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: calc(80px + var(--sp-16)) var(--sp-8) var(--sp-12);
    max-width: 100%;
  }

  .hero-visual {
    min-height: 360px;
    height: 360px;
  }

  .hero-visual::before { display: none; }

  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .why-us-visual { order: -1; }
  .why-us-card-stack { margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { align-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-grid-3 { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .about-story-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --sp-24: 4rem;
    --sp-20: 3.5rem;
    --sp-16: 3rem;
  }

  .container { padding: 0 var(--sp-5); }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-logo {
    position: static;
    left: auto;
    transform: none;
  }

  .nav-right { margin-left: 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: block; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .why-us-card-stack { width: 100%; max-width: 300px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cert-list { gap: var(--sp-3); }
  .cert-item { font-size: var(--text-xs); padding: var(--sp-3) var(--sp-4); }
}

/* ─────────────────────────────────────────────────────────────────
   ANIMATIONS — Linear / Stripe / Vercel style
   ───────────────────────────────────────────────────────────────── */

/* Hero title — letter-by-letter reveal */
@keyframes letter-up {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal-letter {
  display: inline-block;
  animation: letter-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero badge entrance */
.hero-eyebrow {
  animation: hero-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* Hero lead + actions fade up */
.hero-lead {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.hero-actions {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Service link arrow */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ─── Hero kicker label ──────────────────────────────────────── */
.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-5);
  animation: hero-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0s both;
}

/* ─── Hero sub text ──────────────────────────────────────────── */
.hero-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-8);
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 1.35s both;
}

.hero-sub strong {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Override hero-actions animation delay to 1.55s */
.hero-actions {
  animation-delay: 1.55s;
}

/* ─── Hero trust strip ───────────────────────────────────────── */
.hero-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--sp-8);
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 1.8s both;
}

.hero-trust-strip span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.07em;
  font-weight: 500;
  padding: 0 1rem;
  position: relative;
  white-space: nowrap;
}

.hero-trust-strip span:first-child { padding-left: 0; }

.hero-trust-strip span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.18);
}

/* ─── Stat number stacked (for "od roku" prefix) ────────────── */
.stat-number--stacked {
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.stat-since {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}

/* ─── Values mini grid (homepage about section) ──────────────── */
.values-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gray-200);
}

.value-mini-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--sp-2);
  color: var(--navy);
}

.value-mini-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ─── Why choose us section ──────────────────────────────────── */
.why-choose {
  padding: 7.5rem 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-16);
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
}

.why-choose-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.why-choose-text {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  padding-top: 0.3rem;
}

/* ─── Process 3-column variant ───────────────────────────────── */
.process-steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

.process-steps--3::before {
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
}

/* ─── Pro koho section (o-nas page) ──────────────────────────── */
.pro-koho {
  padding: 8.5rem 0 9rem;
  background: var(--off-white);
}

.pro-koho-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.pro-koho-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  cursor: default;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.38s ease,
              border-color 0.25s ease;
}

.pro-koho-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(4, 12, 26, 0.07), 0 2px 8px rgba(4, 12, 26, 0.04);
  border-color: var(--gray-200);
}

.pro-koho-item span {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.35;
}

/* ─── Dark section contextual overrides ─────────────────────── */
.cta-banner .eyebrow {
  color: var(--gold-light);
}

.values .section-header .eyebrow {
  color: var(--gold-light);
}

.values .section-header h2 {
  color: var(--white);
}

.values .section-header .lead {
  color: rgba(255,255,255,0.55);
}

/* Contact action buttons group */
.contact-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Responsive adjustments for new classes */
@media (max-width: 1100px) {
  .values-mini-grid { grid-template-columns: 1fr 1fr; }
  .pro-koho-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-trust-strip { display: none; }
  .values-mini-grid { grid-template-columns: 1fr; }
  .pro-koho-list { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================================================================
   PREMIUM POLISH
   Final visual refinement — typography, atmosphere, interactions
   ================================================================ */

/* ─── P0: Global transitions & easing ───────────────────────── */
:root {
  --transition:    all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lg: all 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── P1: Typography hierarchy ───────────────────────────────── */

/* Enable OpenType features on all headings */
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Larger, editorial h1 with tighter tracking */
h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.875rem, 3.8vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1875rem, 2vw, 1.4375rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
}

h4 {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.006em;
}

p {
  line-height: 1.8;
}

.lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.75;
  font-weight: 400;
}

/* Eyebrow label */
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-4);
}

/* ─── P2: Hero — cinematic atmosphere ────────────────────────── */

/* hero::before disabled — left panel covered directly by hero-content background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
}

/* Subtle noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.022;
  mix-blend-mode: screen;
}

/* ─── P3: Hero content typography ────────────────────────────── */

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero h1 em {
  font-size: 0.88em;
  letter-spacing: -0.028em;
}

.hero-kicker {
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--sp-6);
}

.hero-lead {
  font-size: 0.9875rem;
  color: rgba(255, 255, 255, 0.54);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.hero-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: var(--sp-10);
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.hero-trust-strip {
  margin-top: var(--sp-10);
}

.hero-trust-strip span {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── P4: Stats bar ──────────────────────────────────────────── */

.stat-item {
  padding: 3.5rem 2.5rem;
}

.stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.27);
}

/* ─── P5: Section headers ────────────────────────────────────── */

.section-header {
  margin-bottom: var(--sp-20);
}

.section-header h2 {
  margin-bottom: var(--sp-4);
}

.section-header .lead {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ─── P6: Service cards (homepage) ──────────────────────────── */

.services {
  padding: 8.5rem 0;
}

/* Two-column grid matching /sluzby layout */
.services-hp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Icon box — light gray (no dark background) */
.service-hp-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-hp-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
  transition: color 0.3s ease;
}

.service-full-card:hover .service-hp-icon {
  background: rgba(0, 180, 230, 0.08);
  border-color: rgba(0, 180, 230, 0.22);
}

.service-full-card:hover .service-hp-icon svg {
  color: var(--azure);
}

/* CTA link — spacing above, arrow slide on hover */
.service-full-body .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: var(--sp-4);
}

.service-full-body .service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.service-full-body .service-link:hover svg {
  transform: translateX(4px);
}

/* Service link — small uppercase */
.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure-dark);
  transition: color 0.2s ease;
}

.service-link:hover {
  color: var(--navy);
}

/* ─── P7: About / Why-us section ─────────────────────────────── */

.why-us {
  padding: 8.5rem 0;
}

.why-us-content .lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--sp-6);
}

.why-us-content > p,
.why-us-content p {
  font-size: 0.9375rem;
  line-height: 1.88;
  color: var(--gray-500);
}

.value-mini-card {
  padding: 1.75rem;
}

.value-mini-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: var(--sp-2);
}

.value-mini-card p {
  font-size: 0.875rem;
  line-height: 1.72;
}

/* ─── P8: Why-choose — accent line ───────────────────────────── */

.why-choose {
  padding: 8.5rem 0;
}

.why-choose-grid {
  margin-top: var(--sp-12);
  gap: 3rem 5rem;
}

.why-choose-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  border: none;
  transition: none;
}

.why-choose-item:first-child {
  border: none;
}

/* Thin cyan accent line — expands left-to-right on scroll reveal */
.why-choose-accent {
  width: 0;
  height: 2px;
  background: var(--azure);
  border-radius: 2px;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.why-choose-item.animated .why-choose-accent {
  width: 30px;
}

.why-choose-text {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.9vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--navy);
  padding-top: 0;
  transition: color 0.22s ease;
}

/* ─── P9: Services full (sluzby page) ────────────────────────── */

.services-full {
  padding: 8.5rem 0;
}

.service-full-card {
  padding: var(--sp-8) var(--sp-9);
  gap: var(--sp-7);
  border-color: rgba(0, 0, 0, 0.055);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.22s ease;
}

/* Lighter, more editorial icon treatment */
.service-full-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.service-full-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.service-full-body h3 {
  font-size: 1.0625rem;
  letter-spacing: -0.012em;
  line-height: 1.32;
  margin-bottom: var(--sp-2);
}

.service-full-body p {
  font-size: 0.9rem;
  line-height: 1.83;
  margin-bottom: var(--sp-4);
}

/* ─── P10: Process section ───────────────────────────────────── */

.process {
  padding: 8.5rem 0;
}

.process-step h4 {
  font-size: 0.9375rem;
  letter-spacing: -0.006em;
  line-height: 1.4;
  margin-bottom: var(--sp-3);
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.78;
}

/* ─── P11: FAQ — smooth, tactile accordion ───────────────────── */

.faq {
  padding: 8.5rem 0;
}

.faq-item {
  border-color: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: rgba(0, 180, 230, 0.18);
  box-shadow: 0 2px 20px rgba(0, 180, 230, 0.055);
}

.faq-question {
  padding: 1.375rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.52;
}

/* Smooth fade + slide combined */
.faq-answer {
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.32s ease 0.04s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 640px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9rem;
  line-height: 1.87;
  color: var(--gray-500);
}

/* ─── P12: About page ────────────────────────────────────────── */

.about-story {
  padding: 8.5rem 0;
}

.about-story-content p {
  font-size: 0.9375rem;
  line-height: 1.88;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: var(--sp-5);
}

/* Values section */
.values {
  padding: 8.5rem 0;
}

.value-card {
  padding: 2.75rem 2.5rem;
}

.value-card h4 {
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.78;
}

/* Pro koho — no additional overrides needed, see base section */

/* ─── P13: Contact page ──────────────────────────────────────── */

.contact-section {
  padding: 8.5rem 0;
}

.contact-info-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
}

.contact-hours {
  background: var(--gray-50);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: var(--radius-sm);
}

.contact-form-wrap {
  padding: 3.5rem;
  border-color: rgba(0, 0, 0, 0.065);
  box-shadow: 0 4px 32px rgba(4, 12, 26, 0.065), 0 1px 4px rgba(4, 12, 26, 0.04);
}

.form-title {
  font-size: 1.5rem;
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-2);
}

.form-subtitle {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: var(--sp-8);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-700);
  margin-bottom: var(--sp-2);
}

.form-control {
  background: var(--gray-50);
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease,
              background 0.2s ease;
}

.form-control:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(0, 180, 230, 0.1);
  background: var(--white);
  outline: none;
}

/* ─── P14: CTA banner ────────────────────────────────────────── */

.cta-banner {
  padding: 8.5rem 0;
}

.cta-inner h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.022em;
  line-height: 1.16;
  margin-bottom: var(--sp-4);
}

.cta-inner p {
  font-size: 1rem;
  line-height: 1.75;
}

/* ─── P15: Page hero (inner pages) ──────────────────────────── */

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}

.page-hero .lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.78;
  max-width: 540px;
}

/* ─── P16: Scroll animations — cinematic easing ─────────────── */

[data-animate] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-animate="fade-up"]    { transform: translateY(22px); }
[data-animate="fade-left"]  { transform: translateX(22px); }
[data-animate="fade-right"] { transform: translateX(-22px); }
[data-animate="scale"]      { transform: scale(0.96); }
[data-animate="zoom"]       { transform: scale(0.92); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Stagger delays extended for premium feel */
[data-delay="100"] { transition-delay: 0.08s; }
[data-delay="150"] { transition-delay: 0.14s; }
[data-delay="200"] { transition-delay: 0.18s; }
[data-delay="250"] { transition-delay: 0.24s; }
[data-delay="300"] { transition-delay: 0.28s; }
[data-delay="350"] { transition-delay: 0.34s; }
[data-delay="400"] { transition-delay: 0.38s; }
[data-delay="500"] { transition-delay: 0.48s; }

/* ─── P17: Footer ────────────────────────────────────────────── */

.footer-logo {
  gap: 1rem;
}

.footer-logo-sep {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0.875rem;
  flex-shrink: 0;
  display: block;
}

/* Unified column headings: logo name = Služby = Firma */
.footer-logo-name,
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.footer-col h5 {
  margin-bottom: var(--sp-5);
  padding-top: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.78;
}

/* ─── P18: Nav polish ────────────────────────────────────────── */

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-phone {
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

/* ─── P19: Section dividers ──────────────────────────────────── */

.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), rgba(0, 180, 230, 0.3));
  border-radius: 2px;
  margin: var(--sp-5) 0;
}

.section-divider.center {
  margin: var(--sp-5) auto;
}

/* ─── P20: Responsive — mobile premium feel ─────────────────── */

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3rem);
    letter-spacing: -0.02em;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .contact-form-wrap {
    padding: 2rem;
  }

  .value-card {
    padding: 1.75rem 1.5rem;
  }

  .service-full-card {
    padding: var(--sp-6);
    flex-direction: column;
    gap: var(--sp-4);
  }

  .services-hp-grid {
    grid-template-columns: 1fr;
  }

  .service-hp-icon {
    width: 44px;
    height: 44px;
  }

  .service-hp-icon svg {
    width: 22px;
    height: 22px;
  }

  .cta-banner,
  .services, .why-us, .why-choose,
  .services-full, .process, .faq,
  .about-story, .values, .pro-koho,
  .contact-section {
    padding: 5rem 0;
  }
}

/* ================================================================
   REFINEMENTS V2 — Footer logo, cookie banner, visual polish
   ================================================================ */

/* ─── Footer logo image (replaces lettermark) ─────────────────── */
.footer-logo-circle {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.footer-logo-circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  height: 175px;
  object-fit: contain;
  display: block;
}

/* ─── Cookie consent banner ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(4, 12, 26, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transform: translateY(110%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.125rem var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--azure-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.cookie-banner-text a:hover { opacity: 0.75; }

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-shrink: 0;
}

.cookie-btn-more {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-more:hover { color: rgba(255, 255, 255, 0.62); }

.cookie-btn-accept {
  padding: 0.5625rem 1.5rem;
  background: linear-gradient(135deg, #00B4E6 0%, #1A3FA8 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: 1.25rem var(--sp-5);
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* ─── Unified dark section atmosphere ────────────────────────── */
.cta-banner::before {
  background:
    radial-gradient(ellipse 120% 110% at 22% 52%,
      rgba(0, 180, 230, 0.07) 0%, transparent 56%),
    radial-gradient(ellipse 85% 115% at 88% 18%,
      rgba(26, 63, 168, 0.62) 0%, transparent 62%),
    radial-gradient(ellipse 100% 55% at 50% 115%,
      rgba(2, 8, 16, 0.45) 0%, transparent 68%);
}

.page-hero::before {
  background:
    radial-gradient(ellipse 110% 100% at 18% 55%,
      rgba(0, 180, 230, 0.06) 0%, transparent 56%),
    radial-gradient(ellipse 80% 110% at 88% 22%,
      rgba(26, 63, 168, 0.52) 0%, transparent 62%),
    radial-gradient(ellipse 100% 55% at 50% 115%,
      rgba(2, 8, 16, 0.40) 0%, transparent 68%);
}

/* ─── Legal pages ─────────────────────────────────────────────── */
.legal-page {
  padding: 5.5rem 0 9rem;
  background: var(--white);
}

.legal-content {
  max-width: 740px;
}

.legal-intro {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--gray-600);
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.legal-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.legal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.legal-meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1875rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
  letter-spacing: -0.015em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.87;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 600;
  font-size: 0.875rem;
}

.legal-content a {
  color: var(--azure-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* ─── Editorial spacing variation ────────────────────────────── */
.services-full   { padding-bottom: 9rem; }
.process         { padding: 7.5rem 0 9rem; }
.faq             { padding: 8.5rem 0 7.5rem; }
.about-story     { padding: 9rem 0 8rem; }
.values          { padding: 8rem 0 9rem; }
.pro-koho        { padding: 8.5rem 0 9rem; }

/* ─── Micro-interaction refinements ──────────────────────────── */
.why-choose-item:hover .why-choose-accent { background: var(--azure-dark); }
.why-choose-item:hover .why-choose-text { color: var(--azure-dark); }

.section-header > h2:first-child { margin-top: 0; }

@media (max-width: 768px) {
  .legal-meta { flex-direction: column; gap: 1rem; }
  .legal-page { padding: 3rem 0 6rem; }
}

/* ================================================================
   CINEMATIC V3 — Unified atmosphere, premium motion, composition
   ================================================================ */

/* ─── Shared keyframes ───────────────────────────────────────── */

@keyframes cine-drift {
  0%   { transform: scale(1)    translate(0%,      0%   ); }
  34%  { transform: scale(1.04) translate(1.5%,   -0.9%); }
  67%  { transform: scale(1.02) translate(-0.8%,   1.1%); }
  100% { transform: scale(1)    translate(0%,      0%   ); }
}

@keyframes cine-breathe {
  0%, 100% { opacity: 0.58; }
  50%       { opacity: 1;    }
}

@keyframes page-hero-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ─── Unified gradient — CTA Banner ─────────────────────────── */

.cta-banner {
  padding: 9rem 0;
}

.cta-banner::before {
  inset: -20%;
  background:
    radial-gradient(ellipse 68% 85%  at  6% 82%,  rgba(0, 180, 230, 0.13) 0%, transparent 58%),
    radial-gradient(ellipse 62% 95%  at 94%  5%,  rgba(26,  63, 168, 0.60) 0%, transparent 65%),
    radial-gradient(ellipse 80% 45%  at 50% 128%, rgba(2,   8,  16, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 55% 48%  at 24% 30%,  rgba(0, 130, 180, 0.04) 0%, transparent 52%);
  animation: cine-drift 30s ease-in-out infinite;
  will-change: transform;
}

/* ─── Unified gradient — Page Hero ──────────────────────────── */

.page-hero {
  padding: calc(80px + 5rem) 0 7rem;
}

.page-hero::before {
  inset: -20%;
  background:
    radial-gradient(ellipse 62% 78%   at  9% 80%,  rgba(0, 180, 230, 0.12) 0%, transparent 56%),
    radial-gradient(ellipse 55% 90%   at 92%  6%,  rgba(26,  63, 168, 0.54) 0%, transparent 62%),
    radial-gradient(ellipse 115% 38%  at 50% 122%, rgba(2,   8,  16, 0.52) 0%, transparent 68%);
  animation: cine-drift 24s ease-in-out infinite;
  will-change: transform;
}

/* Soft bottom fade into page content */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 8, 16, 0.20) 100%);
}

/* ─── Page hero — content reveal animations ─────────────────── */

.page-hero-inner .breadcrumb {
  animation: page-hero-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.page-hero-inner h1 {
  animation: page-hero-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.page-hero-inner .lead {
  animation: page-hero-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

/* ─── Page hero — composition & spacing ─────────────────────── */

.page-hero-inner {
  max-width: 840px;
}

.breadcrumb {
  margin-bottom: var(--sp-8);
}

.page-hero h1 {
  margin-bottom: var(--sp-6);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.54);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CTA Banner — composition & spacing ────────────────────── */

.cta-inner {
  gap: var(--sp-16);
}

.cta-inner h2 {
  letter-spacing: -0.024em;
  line-height: 1.13;
}

/* Thin azure rule before CTA heading */
.cta-inner h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--azure), rgba(0, 180, 230, 0.25));
  margin-bottom: 1.25rem;
  opacity: 0.72;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: var(--sp-3);
}

.cta-phone-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: color 0.3s cubic-bezier(0.25, 0, 0.25, 1);
}

.cta-phone-link:hover { color: rgba(255, 255, 255, 0.72); }

/* ─── CTA Banner — button premium hover ─────────────────────── */

.cta-banner .btn-primary {
  transition:
    transform  0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s  cubic-bezier(0.25, 0,    0.25, 1),
    opacity    0.2s  ease;
}

.cta-banner .btn-primary:hover {
  transform:  translateY(-2px) scale(1.018);
  box-shadow: 0 14px 40px rgba(0, 180, 230, 0.28),
              0 4px  18px rgba(0,   0,   0, 0.26);
}

/* ─── Main hero — left panel has no overlay, solid color from hero-content bg ── */

.hero-content::before {
  display: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-hero {
    padding: calc(80px + 2.5rem) 0 4rem;
  }

  .cta-banner {
    padding: 5.5rem 0;
  }

  .cta-inner h2::before {
    margin-bottom: 1rem;
  }
}

/* ================================================================
   SERVICES PAGE V3 — Premium editorial cards
   ================================================================ */

/* ─── Section & grid ─────────────────────────────────────────── */

.services-full {
  padding: 9rem 0 10rem;
}

.services-full-grid {
  gap: 1.25rem;
}

/* Primary service spans full width — breaks machine symmetry */
.services-full-grid .service-full-card:first-child {
  grid-column: 1 / -1;
}

/* ─── Card base ───────────────────────────────────────────────── */

.service-full-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(4, 12, 26, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  gap: 2.5rem;
  align-items: flex-start;
  transition:
    border-color 0.38s cubic-bezier(0.25, 0, 0.25, 1),
    box-shadow   0.38s cubic-bezier(0.25, 0, 0.25, 1),
    transform    0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Accent line — grows from left on hover */
.service-full-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--azure), rgba(0, 180, 230, 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25, 0, 0.25, 1);
}

.service-full-card:hover::after {
  transform: scaleX(1);
}

.service-full-card:hover {
  border-color: rgba(0, 180, 230, 0.15);
  box-shadow:
    0 0 0 1px rgba(0, 180, 230, 0.04),
    0 8px 40px rgba(4, 12, 26, 0.07),
    0 2px 16px rgba(0, 180, 230, 0.055);
  transform: translateY(-4px);
}

/* First card — slight featured background */
.services-full-grid .service-full-card:first-child {
  background: #F9FCFF;
  border-color: rgba(0, 180, 230, 0.09);
}

/* ─── Icon — bare line, no background ────────────────────────── */

.service-full-icon {
  width: 44px;
  height: 44px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-full-icon svg {
  width: 38px;
  height: 38px;
  color: var(--navy);
  opacity: 0.42;
  transition:
    color     0.35s ease,
    opacity   0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-full-card:hover .service-full-icon svg {
  color: var(--azure-dark);
  opacity: 0.92;
  transform: scale(1.06) translateY(-1px);
}

/* ─── Card typography ────────────────────────────────────────── */

.service-full-body h3 {
  font-size: 1.1875rem;
  letter-spacing: -0.014em;
  color: var(--navy);
  margin-bottom: 0.875rem;
  transition: color 0.3s ease;
}

.service-full-card:hover .service-full-body h3 {
  color: var(--blue-brand);
}

.service-full-body p {
  font-size: 0.9375rem;
  line-height: 1.84;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* ─── Tags ────────────────────────────────────────────────────── */

.service-tags { gap: 0.5rem; }

.service-tag {
  padding: 0.2rem 0.7rem;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.service-full-card:hover .service-tag {
  border-color: rgba(0, 180, 230, 0.3);
  color: var(--azure-dark);
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .service-full-card { padding: 2.25rem 2.5rem; gap: 2rem; }
}

@media (max-width: 768px) {
  .services-full { padding: 5rem 0 6rem; }
  .services-full-grid .service-full-card:first-child { grid-column: unset; }
  .service-full-card { padding: 1.75rem; gap: 1.5rem; }
  .service-full-icon { width: 36px; height: 36px; }
  .service-full-icon svg { width: 30px; height: 30px; }
}

/* ================================================================
   PROCESS SECTION V3 — Premium editorial vertical steps
   ================================================================ */

@keyframes num-slide-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 0.15; transform: translateX(0); }
}

.process {
  padding: 9.5rem 0 10rem;
  background: var(--white);
}

/* Kill old horizontal connector line */
.process-steps::before,
.process-steps--3::before {
  display: none;
}

/* Override grid — vertical stack */
.process-steps,
.process-steps--3 {
  display: block;
}

/* ─── Step row ────────────────────────────────────────────────── */

.process-step {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0 5rem;
  padding: 4.25rem 0;
  border-top: 1px solid rgba(4, 12, 26, 0.07);
  text-align: left;
  position: relative;
  align-items: start;
}

.process-step:last-child {
  border-bottom: 1px solid rgba(4, 12, 26, 0.07);
}

/* Left accent line grows down on hover */
.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5px;
  height: 0%;
  background: linear-gradient(to bottom, var(--azure), rgba(0, 180, 230, 0.3));
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.process-step:hover::after {
  height: 100%;
}

/* ─── Number — large editorial serif ghost numeral ───────────── */

.process-step-num {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: block;
  margin: 0;
  padding-top: 0.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  opacity: 0.15;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.process-step:hover .process-step-num {
  opacity: 0.3;
}

/* Kill old circle ring if any ::before exists */
.process-step-num::before {
  display: none;
}

/* Slide-in animation triggered by intersection observer */
.process-step.animated .process-step-num {
  animation: num-slide-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s backwards;
}

/* ─── Step content typography ────────────────────────────────── */

.process-step-content h4,
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.875rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.process-step-content p,
.process-step p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.82;
  max-width: 540px;
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 6rem 1fr;
    gap: 0 3.5rem;
  }

  .process-step-num {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 5rem 0 6rem;
  }

  .process-step {
    grid-template-columns: 4.5rem 1fr;
    gap: 0 2rem;
    padding: 2.5rem 0;
  }

  .process-step-num {
    font-size: 3rem;
  }

  .process-step-content p,
  .process-step p {
    max-width: none;
  }
}

/* ================================================================
   ABOUT PAGE V3 — Refined layout + Team section
   ================================================================ */

/* ─── Bullet highlights — left-border, no icons ──────────────── */

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2.5rem;
  margin-top: 2.5rem;
}

.about-highlight {
  display: block;
  padding: 0.875rem 0 0.875rem 1.25rem;
  border-left: 1.5px solid rgba(0, 180, 230, 0.22);
  transition: border-color 0.3s ease;
}

.about-highlight:hover {
  border-color: var(--azure);
}

.about-highlight p {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
  line-height: 1.55;
}


/* ─── Team section ────────────────────────────────────────────── */

.team {
  padding: 9.5rem 0 10rem;
  background: var(--white);
  border-top: 1px solid rgba(4, 12, 26, 0.06);
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

/* ─── Photo frame ─────────────────────────────────────────────── */

.team-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 70% 80% at 35% 40%, rgba(0, 180, 230, 0.07) 0%, transparent 58%),
    linear-gradient(160deg, #EEF4FA 0%, #D6E4EF 100%);
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(12%);
  transition: filter 0.65s ease, transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.team-photo-frame:hover .team-photo-img {
  filter: grayscale(0%);
  transform: scale(1.025);
}

/* ─── Team content ────────────────────────────────────────────── */

.team-content h2 {
  margin-bottom: 0;
}

.team-lead {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.82;
  margin-top: var(--sp-6);
  margin-bottom: 2.75rem;
}

/* ─── Member list ─────────────────────────────────────────────── */

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(4, 12, 26, 0.07);
}

.team-member {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(4, 12, 26, 0.07);
  transition:
    padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.team-member:hover {
  padding-left: 0.625rem;
  border-color: rgba(0, 180, 230, 0.22);
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.012em;
}

.team-member-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .team-inner { gap: 5rem; }
}

@media (max-width: 900px) {
  .team-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .team-photo-frame {
    aspect-ratio: 16 / 9;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team {
    padding: 5rem 0 6rem;
  }
}


/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

/* ─── Section wrapper ────────────────────────────────────── */

.blog-listing {
  padding: 5rem 0 7rem;
  background: var(--off-white);
  min-height: 40vh;
}

/* ─── Category filter bar ────────────────────────────────── */

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.blog-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.blog-filter-btn:hover {
  border-color: var(--azure);
  color: var(--azure-dark);
}

.blog-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── Blog grid ──────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ─── Blog card ──────────────────────────────────────────── */

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform  0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.blog-card-image--placeholder span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}

.blog-card-body {
  padding: 1.5rem 1.625rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.blog-card-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure-dark);
  background: var(--azure-pale);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: var(--gray-400, var(--gray-500));
  font-weight: 400;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
  color: var(--azure-dark);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--azure-dark);
  letter-spacing: 0.01em;
  margin-top: auto;
  transition: gap 0.2s;
}

.blog-card-read-more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.blog-card:hover .blog-card-read-more {
  gap: 0.5rem;
}

.blog-card:hover .blog-card-read-more svg {
  transform: translateX(3px);
}

/* ─── Loading state ──────────────────────────────────────── */

.blog-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}

.blog-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.blog-loading-dots {
  display: flex;
  gap: 0.5rem;
}

.blog-loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
  animation: blog-dot-bounce 1.4s infinite ease-in-out;
}

.blog-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.blog-loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.blog-loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes blog-dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1.0); opacity: 1.0; }
}

/* ─── Empty & error states ───────────────────────────────── */

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--gray-500);
  font-size: 1rem;
}

.hidden { display: none !important; }

.blog-fetch-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--error);
  font-size: 0.9375rem;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-listing { padding: 3.5rem 0 5rem; }
  .blog-filter   { margin-bottom: 2rem; }
}


/* ============================================================
   ARTICLE PAGE
   ============================================================ */

/* ─── Article hero ───────────────────────────────────────── */

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-category-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--azure-dark);
  background: rgba(0, 180, 230, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.article-date {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ─── Featured image ─────────────────────────────────────── */

.article-featured-image {
  background: var(--navy-deep, var(--navy));
  padding: 0 0 3.5rem;
}

.article-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}

.article-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Article body layout ────────────────────────────────── */

.article-body {
  padding: 5rem 0 7rem;
  background: var(--off-white);
}

.article-body-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

/* ─── Article content typography ─────────────────────────── */

.article-content {
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-sm);
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}

.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 2rem 0 0.75rem;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--gray-700);
  margin-bottom: 1.375rem;
}

.article-content p:last-child { margin-bottom: 0; }

.article-content ul,
.article-content ol {
  margin: 0 0 1.375rem 1.375rem;
  padding: 0;
}

.article-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.article-content strong { font-weight: 600; color: var(--navy); }
.article-content em     { font-style: italic; }

.article-content a {
  color: var(--azure-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.article-content a:hover { color: var(--navy); }

/* ─── Blockquote ─────────────────────────────────────────── */

.article-quote,
.article-content blockquote {
  border-left: 3px solid var(--azure);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--azure-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-quote p,
.article-content blockquote p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.article-quote cite,
.article-content blockquote cite {
  display: block;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* ─── Figures & images ───────────────────────────────────── */

.article-figure {
  margin: 2rem 0;
  text-align: center;
}

.article-figure img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: block;
}

.article-figure figcaption,
.article-content figcaption {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.625rem;
  font-style: italic;
}

/* ─── Article sidebar ────────────────────────────────────── */

.article-sidebar {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.sidebar-logo {
  margin-bottom: 0.875rem;
}

.sidebar-author {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sidebar-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sidebar-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400, var(--gray-500));
  margin-bottom: 0.875rem;
}

.sidebar-back-link {
  font-size: 0.875rem;
  color: var(--azure-dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s, color 0.2s;
}

.sidebar-back-link:hover {
  gap: 0.5rem;
  color: var(--navy);
}

/* ─── Article tags ───────────────────────────────────────── */

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.01em;
}

/* ─── Responsive article ─────────────────────────────────── */

@media (max-width: 1024px) {
  .article-body-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .article-sidebar-card {
    flex: 1 1 240px;
  }
}

@media (max-width: 768px) {
  .article-body { padding: 3rem 0 5rem; }

  .article-content {
    padding: 2rem 1.5rem;
  }

  .article-content h2 { font-size: 1.375rem; }
  .article-content h3 { font-size: 1.125rem; }

  .article-hero-figure { aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
  .article-content {
    padding: 1.5rem 1.25rem;
  }

  .article-sidebar {
    flex-direction: column;
  }
}
