/* ======================================
   ŽIVÁ CESTA DIGITAL — MAIN STYLESHEET
   Neo Brutalist Design System
   ====================================== */


:root {
  --color-primary: #1A1A2E;
  --color-primary-tint: #242440;
  --color-secondary: #F5F0E8;
  --color-secondary-dark: #EDE7D8;
  --color-accent: #E8441A;
  --color-accent-hover: #C93510;
  --color-accent-yellow: #F5C842;
  --color-accent-yellow-hover: #DEB030;
  --color-accent-green: #2D8A4E;
  --color-accent-green-hover: #236B3C;
  --color-text-dark: #1A1A2E;
  --color-text-body: #2C2C42;
  --color-text-muted: #5A5A72;
  --color-text-light: #F5F0E8;
  --color-border: #1A1A2E;
  --color-border-light: #D4CEBC;
  --color-white: #FAFAF8;
  --nav-height: 72px;

  --shadow-brutal: 4px 4px 0 var(--color-border);
  --shadow-brutal-yellow: 4px 4px 0 var(--color-accent-yellow);
  --shadow-brutal-accent: 4px 4px 0 var(--color-accent);
  --shadow-brutal-green: 4px 4px 0 var(--color-accent-green);
  --shadow-brutal-lg: 6px 6px 0 var(--color-border);
  --shadow-elevated: 0 4px 0 var(--color-border), 0 8px 24px rgba(26,26,46,0.12);
  --shadow-card: 0 2px 0 var(--color-border), 0 4px 16px rgba(26,26,46,0.08);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

ul {
  list-style: none;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

p {
  line-height: 1.75;
  color: var(--color-text-body);
}


.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ======================================
   NAVIGATION
   ====================================== */
.main-navigation-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-primary);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 2px 0 var(--color-accent);
  transition: box-shadow var(--transition-base);
}

.main-navigation-container.nav-scrolled {
  box-shadow: 0 4px 0 var(--color-accent), 0 8px 24px rgba(26,26,46,0.25);
}

.navigation-inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.navigation-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navigation-logo-image {
  width: 36px;
  height: 36px;
}

.navigation-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.navigation-brand-accent {
  color: var(--color-accent);
}

.navigation-desktop-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex: 1;
  justify-content: center;
}

.navigation-menu-link {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navigation-menu-link:hover,
.navigation-menu-link.active {
  color: var(--color-accent-yellow);
  background: rgba(245,240,232,0.08);
}

.navigation-chevron-icon {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.navigation-dropdown-parent {
  position: relative;
}

.navigation-dropdown-parent:hover .navigation-chevron-icon {
  transform: rotate(180deg);
}

.navigation-dropdown-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  min-width: 220px;
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
}

.navigation-dropdown-parent:hover .navigation-dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation-submenu-link {
  display: block;
  padding: 10px 16px;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--color-border-light);
}

.navigation-submenu-link:last-child {
  border-bottom: none;
}

.navigation-submenu-link:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
  padding-left: 22px;
}

.navigation-cta-button {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-brutal-yellow);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.navigation-cta-button:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent-yellow);
  color: var(--color-white) !important;
}

.navigation-mobile-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all var(--transition-base);
  border-radius: 1px;
}

/* ======================================
   MOBILE MENU CURTAIN
   ====================================== */
.mobile-menu-curtain {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--color-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.mobile-menu-curtain.curtain-open {
  transform: translateY(0);
}

.mobile-menu-curtain-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg);
}

.mobile-menu-navigation-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.mobile-menu-item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-curtain.curtain-open .mobile-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-curtain.curtain-open .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-curtain.curtain-open .mobile-menu-item:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu-curtain.curtain-open .mobile-menu-item:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu-curtain.curtain-open .mobile-menu-item:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu-curtain.curtain-open .mobile-menu-item:nth-child(5) { transition-delay: 0.42s; }

.mobile-menu-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--color-text-light);
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 8px 0;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.mobile-menu-nav-link:hover {
  color: var(--color-accent-yellow);
  border-bottom-color: var(--color-accent);
}

