/* ============================================================
   Sagerin.com — Main Stylesheet
   Professional Bilingual Web Agency (DE/EN) — DACH Market
   ============================================================ */

/* ------------------------------------------------------------
   Google Fonts Import
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --color-primary:       #0084CD;
  --color-secondary:     #18BDAE;
  --color-dark:          #0D1B2A;
  --color-text:          #374151;
  --color-text-light:    #6B7280;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F0F4F8;
  --color-border:        #E5E7EB;
  --color-white:         #FFFFFF;

  /* Gradient */
  --gradient:            linear-gradient(135deg, #0084CD, #18BDAE);
  --gradient-soft:       linear-gradient(135deg, rgba(0,132,205,0.08), rgba(24,189,174,0.08));
  --gradient-dark:       linear-gradient(135deg, #0D1B2A 0%, #0a2540 100%);

  /* Shadows */
  --shadow:              0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover:        0 12px 36px rgba(0, 0, 0, 0.14);
  --shadow-card:         0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-primary:      0 8px 24px rgba(0, 132, 205, 0.28);

  /* Border Radius */
  --radius-card:         12px;
  --radius-btn:          8px;
  --radius-sm:           6px;
  --radius-full:         9999px;

  /* Transitions */
  --transition:          0.3s ease;
  --transition-slow:     0.5s ease;

  /* Typography */
  --font-family:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base:      1rem;
  --line-height-base:    1.6;

  /* Spacing */
  --section-py:          5rem;
  --container-max:       1200px;
  --container-px:        1.5rem;

  /* Nav */
  --nav-height:          72px;
}

/* ------------------------------------------------------------
   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-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

strong {
  font-weight: 600;
}

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  color: var(--color-text-light);
  line-height: var(--line-height-base);
}

/* ------------------------------------------------------------
   Utility Classes
   ------------------------------------------------------------ */

/* Container */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* Sections */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

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

/* Gradient Text */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 132, 205, 0.38);
  opacity: 0.92;
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--gradient);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.badge-soft {
  background: var(--gradient-soft);
  color: var(--color-primary);
  border: 1px solid rgba(0, 132, 205, 0.2);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ------------------------------------------------------------
   Navigation (.navbar)
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo .logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  margin-left: 3px;
  margin-bottom: 8px;
  flex-shrink: 0;
  font-size: 0;
  overflow: hidden;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

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

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.lang-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 132, 205, 0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--color-bg-alt);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav open state */
.navbar.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1rem 0;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.navbar.nav-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--color-primary);
  background: var(--gradient-soft);
  padding-left: 1.75rem;
}

.mobile-menu .mobile-actions {
  padding: 1rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   Hero Section (.hero)
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 132, 205, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(24, 189, 174, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 132, 205, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2rem) var(--container-px) 4rem;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .text-gradient {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ------------------------------------------------------------
   Stats Section (.stats-section)
   ------------------------------------------------------------ */
.stats-section {
  padding: 4rem 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ------------------------------------------------------------
   Services Grid (.services-grid)
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(0, 132, 205, 0.2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 132, 205, 0.3);
}

.service-icon svg,
.service-icon i {
  width: 24px;
  height: 24px;
  color: white;
  stroke: white;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--color-dark);
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.service-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  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='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: cover;
}

/* ------------------------------------------------------------
   Works / Portfolio Grid (.works-grid)
   ------------------------------------------------------------ */
.works-filter {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(0, 132, 205, 0.06);
}

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

.work-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  background: var(--color-dark);
  transition: all var(--transition);
}

.work-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.work-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.06);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-card-overlay h3 {
  color: var(--color-white);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.work-card-info {
  padding: 1.25rem;
}

.work-card-info h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  color: var(--color-dark);
}

.work-card-info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-soft);
  color: var(--color-primary);
  border: 1px solid rgba(0, 132, 205, 0.2);
}

.works-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-light);
}

.empty-state svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.4;
}

/* ------------------------------------------------------------
   Pricing Cards (.pricing-grid)
   ------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--color-border);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card.highlighted {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-hover);
  transform: scale(1.03);
  background: var(--color-white);
  z-index: 1;
}

.pricing-card.highlighted:hover {
  transform: scale(1.03) translateY(-3px);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-dark);
  letter-spacing: -0.04em;
}

.price-amount.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.price-on-request {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.pricing-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: cover;
}

.pricing-features li.unavailable {
  opacity: 0.45;
}

.pricing-features li.unavailable::before {
  background: var(--color-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: cover;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ------------------------------------------------------------
   About Section (.about-section)
   ------------------------------------------------------------ */
