/* ===================================
   EPOXIDOVÉ PODLAHY JM - Premium Design
   Industrial Luxury Aesthetic
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Premium Color Palette */
  --color-charcoal: #1a1a1a;
  --color-graphite: #2d2d2d;
  --color-slate: #3c3c3b;
  --color-ash: #5a5a58;
  --color-silver: #8a8a8a;
  --color-mist: #d8d8d8;
  --color-cloud: #f0f0f0;
  --color-white: #ffffff;

  /* Accent - Warm Amber/Copper */
  --color-accent: #d4770c;
  --color-accent-light: #e8941f;
  --color-accent-dark: #b8660a;
  --color-accent-glow: rgba(212, 119, 12, 0.15);

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  /* Font Sizes - Dramatic Scale */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 5rem;
  --text-hero: clamp(2.5rem, 7vw, 4.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1400px;
  --header-height: 80px;
  --topbar-height: 44px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px var(--color-accent-glow);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-graphite);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.015;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul {
  list-style: none;
}

/* Selection */
::selection {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ===================================
   TOPBAR - Sleek Contact Strip
   =================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: var(--color-charcoal);
  color: var(--color-mist);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.topbar-contact {
  display: flex;
  gap: var(--space-lg);
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-mist);
  transition: color var(--duration-fast) var(--ease-out);
}

.topbar-contact a:hover {
  color: var(--color-accent-light);
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.topbar-contact .email {
  display: none;
}

@media (min-width: 768px) {
  .topbar-contact .email {
    display: flex;
  }
}

/* ===================================
   HEADER - Premium Navigation
   =================================== */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--color-accent);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: var(--space-xl);
  }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-slate);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-charcoal);
}

.nav-link.active {
  color: var(--color-charcoal);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-charcoal);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: calc(var(--topbar-height) + var(--header-height));
  right: 0;
  width: 100%;
  max-width: 320px;
  height: calc(100vh - var(--topbar-height) - var(--header-height));
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  z-index: 998;
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  padding: var(--space-xl);
}

.nav-mobile li {
  margin-bottom: var(--space-sm);
}

.nav-mobile .nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--color-cloud);
}

.nav-mobile .nav-link::after {
  display: none;
}

/* ===================================
   HERO - Dramatic Full-Screen
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: calc(var(--topbar-height) + var(--header-height));
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(45, 45, 45, 0.7) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

/* Diagonal accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-accent) 20%,
    var(--color-accent) 80%,
    transparent 100%
  );
  opacity: 0.4;
  z-index: 5;
  transform: skewX(-15deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-3xl);
    max-width: 900px;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1s var(--ease-out) both;
}

.hero h1 span {
  display: block;
  color: var(--color-accent-light);
}

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-mist);
  margin-bottom: var(--space-sm);
  max-width: 500px;
  animation: heroFadeUp 1s var(--ease-out) 0.2s both;
}

.hero-cta-text {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}

.hero .btn {
  animation: heroFadeUp 1s var(--ease-out) 0.4s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-mist);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ===================================
   BUTTONS - Bold & Premium
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--duration-slow) var(--ease-out);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(212, 119, 12, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 119, 12, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
}

/* ===================================
   SECTIONS - Refined Spacing
   =================================== */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-light {
  background: var(--color-white);
}

.section-dark {
  background: linear-gradient(
    165deg,
    #4a4a48 0%,
    #5c5c5a 25%,
    #6b6b69 50%,
    #5c5c5a 75%,
    #4a4a48 100%
  );
  color: var(--color-white);
  position: relative;
}

/* Subtle epoxy sheen effect */
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 75%,
    transparent 100%
  );
  pointer-events: none;
}

.section-alt {
  background: var(--color-cloud);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1;
  position: relative;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-5xl);
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 0.5rem auto 0;
}

.section-dark .section-title::after {
  background: var(--color-accent);
}

/* ===================================
   BENEFIT CARDS - Premium Grid
   =================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

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

.card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.section-light .card:hover {
  background: var(--color-cloud);
  transform: translateY(-4px);
}

.section-dark .card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.section-light .card-icon {
  background: var(--color-cloud);
}

.section-dark .card-icon {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.card:hover .card-icon {
  background: var(--color-accent);
  transform: scale(1.1);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: all var(--duration-normal) var(--ease-out);
}

.section-light .card-icon svg {
  color: var(--color-accent);
}

.section-dark .card-icon svg {
  color: var(--color-accent-light);
}

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

.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-silver);
}

.section-dark .card p {
  color: var(--color-mist);
}

/* ===================================
   GALLERY - Premium Masonry Style
   =================================== */
.gallery-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.8) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--color-white);
  font-weight: 600;
}

.gallery-item-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-slate);
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

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

.contact-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cloud);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.contact-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.contact-social svg {
  width: 20px;
  height: 20px;
}

/* Map placeholder */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cloud);
  margin-top: var(--space-xl);
}

/* ===================================
   FORMS - Premium Inputs
   =================================== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--color-cloud);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}

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

/* ===================================
   CONTENT PAGES
   =================================== */
.content-page {
  padding: var(--space-3xl) 0;
  margin-top: calc(var(--topbar-height) + var(--header-height));
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xl);
  color: var(--color-charcoal);
}

.content-page h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-charcoal);
}

.content-page p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--color-slate);
}

.content-page ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.content-page li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ===================================
   FOOTER - Premium Dark
   =================================== */
.footer {
  background: var(--color-charcoal);
  color: var(--color-mist);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-copyright {
  font-size: var(--text-sm);
  opacity: 0.7;
}

.footer-scroll-top {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.footer-scroll-top:hover {
  color: var(--color-accent-light);
  background: rgba(255,255,255,0.05);
}

.footer-scroll-top svg {
  width: 16px;
  height: 16px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-graphite) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--color-white);
}

.cta-section p {
  font-size: var(--text-xl);
  color: var(--color-mist);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Section Light - for inner pages */
.cta-section-light {
  background: var(--color-cloud);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section-light .section-title {
  color: var(--color-charcoal);
}

.cta-section-light .section-title::after {
  background: var(--color-accent);
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: var(--color-silver);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ===================================
   ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    animation: fadeUp 0.8s var(--ease-out) both;
  }

  .fade-up-delay-1 { animation-delay: 0.1s; }
  .fade-up-delay-2 { animation-delay: 0.2s; }
  .fade-up-delay-3 { animation-delay: 0.3s; }
  .fade-up-delay-4 { animation-delay: 0.4s; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