.mobile-menu-close-button {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  transition: all var(--transition-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, background var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-curtain.curtain-open .mobile-menu-close-button {
  opacity: 1;
}

.mobile-menu-close-button:hover {
  background: var(--color-accent-hover);
  transform: scale(1.04);
}

/* ======================================
   HERO SECTION
   ====================================== */
.homepage-hero-section {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background: var(--color-primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left-content-panel {
  display: flex;
  align-items: center;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) 0;
  padding-left: calc((100vw - 1200px) / 2 + 24px);
}

.hero-content-wrapper {
  max-width: 560px;
}

.hero-badge-label {
  display: inline-block;
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  margin-bottom: var(--space-md);
}

.hero-main-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-typed-target-text {
  color: var(--color-accent-yellow);
  display: inline-block;
  min-width: 200px;
}

.hero-headline-accent-word {
  color: var(--color-accent);
}

.hero-supporting-paragraph {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-action-buttons-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-primary-cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-brutal-yellow);
  transition: all var(--transition-base);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-primary-cta-button:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent-yellow);
  color: var(--color-white) !important;
}

.hero-secondary-cta-button {
  display: inline-block;
  background: transparent;
  color: var(--color-text-light) !important;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(245,240,232,0.4);
  transition: all var(--transition-base);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-secondary-cta-button:hover {
  border-color: var(--color-accent-yellow);
  color: var(--color-accent-yellow) !important;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(245,200,66,0.3);
}

.hero-trust-indicators-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.65);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust-icon {
  color: var(--color-accent-yellow);
  font-size: 1rem;
}


.hero-right-visual-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  overflow: hidden;
}

.hero-visual-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--color-accent);
  box-shadow: var(--shadow-brutal-lg);
  z-index: 2;
}

.hero-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-visual-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.floating-card-icon {
  font-size: 1.5rem;
  color: var(--color-accent-green);
}

.floating-card-text-content {
  display: flex;
  flex-direction: column;
}

.floating-card-text-content strong {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.floating-card-text-content span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero-decorative-block {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-border);
  z-index: 1;
}

.hero-decorative-block--yellow {
  background: var(--color-accent-yellow);
  bottom: 60px;
  right: 30px;
  transform: rotate(15deg);
}

.hero-decorative-block--accent {
  background: var(--color-accent);
  top: 80px;
  right: 60px;
  width: 60px;
  height: 60px;
  transform: rotate(-8deg);
}

/* ======================================
   DECORATIVE STRIPS
   ====================================== */
.decorative-section-strip {
  background: var(--color-accent-yellow);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  overflow: hidden;
  padding: 10px 0;
}

.decorative-section-strip--dark {
  background: var(--color-primary);
}

.decorative-section-strip--dark .decorative-strip-pattern {
  color: rgba(245,240,232,0.6);
}

.decorative-strip-pattern {
  display: flex;
  gap: var(--space-md);
  white-space: nowrap;
  animation: strip-scroll 20s linear infinite;
  color: var(--color-text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.strip-dot {
  color: var(--color-accent);
  font-weight: 900;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.decorative-zigzag-strip {
  height: 20px;
  overflow: hidden;
}

.decorative-zigzag-strip svg {
  width: 100%;
  height: 100%;
}

/* ======================================
   SECTIONS — SHARED STYLES
   ====================================== */
.section-eyebrow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent-yellow);
  padding-bottom: 4px;
}

.section-eyebrow-label--light {
  color: var(--color-accent-yellow);
  border-bottom-color: rgba(245,200,66,0.4);
}

.section-main-heading {
  margin-bottom: var(--space-md);
}

.section-heading-light {
  color: var(--color-text-light);
}

.section-body-paragraph {
  margin-bottom: var(--space-md);
  color: var(--color-text-body);
  font-size: 1rem;
}

.section-paragraph-light {
  color: rgba(245,240,232,0.8);
}

.section-text-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-accent);
  transition: all var(--transition-fast);
}

.section-text-link-button:hover {
  gap: 12px;
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.section-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-text-light) !important;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-base);
  min-height: 44px;
}