.about-section .about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-text p:last-of-type {
  margin-bottom: 2rem;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-card {
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.value-card-icon svg,
.value-card-icon i {
  color: white;
  stroke: white;
  width: 20px;
  height: 20px;
}

.value-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

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

/* About visual side */
.about-visual {
  position: relative;
}

.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border);
}

.about-badge-float .big-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ------------------------------------------------------------
   CTA Banner (.cta-banner)
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--gradient);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   Contact Section / Form (.contact-form)
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg,
.contact-detail-icon i {
  color: white;
  stroke: white;
  width: 18px;
  height: 18px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.9375rem;
  color: var(--color-dark);
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--color-primary);
}

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-control:hover {
  border-color: rgba(0, 132, 205, 0.35);
}

.form-control:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(0, 132, 205, 0.12);
}

.form-control::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

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

select.form-control {
  cursor: pointer;
  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='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

/* Honeypot — hide from humans, not bots */
.form-honeypot {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Math captcha */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--gradient-soft);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(0, 132, 205, 0.2);
  white-space: nowrap;
}

.captcha-row .form-control {
  flex: 1;
  max-width: 120px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  position: relative;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit.loading .spinner {
  display: block;
}

.btn-submit.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.alert.show {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

.alert-success {
  background: rgba(24, 189, 174, 0.1);
  color: #0e8f84;
  border: 1.5px solid rgba(24, 189, 174, 0.4);
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1.5px solid rgba(239, 68, 68, 0.3);
}

/* ------------------------------------------------------------
   Footer (.footer)
   ------------------------------------------------------------ */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.footer-tagline,
.footer-brand > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}

.footer-social a svg,
.footer-social a i {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg,
.footer-contact-item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-secondary);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p,
.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

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

/* ------------------------------------------------------------
   Page Hero Banner (.page-hero)
   ------------------------------------------------------------ */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(255,255,255,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ------------------------------------------------------------
   Why Us / Features Section
   ------------------------------------------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(0, 132, 205, 0.2);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-primary);
}

.why-card-icon svg,
.why-card-icon i {
  width: 30px;
  height: 30px;
  color: white;
  stroke: white;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

/* ------------------------------------------------------------
   FAQ Section
   ------------------------------------------------------------ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-question.open {
  color: var(--color-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   Team Section
   ------------------------------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid transparent;
  background: var(--gradient);
  padding: 2px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* ------------------------------------------------------------
   Animations
   ------------------------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.40s; }

/* ------------------------------------------------------------
   404 Page
   ------------------------------------------------------------ */
.not-found-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-alt);
}

.not-found-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.not-found-page h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.not-found-page p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* ------------------------------------------------------------
   Loading skeleton
   ------------------------------------------------------------ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ------------------------------------------------------------
   Responsive — Tablet (768–1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .works-grid           { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid         { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .pricing-card.highlighted { transform: none; }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-section .about-layout { gap: 2.5rem; }
  .contact-layout       { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ------------------------------------------------------------
   Responsive — Mobile (< 768px)
   ------------------------------------------------------------ */
@media (max-width: 767px) {
  :root {
    --section-py: 3rem;
    --container-px: 1rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  /* Nav */
  .nav-links        { display: none; }
  .nav-actions .btn { display: none; }
  .lang-toggle      { display: none; }
  .hamburger        { display: flex; }

  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
    gap: 0;
  }
  .navbar.nav-open .nav-links li { width: 100%; }
  .navbar.nav-open .nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
  }
  .navbar.nav-open .nav-links a:hover {
    color: var(--color-primary);
    background: var(--gradient-soft);
    padding-left: 1.75rem;
  }
  .navbar.nav-open .nav-links li:last-child a { border-bottom: none; }

  /* Hero */
  .hero h1         { font-size: 2rem; }
  .hero-ctas       { flex-direction: column; align-items: center; }

  /* Stats */
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid   { grid-template-columns: 1fr; }

  /* Works */
  .works-grid      { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-card.highlighted { transform: none; }

  /* About */
  .about-section .about-layout  { grid-template-columns: 1fr; }
  .about-visual    { display: none; }
  .value-cards     { grid-template-columns: 1fr; }

  /* Why */
  .why-grid        { grid-template-columns: 1fr; }

  /* Team */
  .team-grid       { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .footer-legal    { justify-content: center; }

  /* Contact */
  .contact-layout  { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* CTA Banner */
  .cta-banner h2   { font-size: 1.75rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Page hero */
  .page-hero h1    { font-size: 2rem; }

  /* Grid helpers on mobile */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Print styles
   ------------------------------------------------------------ */
@media print {
  .navbar, .footer, .cta-banner, .hero-scroll-indicator { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  * { box-shadow: none !important; }
}