.section-primary-button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  color: var(--color-white) !important;
}

/* ======================================
   INTRO SECTION
   ====================================== */
.homepage-intro-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.intro-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.intro-image-frame {
  position: relative;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro-section-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.intro-image-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-accent);
}

/* ======================================
   BENEFITS SECTION
   ====================================== */
.homepage-benefits-section {
  padding: var(--space-2xl) 0;
  background: var(--color-secondary);
  border-top: 3px solid var(--color-border);
  border-bottom: 3px solid var(--color-border);
}

.benefits-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.benefit-card-item {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.benefit-card-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
}

.benefit-card-icon-box {
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-fast);
}

.benefit-card-item:hover .benefit-card-icon-box {
  transform: rotate(-3deg);
}

.benefit-card-icon-box--yellow { background: var(--color-accent-yellow); color: var(--color-text-dark); }
.benefit-card-icon-box--green { background: var(--color-accent-green); }
.benefit-card-icon-box--accent { background: var(--color-accent); }
.benefit-card-icon-box--dark { background: var(--color-primary); }

.benefit-card-heading {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.benefit-card-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.benefit-card-check {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.benefit-card-item--highlight {
  background: var(--color-primary);
  grid-column: span 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.benefit-card-item--highlight::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.2;
}

.benefit-highlight-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.benefit-highlight-quote-icon {
  font-size: 2rem;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-sm);
}

.benefit-highlight-text {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
  font-family: var(--font-heading);
}

.benefit-highlight-cta {
  display: inline-block;
  background: var(--color-accent-yellow);
  color: var(--color-text-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.benefit-highlight-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  color: var(--color-text-dark) !important;
}

/* ======================================
   SERVICES OVERVIEW
   ====================================== */
.homepage-services-overview-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-image-stack {
  position: relative;
}

.services-stack-main-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-md);
}

.services-stack-secondary-image {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 180px;
  height: 130px;
  object-fit: cover;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-md);
}

.services-image-accent-badge {
  position: absolute;
  top: 20px;
  left: -15px;
  background: var(--color-accent-yellow);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.services-overview-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.services-overview-list-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.services-overview-list-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-brutal-accent);
  transform: translateX(4px);
}

.services-list-item-icon {
  color: var(--color-accent-green);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.services-list-item-content strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.services-list-item-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ======================================
   CHECKLIST SECTION
   ====================================== */
.homepage-checklist-section {
  padding: var(--space-2xl) 0;
  background: var(--color-secondary);
  border-top: 3px solid var(--color-border);
}

.checklist-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.checklist-section-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.checklist-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.checklist-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checklist-item-row {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-fast);
}

.checklist-item-row:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.checklist-item-icon {
  color: var(--color-accent-green);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.checklist-item-icon--yellow {
  color: var(--color-accent-yellow);
}

.checklist-item-text strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.checklist-item-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.checklist-cta-block {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-md);
}

.checklist-cta-block p {
  margin-bottom: var(--space-md);
  color: var(--color-text-body);
  font-size: 1rem;
}

/* ======================================
   HOW IT WORKS
   ====================================== */
.homepage-how-it-works-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.how-it-works-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-it-works-step-card {
  flex: 1;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.how-it-works-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 8px 0 var(--color-border);
  background: var(--color-secondary);
}

.step-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-border-light);
  line-height: 1;
  margin-bottom: 8px;
}

.step-card-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.step-card-title {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.step-card-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.how-it-works-connector-line {
  width: 40px;
  height: 2px;
  background: var(--color-accent-yellow);
  border-top: 2px dashed var(--color-border);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ======================================
   PARENTS CTA SECTION
   ====================================== */
.homepage-parents-cta-section {
  padding: var(--space-2xl) 0;
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
}

.parents-cta-grid {
  display: grid;
  grid-template-columns
: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.parents-cta-image-col {
  position: relative;
}

.parents-cta-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 3px solid var(--color-accent);
  box-shadow: var(--shadow-brutal-accent);
  border-radius: var(--radius-md);
}

/* ======================================
   INNER PAGE HERO
   ====================================== */
.inner-page-hero-section {
  padding-top: calc(var(--nav-height) + 60px);
  background: var(--color-primary);
  padding-bottom: var(--space-xl);
}

.inner-hero-content-wrapper {
  max-width: 760px;
}

.inner-page-hero-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.inner-hero-supporting-text {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.75;
  max-width: 640px;
}

/* ======================================
   CONTENT PAGE SECTIONS
   ====================================== */
.content-page-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.content-page-section--light {
  background: var(--color-secondary);
  border-top: 2px solid var(--color-border-light);
  border-bottom: 2px solid var(--color-border-light);
}

.content-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-image-frame {
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-section-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.content-image-frame:hover .content-section-image {
  transform: scale(1.03);
}

.content-highlight-box {
  background: var(--color-secondary);
  border-left: 4px solid var(--color-accent);
  border: 2px solid var(--color-border);
  border-left-width: 5px;
  border-left-color: var(--color-accent);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  box-shadow: var(--shadow-brutal);
  margin-top: var(--space-md);
}

.content-highlight-icon {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-highlight-box p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

/* ======================================
   NORMY SECTION
   ====================================== */
.normy-section-header {
  margin-bottom: var(--space-xl);
}

.normy-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.normy-explanation-block p {
  margin-bottom: var(--space-md);
}

.normy-cards-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.normy-type-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-fast);
}

.normy-type-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.normy-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
}

.normy-card-header--daily { background: var(--color-accent-green); }
.normy-card-header--monthly { background: var(--color-accent-yellow); color: var(--color-text-dark); }
.normy-card-header--annual { background: var(--color-accent); }

.normy-card-body {
  padding: 12px 16px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-text-body);
  background: var(--color-white);
}

/* ======================================
   CONTENT PAGE CTA
   ====================================== */
.content-page-cta-section {
  padding: var(--space-xl) 0;
  background: var(--color-secondary);
  border-top: 3px solid var(--color-border);
}

.content-cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.content-cta-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.content-cta-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

/* ======================================
   SERVICES DETAIL PAGE
   ====================================== */
.services-detail-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.service-detail-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-lg);
  margin-bottom: var(--space-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
}

.service-detail-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--color-border);
}

.service-detail-card-accent {
  height: 6px;
  width: 100%;
}

.service-detail-card-accent--red { background: var(--color-accent); }
.service-detail-card-accent--yellow { background: var(--color-accent-yellow); }
.service-detail-card-accent--green { background: var(--color-accent-green); }
.service-detail-card-accent--dark { background: var(--color-primary); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  align-items: start;
}

.service-detail-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.service-detail-icon-box {
  width: 72px;
  height: 72px;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-sm);
}

.service-detail-icon-box--yellow { background: var(--color-accent-yellow); color: var(--color-text-dark); }
.service-detail-icon-box--green { background: var(--color-accent-green); }
.service-detail-icon-box--dark { background: var(--color-primary); }

.service-detail-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-border-light);
  line-height: 1;
}

.service-detail-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.service-detail-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.service-detail-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-body);
  padding: 8px 12px;
  background: var(--color-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.service-detail-check-icon {
  color: var(--color-accent-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ======================================
   PARENTS PAGE
   ====================================== */
.parents-info-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.parents-info-aside-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.aside-card-heading {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent-yellow);
}

.aside-card-item {
  display: flex;
  gap: var(--space-sm);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: flex-start;
}

.aside-card-item:last-child {
  border-bottom: none;
}

.aside-card-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aside-card-icon--green { color: var(--color-accent-green); }
.aside-card-icon--yellow { color: var(--color-accent-yellow); }
.aside-card-icon--red { color: var(--color-accent); }

.aside-card-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.aside-card-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.parents-questions-section {
  max-width: 900px;
  margin: 0 auto;
}

.parents-questions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.parents-question-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.parents-question-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  border-color: var(--color-accent);
}

.question-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.question-card-heading {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.question-card-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.parents-info-box-section {
  padding: var(--space-xl) 0;
  background: var(--color-primary);
}

.parents-info-highlight-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  background: rgba(245,240,232,0.06);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.info-highlight-icon-col {
  font-size: 2.5rem;
  color: var(--color-accent-yellow);
  flex-shrink: 0;
}

.info-highlight-heading {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.info-highlight-text-col p {
  color: rgba(245,240,232,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.info-highlight-text-col p:last-child {
  margin-bottom: 0;
}

/* ======================================
   CONTACT PAGE
   ====================================== */
.contact-main-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-wrapper-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form-heading {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--color-accent-yellow);
}

.contact-form-field-group {
  margin-bottom: var(--space-md);
}

.contact-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.contact-form-input-field,
.contact-form-textarea-field {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  box-shadow: inset 0 1px 3px rgba(26,26,46,0.06);
}

.contact-form-input-field:focus,
.contact-form-textarea-field:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(232,68,26,0.12), inset 0 1px 3px rgba(26,26,46,0.06);
}

.contact-form-textarea-field {
  resize: vertical;
  min-height: 120px;
}

.contact-form-privacy-group {
  margin-bottom: var(--space-md);
}

.contact-form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-form-privacy-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contact-form-privacy-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form-privacy-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-form-submit-button {
  width: 100%;
  padding: 14px 28px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
}

.contact-form-submit-button:hover {
  background: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.contact-info-details-block {
  background: var(--color-primary);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.contact-info-heading {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}

.contact-info-item-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info-item-row:last-child {
  margin-bottom: 0;
}

.contact-info-item-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(245,240,232,0.2);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-item-content strong {
  display: block;
  color: var(--color-accent-yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item-content p {
  color: rgba(245,240,232,0.85);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.contact-info-item-content a {
  color: rgba(245,240,232,0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-item-content a:hover {
  color: var(--color-accent-yellow);
}

.contact-map-wrapper {
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-map-iframe {
  display: block;
}

/* ======================================
   NEWSLETTER
   ====================================== */
.newsletter-signup-section {
  padding: var(--space-xl) 0;
  background: var(--color-secondary);
  border-top: 3px solid var(--color-border);
}

.newsletter-signup-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.newsletter-card-content-col {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.newsletter-icon-badge {
  width: 56px;
  height: 56px;
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.newsletter-heading {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.newsletter-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.newsletter-form-fields-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: 10px;
}

.newsletter-email-input {
  flex: 1;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-email-input:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(232,68,26,0.12);
}

.newsletter-submit-button {
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
}

.newsletter-submit-button:hover {
  background: var(--color-accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.newsletter-privacy-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.newsletter-privacy-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ======================================
   THANKS PAGE
   ====================================== */
.thanks-hero-gradient-section {
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, #2D1B4E 50%, #1A1A2E 100%);
  border-bottom: 4px solid var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-hero-gradient-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,68,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-hero-inner-wrapper {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thanks-hero-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--color-accent-green);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 0 8px rgba(45,138,78,0.2);
}

.thanks-hero-check-icon {
  font-size: 2rem;
  color: var(--color-white);
}

.thanks-hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.thanks-hero-subtext {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
  margin: 0;
}

.thanks-next-steps-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.thanks-next-steps-content {
  max-width: 900px;
  margin: 0 auto;
}

.thanks-steps-heading {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.thanks-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.thanks-step-item {
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
}

.thanks-step-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.thanks-step-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.thanks-step-item h3 {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.thanks-step-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.thanks-step-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  transition: all var(--transition-fast);
}

.thanks-step-link:hover {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.thanks-homepage-button-wrapper {
  text-align: center;
}

/* ======================================
   LEGAL PAGES
   ====================================== */
.legal-page-header-area {
  background: var(--color-primary);
  padding: calc(var(--nav-height) + 40px) 0 var(--space-xl);
  border-bottom: 3px solid var(--color-accent);
}

.legal-page-header-area--terms {
  border-bottom-color: var(--color-accent-yellow);
}

.legal-page-header-area--cookies {
  border-bottom-color: var(--color-accent-green);
}

.legal-page-main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.legal-page-updated-date {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
}

.legal-page-content-area {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.legal-narrative-layout,
.legal-clauses-layout,
.legal-technical-layout {
  max-width: 800px;
}

.legal-section-block {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-section-block:last-child {
  border-bottom: none;
}

.legal-section-heading {
  font-size: 1.3rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 4px solid var(--color-accent);
}

.legal-intro-paragraph {
  margin-bottom: var(--space-xl);
}

.legal-intro-paragraph p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

.legal-defined-term {
  color: var(--color-accent);
  font-weight: 700;
  cursor: help;
  border-bottom: 1px dashed var(--color-accent);
  text-decoration: none;
}

.legal-definition-box {
  background: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-left: 5px solid var(--color-accent-yellow);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.7;
  box-shadow: var(--shadow-brutal);
}

.legal-definition-box strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.legal-section-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.legal-section-block p:last-child {
  margin-bottom: 0;
}


.legal-clause-preamble {
  margin-bottom: var(--space-xl);
}

.legal-clause-preamble p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

.legal-clause-block {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-clause-block:last-child {
  border-bottom: none;
}

.legal-clause-letter {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-clause-letter::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--color-accent-yellow);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.legal-clause-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}


.legal-tech-intro-block {
  margin-bottom: var(--space-xl);
}

.legal-tech-intro-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

.cookies-category-block {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.cookies-category-block:last-child {
  border-bottom: none;
}

.cookies-category-heading {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
}

.cookies-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
}

.cookies-category-badge--essential {
  background: var(--color-accent-green);
  color: var(--color-white);
}

.cookies-category-badge--analytics {
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
}

.cookies-category-badge--marketing {
  background: var(--color-text-muted);
  color: var(--color-white);
}

.cookies-category-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.cookies-table-wrapper {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-brutal);
}

.cookies-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookies-detail-table th {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookies-detail-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-body);
}

.cookies-detail-table tr:last-child td {
  border-bottom: none;
}

.cookies-detail-table tr:nth-child(even) td {
  background: var(--color-secondary);
}

.cookies-detail-table code {
  background: var(--color-secondary);
  border: 1px solid var(--color-border-light);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-accent);
  font-family: monospace;
}

.cookies-management-block,
.cookies-rights-block,
.cookies-update-block {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.cookies-management-block:last-child,
.cookies-rights-block:last-child,
.cookies-update-block:last-child {
  border-bottom: none;
}

.cookies-management-heading,
.cookies-rights-heading,
.cookies-update-heading {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 4px solid var(--color-accent-green);
}

.cookies-management-block p,
.cookies-rights-block p,
.cookies-update-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

/* ======================================
   FOOTER
   ====================================== */
.site-footer-wrapper {
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
  margin-top: auto;
}

.footer-stats-bar {
  background: rgba(245,200,66,0.1);
  border-bottom: 2px solid rgba(245,200,66,0.2);
  padding: 14px 0;
}

.footer-stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.footer-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.footer-stat-icon {
  color: var(--color-accent-yellow);
  font-size: 1rem;
}

.footer-stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.7);
  font-weight: 500;
  white-space: nowrap;
}

.footer-main-content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-sm);
}

.footer-logo-image {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-light);
}

.footer-brand-dot {
  color: var(--color-accent);
}

.footer-brand-description {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-contact-info-block p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-contact-icon {
  color: var(--color-accent-yellow);
  width: 14px;
  flex-shrink: 0;
}

.footer-contact-info-block a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-info-block a:hover {
  color: var(--color-accent-yellow);
}

.footer-column-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  margin-bottom: var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav-link {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: all var(--transition-fast);
  padding: 3px 0;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-accent-yellow);
  padding-left: 6px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright-text {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--color-accent-yellow);
}

.footer-legal-separator {
  color: rgba(245,240,232,0.2);
  font-size: 0.8rem;
}

/* ======================================
   COOKIE CONSENT WIDGET
   ====================================== */
.cookie-consent-compact-card {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-brutal-lg);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 560px;
  width: calc(100% - 48px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-compact-card.cookie-consent-expanded {
  max-width: 480px;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

.cookie-consent-compact-card.cookie-consent-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-consent-message-text {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.cookie-consent-message-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-consent-buttons-row {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent-accept-button {
  padding: 9px 18px;
  background: var(--color-accent-green);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}

.cookie-consent-accept-button:hover {
  background: var(--color-accent-green-hover);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--color-border);
}

.cookie-consent-settings-button {
  padding: 9px 14px;
  background: var(--color-white);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}

.cookie-consent-settings-button:hover {
  background: var(--color-secondary);
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-brutal);
}

.cookie-consent-expanded-panel {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-consent-expanded.cookie-consent-expanded .cookie-consent-expanded-panel {
  display: flex;
}

.cookie-consent-expanded-panel .cookie-consent-compact-message-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-consent-panel-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.cookie-consent-panel-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.cookie-consent-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--color-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.cookie-consent-category-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.cookie-consent-category-info span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.cookie-consent-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-consent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-consent-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
  border: 2px solid var(--color-border);
}

.cookie-consent-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider {
  background: var(--color-accent-green);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider::before {
  transform: translateX(20px) translateY(-50%);
}

.cookie-consent-toggle input:disabled + .cookie-consent-toggle-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-consent-panel-actions-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 4px;
}

.cookie-consent-save-button {
  padding: 9px 18px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-fast);
  min-height: 44px;
}

.cookie-consent-save-button:hover {
  background: var(--color-accent-hover);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--color-border);
}

/* ======================================
   RESPONSIVE — TABLET & MOBILE
   ====================================== */
@media (max-width: 1024px) {
  .hero-left-content-panel {
    padding-left: var(--space-md);
  }

  .benefits-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .normy-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .homepage-hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left-content-panel {
    padding: var(--space-xl) var(--space-md);
    padding-top: var(--space-xl);
  }

  .hero-right-visual-panel {
    display: none;
  }

  .intro-section-grid,
  .services-overview-grid,
  .content-two-column-grid,
  .parents-cta-grid,
  .parents-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .services-stack-secondary-image {
    display: none;
  }

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

  .newsletter-signup-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .how-it-works-steps-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .how-it-works-connector-line {
    width: 2px;
    height: 30px;
    margin: 0 auto;
    border-top: none;
    border-left: 2px dashed var(--color-border);
  }

  .thanks-steps-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-detail-icon-col {
    flex-direction: row;
    align-items: center;
  }

  .parents-info-highlight-box {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .navigation-desktop-menu,
  .navigation-cta-button {
    display: none;
  }

  .navigation-mobile-hamburger {
    display: flex;
  }

  .navigation-inner-wrapper {
    justify-content: space-between;
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr;
  }

  .checklist-two-column-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-includes-grid {
    grid-template-columns: 1fr;
  }

  .parents-questions-grid {
    grid-template-columns: 1fr;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form-fields-row {
    flex-direction: column;
  }

  .hero-action-buttons-group {
    flex-direction: column;
  }

  .hero-primary-cta-button,
  .hero-secondary-cta-button {
    text-align: center;
    justify-content: center;
  }

  .cookie-consent-compact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-buttons-row {
    justify-content: stretch;
  }

  .cookie-consent-accept-button,
  .cookie-consent-settings-button {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 64px;
  }

  .section-container {
    padding: 0 var(--space-sm);
  }

  .hero-trust-indicators-row {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer-stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
  }

  .footer-stat-label {
    font-size: 0.72rem;
  }

  .contact-form-wrapper-card {
    padding: var(--space-md);
  }

  .legal-page-content-area {
    padding: var(--space-lg) 0;
  }
}

/* ======================================
   UTILITY — AOS OVERRIDES
   ====================================== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ======================================
   PRINT STYLES
   ====================================== */
@media print {
  .main-navigation-container,
  .mobile-menu-curtain,
  .cookie-consent-compact-card,
  .decorative-section-strip,
  .decorative-zigzag-strip {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}