/* ═══════════════════════════════════════════════════════════════════
   SILEDAKS OÜ – CSS
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────
   1. CSS MUUTUJAD & RESET
───────────────────────────────────────────────────────────────────── */
:root {
  /* Põhivärvid (logo põhjal) */
  --clr-blue: #0EA5E9;
  --clr-blue: #4A7CFF;
  --clr-purple: #9D4EDD;
  --clr-magenta: #7B2CBF;
  
  /* Taustavärvid */
  --clr-bg-dark: #07070C;
  --clr-bg-alt: #0D0D14;
  --clr-bg-card: #12121A;
  --clr-bg-elevated: #1A1A24;
  
  /* Teksti värvid */
  --clr-text: #E8E8EC;
  --clr-text-muted: #A8A8B8; /* Improved contrast for WCAG AA */
  --clr-text-dim: #7A7A8A; /* Improved contrast */
  
  /* Aktsent/border */
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-accent: rgba(14, 165, 233, 0.25);
  
  /* Gradientid */
  --gradient-primary: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue) 50%, var(--clr-purple) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
  --gradient-bg: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(74, 124, 255, 0.12) 0%, transparent 70%);
  
  /* Font */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing - 8px grid system */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 6rem;     /* 96px */
  
  /* Border radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Breakpoints - Mobile first */
  --bp-xs: 375px;   /* Small phones */
  --bp-sm: 640px;   /* Large phones */
  --bp-md: 768px;   /* Tablets */
  --bp-lg: 1024px;  /* Laptops */
  --bp-xl: 1280px;  /* Desktops */
  --bp-2xl: 1536px; /* Large screens */
  
  /* Shadow - Material Design inspired */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 32px rgba(14, 165, 233, 0.2), 0 0 64px rgba(157, 78, 221, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--clr-border);
  --shadow-elevated: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--clr-border);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Mobile header height */
  font-size: 16px; /* Base font size */
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 100px; /* Desktop header height */
  }
}

body {
  font-family: var(--font-main);
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

@media (min-width: 768px) {
  body {
    line-height: 1.7;
  }
}

::selection {
  background: var(--clr-blue);
  color: var(--clr-bg-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
  /* Touch target min 44x44px for mobile */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}



ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  /* Touch-friendly minimum size */
  min-height: 44px;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

input, textarea {
  font: inherit;
  /* Prevent zoom on iOS */
  font-size: 16px;
  /* Better touch target */
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus states for accessibility */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 100px;
}

/* ─────────────────────────────────────────────────────────────────────
   2. LAYOUT & CONTAINER - Mobile First
───────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem; /* Mobile: 16px */
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem; /* Tablet: 24px */
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem; /* Desktop: 32px */
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 3rem; /* Large: 48px */
  }
}

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

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

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

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

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

/* Simple grid column classes */
.grid-2-col {
  grid-template-columns: 1fr;
}

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

.grid-3-col {
  grid-template-columns: 1fr !important;
}

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

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

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }

/* Spacing utilities - mobile optimized */
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }

.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 3rem; }

@media (min-width: 768px) {
  .mt-lg { margin-top: 3rem; }
  .mt-xl { margin-top: 4rem; }
  .mb-lg { margin-bottom: 3rem; }
  .mb-xl { margin-bottom: 4rem; }
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

@media (max-width: 639px) {
  .hidden-mobile { display: none !important; }
}

@media (min-width: 640px) {
  .visible-mobile { display: none !important; }
}

@media (max-width: 1023px) {
  .hidden-tablet { display: none !important; }
}

@media (min-width: 1024px) {
  .hidden-desktop { display: none !important; }
}

/* ─────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 { 
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

h3 { 
  font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

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

.title-outline {
  color: var(--clr-blue);
  -webkit-text-stroke: 2px var(--clr-blue);
  text-stroke: 1px var(--clr-blue);
}

/* ─────────────────────────────────────────────────────────────────────
   4. BUTTONS – Premium CTA Design
───────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  min-height: 48px; /* WCAG touch target */
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  user-select: none;
}

.btn svg {
  transition: transform 0.3s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 4px;
}

/* Primary button */
.btn-primary {
  background: var(--clr-blue);
  color: #000;
  font-weight: 700;
  box-shadow: 
    0 4px 16px rgba(14, 165, 233, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0EA5E9;
  box-shadow: 
    0 8px 24px rgba(14, 165, 233, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(14, 165, 233, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Small button variant */
.btn-sm {
  padding: 0.625rem 1.25rem;
  min-height: 40px;
  font-size: 0.875rem;
}

/* Ghost button - Elegant outline */
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
  background: rgba(14, 165, 233, 0.08);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

/* Button with glow effect */
.btn-glow {
  box-shadow: 
    0 4px 16px rgba(14, 165, 233, 0.25),
    0 0 24px rgba(14, 165, 233, 0.15);
}

.btn-glow:hover {
  box-shadow: 
    0 8px 24px rgba(14, 165, 233, 0.35),
    0 0 32px rgba(14, 165, 233, 0.25);
}

/* ─────────────────────────────────────────────────────────────────────
   5. HEADER – Ultra Premium Professional
───────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.92) 0%, rgba(7, 7, 12, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  transition: all var(--transition-slow);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 100%;
  overflow-x: hidden;
}

/* Subtle top glow */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-base);
}

/* Animated gradient border at bottom */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 212, 255, 0.3) 20%, 
    rgba(74, 124, 255, 0.4) 50%, 
    rgba(157, 78, 221, 0.3) 80%, 
    transparent 100%);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

/* Top accent gradient line - Progress Bar */
.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 1;
  z-index: 999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
}


.header-accent.active::after {
  opacity: 1;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.98) 0%, rgba(7, 7, 12, 0.95) 100%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 60px rgba(0, 212, 255, 0.03);
}

.site-header.scrolled::after {
  opacity: 1;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 212, 255, 0.5) 20%, 
    rgba(74, 124, 255, 0.6) 50%, 
    rgba(157, 78, 221, 0.5) 80%, 
    transparent 100%);
}

.site-header.scrolled .header-accent {
  opacity: 1;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.5), 0 0 48px rgba(0, 212, 255, 0.2);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  gap: var(--space-md);
}

/* Brand / Logo - Compact Premium */
.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.brand-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated ring around logo */
.brand-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, var(--clr-blue), var(--clr-blue), var(--clr-purple), var(--clr-blue));
  border-radius: calc(var(--radius-md) + 3px);
  opacity: 0;
  z-index: 1;
  transition: opacity var(--transition-base);
}

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

.brand:hover .brand-logo-wrap::before {
  opacity: 0.8;
  animation-play-state: running;
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1.5px solid rgba(0, 212, 255, 0.3);
  background: var(--clr-bg-dark);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-logo-glow {
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border-radius: calc(var(--radius-sm) + 6px);
  opacity: 0.5;
  filter: blur(6px);
  z-index: 0;
  transition: all var(--transition-base);
}

.brand:hover .brand-logo {
  border-color: var(--clr-blue);
  transform: scale(1.05);
  box-shadow: 
    0 4px 16px rgba(0, 212, 255, 0.25),
    0 0 0 1px rgba(0, 212, 255, 0.15);
}

.brand:hover .brand-logo-glow {
  opacity: 1;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, rgba(157, 78, 221, 0.15) 50%, transparent 70%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue) 40%, var(--clr-purple) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
  line-height: 1.2;
  transition: all var(--transition-base);
}

.brand:hover .brand-name {
  background-position: 100% 100%;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.brand-sub {
  font-size: 0.5625rem;
  color: var(--clr-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.brand:hover .brand-sub {
  color: var(--clr-text-muted);
  opacity: 1;
}

/* Navigation - Premium */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.nav-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-contact-link svg {
  color: var(--clr-blue);
  transition: all var(--transition-fast);
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3));
}

.nav-contact-link:hover {
  color: var(--clr-text);
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
}

.nav-contact-link:hover svg {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

/* Header actions - Phone & CTA grouped */
.header-actions {
  display: none;
}

@media (min-width: 992px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    padding-left: var(--space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Small button variant */
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  min-height: 42px;
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--clr-blue);
}

.nav-toggle:hover::before {
  opacity: 0.1;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
  position: relative;
  z-index: 1;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle-lines span:nth-child(1) { width: 100%; }
.nav-toggle-lines span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-toggle-lines span:nth-child(3) { width: 85%; }

.nav-toggle:hover .nav-toggle-lines span {
  background: var(--clr-blue);
}

.nav-toggle:hover .nav-toggle-lines span:nth-child(2) {
  width: 100%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu - Premium */
.nav-menu {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--clr-bg-dark) 0%, rgba(7, 7, 12, 0.98) 100%);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  overflow-y: auto;
}

.nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.nav-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu-inner {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--transition-fast);
  position: relative;
  padding-inline: 10px;
}

.nav-link-text {
  position: relative;
  z-index: 1;
}

.nav-link-indicator {
  width: 8px;
  height: 8px;
  background: var(--clr-border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--clr-blue);
  padding-left: var(--space-sm);
}

.nav-link:hover .nav-link-indicator {
  background: var(--clr-blue);
  box-shadow: 0 0 12px var(--clr-blue);
}

/* Active nav link - Mobile */
@media (max-width: 991px) {
  .nav-link.active {
    color: var(--clr-blue);
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    padding-left: var(--space-md);
  }

  .nav-link.active .nav-link-indicator {
    background: var(--clr-blue);
    box-shadow: 0 0 16px var(--clr-blue), 0 0 4px var(--clr-blue);
    transform: scale(1.2);
  }
}


.nav-cta-wrap {
  margin-top: auto;
  padding-top: var(--space-xl);
}

.nav-cta-wrap .btn {
  width: 100%;
  justify-content: center;
}

/* Mobile menu footer */
.nav-menu-footer {
  margin-top: auto;
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
}

.nav-menu-footer .btn {
  width: 100%;
  justify-content: center;
}

.nav-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: var(--space-md);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-menu-phone svg {
  color: var(--clr-blue);
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.nav-menu-phone:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--clr-blue);
}

.nav-menu-phone:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

/* Button with enhanced glow effect */
.btn-glow {
  position: relative;
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(0, 212, 255, 0.35),
      0 1px 3px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 4px 30px rgba(0, 212, 255, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 40px rgba(0, 212, 255, 0.2);
  }
}

.btn-glow:hover {
  animation: none;
}

/* Desktop nav - Premium */
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu-footer {
    display: none;
  }
  
  .nav-menu {
    position: static;
    background: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  
  .nav-menu::before {
    display: none;
  }
  
  .nav-menu-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    padding: 0;
    min-height: auto;
  }
  
  .nav-link {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: var(--radius-full);
    color: var(--clr-text-muted);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
  }
  
  .nav-link-indicator {
    display: none;
  }
  
  /* Underline animation */
  .nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-blue), var(--clr-blue));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }
  
  /* Background glow on hover */
  .nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
  }
  
  .nav-link:hover {
    color: var(--clr-text);
    padding-left: 1.125rem;
  }
  
  .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
  }
  
  .nav-link:hover::after {
    opacity: 1;
  }
  
  /* Active nav link */
  .nav-link.active {
    color: var(--clr-blue);
  }
  
  .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
  
  
  /* Hide mobile CTA in desktop nav menu */
  .nav-cta-wrap {
    display: none;
  }
  
  /* Better spacing between nav items */
  .nav-menu-inner {
    gap: 0.125rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   6. HERO SECTION
───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(8em + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(0.7);
}

/* Dark overlay gradient for text readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: 
linear-gradient(180deg, rgba(7, 7, 12, 0.7) 0%, rgba(7, 7, 12, 0.5) 30%, rgba(7, 7, 12, 0.6) 70%, rgba(7, 7, 12, 0.95) 100%), linear-gradient(90deg, rgb(7 7 12 / 0%) 0%, rgb(7 7 12 / 0%) 50%, rgb(7 7 12 / 22%) 100%)
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: var(--gradient-bg);
  z-index: -1;
}

.hero-backdrop::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite 4s;
}

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

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-2xl);
  }
}

/* Hero Left */
.hero-left {
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--clr-text-muted);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: 3.9rem;
}

/* Trust pills */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
}

.trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-blue);
  border-radius: 50%;
}

/* Hero Right - Redesigned */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

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

.panel-top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(157, 78, 221, 0.05) 100%);
  border-left: 3px solid var(--clr-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.panel-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-blue);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.panel-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-blue), transparent);
  opacity: 0.4;
}

.panel-note {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* Mini cards - Redesigned to be less boxy */
.panel-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .panel-cards {
    gap: var(--space-lg);
  }
}

.mini-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
  position: relative;
}

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

.mini-card:hover {
  border-color: transparent;
  transform: translateX(8px);
  box-shadow: none;
}

.mini-card:hover .mini-icon {
  color: var(--clr-blue);
  transform: scale(1.1);
}

.mini-card:hover h3 {
  color: var(--clr-blue);
}

.mini-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--clr-text-muted);
  padding: 10px;
  background: rgba(0, 212, 255, 0.06);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.mini-icon svg {
  width: 100%;
  height: 100%;
}

.mini-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color var(--transition-base);
}

.mini-card p {
  font-size: 0.875rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
}

/* Panel showcase - Professionaalne pilt */
.panel-showcase {
  margin-top: var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.panel-image {
  position: relative;
  aspect-ratio: 12 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .panel-image {
    aspect-ratio: 8 / 2 !important;
  }
}
.panel-image {
  position: relative;
  aspect-ratio: 12 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: saturate(0.9) brightness(0.95);
}

.panel-showcase:hover .panel-image img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1);
}

.panel-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 12, 0.1) 0%,
    rgba(7, 7, 12, 0.2) 50%,
    rgba(7, 7, 12, 0.7) 100%
  );
  pointer-events: none;
}

/* Badge kvaliteedimärgiga */
.panel-image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(7, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--clr-text);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.panel-image-badge svg {
  color: var(--clr-blue);
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.panel-showcase:hover .panel-image-badge {
  border-color: var(--clr-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

/* Glow effect all ümber */
.panel-showcase::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(157, 78, 221, 0.2) 100%);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition-base);
}

.panel-showcase:hover::before {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────
   7. SECTIONS
───────────────────────────────────────────────────────────────────── */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

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

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-head h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.section-head p {
  color: var(--clr-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────
   8. CARDS (Teenused)
───────────────────────────────────────────────────────────────────── */
.cards {
  grid-template-columns: 1fr;
}

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

.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}

.card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height var(--transition-slow);
}

.card:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.card:hover::before {
  height: 100%;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1), 
    rgba(157, 78, 221, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.card-icon svg {
  color: var(--clr-blue);
  width: 32px;
  height: 32px;
  transition: transform var(--transition-base);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.2), 
    rgba(157, 78, 221, 0.1));
  border-color: rgba(14, 165, 233, 0.4);
  transform: scale(1.05);
}

.card:hover .card-icon svg {
  transform: rotate(5deg);
}

.card h3 {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
}

.card > p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

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

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

.list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  background: var(--clr-blue);
  border-radius: 50%;
}

/* ─────────────────────────────────────────────────────────────────────
   9. TIMELINE (Protsess)
───────────────────────────────────────────────────────────────────── */
.timeline {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

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

.step {
  position: relative;
  padding: var(--space-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.step:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-4px);
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--clr-blue);
  color: var(--clr-bg-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.step-body h3 {
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Connecting line on desktop */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -25px;
    width: 24px;
    height: 2px;
    background: var(--clr-border);
    z-index: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   10. GALLERY (Tööd)
───────────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

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

.shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.shot:hover {
  border-color: var(--clr-border-accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.shot-ph {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--clr-bg-elevated) 0%, var(--clr-bg-card) 100%);
  position: relative;
}

.shot-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.5;
}

.shot-ph::after {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

.shot figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  background: var(--clr-bg-elevated);
}

/* ─────────────────────────────────────────────────────────────────────
   11. QUOTES (Tagasiside)
───────────────────────────────────────────────────────────────────── */
.quotes {
  grid-template-columns: 1fr;
}

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

.quote {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
}

.quote.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quotes .quote:nth-child(1) { transition-delay: 0.1s; }
.quotes .quote:nth-child(2) { transition-delay: 0.25s; }
.quotes .quote:nth-child(3) { transition-delay: 0.4s; }

.quote::before {
  content: '"';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.quote:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-4px);
}

.quote > p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.quote-name {
  font-weight: 600;
  color: var(--clr-text);
}

.quote-dot {
  color: var(--clr-blue);
}

.quote-role {
  color: var(--clr-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────
   12. CONTACT
───────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-left h2 {
  margin-bottom: var(--space-sm);
}

.contact-lead {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-md);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
}

.info-card.revealed {
  opacity: 1;
  transform: translateX(0);
}

.contact-cards .info-card:nth-child(1) { transition-delay: 0.1s; }
.contact-cards .info-card:nth-child(2) { transition-delay: 0.2s; }
.contact-cards .info-card:nth-child(3) { transition-delay: 0.3s; }

.info-card:hover {
  border-color: var(--clr-border-accent);
}

.info-k {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-blue);
}

.info-v {
  font-size: 1rem;
  color: var(--clr-text);
}

a.info-v:hover {
  color: var(--clr-blue);
}

.micro-note {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.micro-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.375rem 0.75rem;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
}

/* Form */
.form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.form.revealed {
  opacity: 1;
  transform: translateX(0);
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.form label span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
}

.form label span .required {
  color: var(--clr-blue);
  font-weight: 700;
}

.form-hint .required {
  color: var(--clr-blue);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  min-height: 48px; /* WCAG touch target */
  font-size: 1rem;
  color: var(--clr-text);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form input:hover,
.form textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--clr-text-dim);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

/* Validation states */
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) {
  border-color: #ff6b6b;
}

.form input:valid:not(:placeholder-shown),
.form textarea:valid:not(:placeholder-shown) {
  border-color: rgba(0, 212, 255, 0.4);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 576px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
  }
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
}

.form-toast {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: none;
}

.form-toast.success {
  display: block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--clr-blue);
  color: var(--clr-blue);
}

.form-toast.error {
  display: block;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
}

/* ─────────────────────────────────────────────────────────────────────
   13. FOOTER – Premium Professional
───────────────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0a0a0f 0%, #07070c 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-3xl);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 20% 50%, rgba(157, 78, 221, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(74, 124, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Main footer content grid */
.footer-main {
  display: grid;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 3fr 2fr 2fr 1.4fr;
    gap: var(--space-3xl);
    column-gap: 4rem;
  }
}

/* Brand column */
.footer-brand-col {
  max-width: 400px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand-link:hover {
  transform: translateX(6px);
}

.footer-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 2px solid rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.05);
  padding: 4px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.footer-brand-link:hover .footer-logo {
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

.footer-logo-glow {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-md) + 8px);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
  opacity: 0;
  filter: blur(15px);
  z-index: 1;
  transition: opacity var(--transition-base);
}

.footer-brand-link:hover .footer-logo-glow {
  opacity: 1;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0EA5E9 0%, #4A7CFF 50%, #9D4EDD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* Social links */
.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-link:hover {
  color: var(--clr-blue);
  border-color: var(--clr-blue);
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Footer headings */
.footer-heading {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--clr-blue);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4);
}

/* Quick links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  position: relative;
}

.footer-nav a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--clr-blue);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.footer-nav a:hover {
  color: var(--clr-blue);
  transform: translateX(10px);
}

.footer-nav a:hover::before {
  width: 16px;
}

/* Contact list */
.footer-contact,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact a,
.footer-contact p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  margin: 0;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--clr-blue);
}

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

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: var(--space-xs) 0;
}

a.footer-contact-item:hover {
  color: var(--clr-blue);
  transform: translateX(4px);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-md);
  color: var(--clr-blue);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a.footer-contact-item:hover .footer-contact-icon {
  border-color: var(--clr-blue);
  background: rgba(14, 165, 233, 0.15);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
  transform: scale(1.1);
}

/* Info column - Simple and unified */
.footer-info-col {
  display: flex;
  flex-direction: column;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
}

.footer-info-label {
  color: var(--clr-text-muted);
  font-weight: 400;
}

.footer-info-value {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-legal-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

.footer-bottom-right {
  display: flex;
  align-items: center;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

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

.footer-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-quality-badge:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.footer-quality-badge svg {
  color: var(--clr-blue);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 2px currentColor);
  }
  50% { 
    filter: drop-shadow(0 0 8px currentColor);
  }
}

/* ─────────────────────────────────────────────────────────────────────
   FIXED BACK TO TOP BUTTON
───────────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--clr-blue);
  border-color: var(--clr-blue);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top svg {
  transition: transform var(--transition-fast);
}

/* Mobile: smaller and closer to edge */
@media (max-width: 767px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   14. ANIMATIONS & REVEALS
───────────────────────────────────────────────────────────────────── */

/* Base reveal animation - smooth scroll entrance */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for siblings - smoother cascade */
[data-reveal]:nth-child(2) { transition-delay: 0.15s; }
[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
[data-reveal]:nth-child(4) { transition-delay: 0.45s; }
[data-reveal]:nth-child(5) { transition-delay: 0.6s; }
[data-reveal]:nth-child(6) { transition-delay: 0.75s; }

/* Card children stagger - enhanced cascade effect */
.cards .card:nth-child(1) { 
  transition-delay: 0.15s; 
  transform: translateY(40px) translateX(-20px) scale(0.95);
}
.cards .card:nth-child(2) { 
  transition-delay: 0.3s; 
  transform: translateY(40px) scale(0.95);
}
.cards .card:nth-child(3) { 
  transition-delay: 0.45s; 
  transform: translateY(40px) translateX(20px) scale(0.95);
}

.cards .card.revealed:nth-child(1),
.cards .card.revealed:nth-child(2),
.cards .card.revealed:nth-child(3) {
  transform: translateY(0) translateX(0) scale(1);
}

/* Timeline stagger - slide in from left */
.timeline .step {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline .step.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline .step:nth-child(1) { transition-delay: 0.1s; }
.timeline .step:nth-child(2) { transition-delay: 0.25s; }
.timeline .step:nth-child(3) { transition-delay: 0.4s; }
.timeline .step:nth-child(4) { transition-delay: 0.55s; }
.timeline .step:nth-child(5) { transition-delay: 0.7s; }
.timeline .step:nth-child(6) { transition-delay: 1s; }

.filter-btn{
animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.filter-btn:nth-child(1) { animation-delay: 0.1s; }
.filter-btn:nth-child(2) { animation-delay: 0.25s; }
.filter-btn:nth-child(3) { animation-delay: 0.4s; }
.filter-btn:nth-child(4) { animation-delay: 0.55s; }
.filter-btn:nth-child(5) { animation-delay: 0.7s; }

/* Floating animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}



/* Card icon subtle pulse on reveal */
.card.revealed .card-icon {
  animation: iconPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

@keyframes iconPulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* Smooth icon rotation on card hover */
.card:hover .card-icon svg {
  animation: iconRotate 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconRotate {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

/* Timeline step number animation */
.step.revealed .step-no {
  animation: stepNumberGlow 1s ease-out 0.3s backwards;
}

@keyframes stepNumberGlow {
  0% { 
    opacity: 0; 
    transform: scale(0.5);
    box-shadow: 0 0 0 rgba(14, 165, 233, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.6);
  }
  100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
  }
}

/* Button glow animation enhancement */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::after {
  width: 300px;
  height: 300px;
}

/* Gallery image smooth zoom */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.revealed {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

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

/* Mini-cards slide in from sides */
.mini-card:nth-child(1) {
  animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.mini-card:nth-child(2) {
  animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.mini-card:nth-child(3) {
  animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trust pills fade in animation */
.trust-pill {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.trust-pill:nth-child(1) { animation-delay: 1.2s; }
.trust-pill:nth-child(2) { animation-delay: 1.35s; }
.trust-pill:nth-child(3) { animation-delay: 1.5s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero title elegant fade in */
.hero-title {
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow subtle entrance */
.eyebrow {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

/* Hero lead text delay */
.hero-lead {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

/* Hero CTA buttons */
.hero-cta .btn:nth-child(1) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.hero-cta .btn:nth-child(2) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s backwards;
}

/* Section headings smooth reveal */
.section-head h2 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.section-head p {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s backwards;
}

/* Header accent line smooth animation */
.header-accent {
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-accent::after {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { 
    opacity: 0.8;
    box-shadow: 0 0 10px currentColor;
  }
  50% { 
    opacity: 1;
    box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
  }
}

/* Back to top button entrance */
#backToTop {
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(100px) scale(0.8);
}

#backToTop.visible {
  transform: translateY(0) scale(1);
}

/* Smooth hover lift for interactive elements */
.nav-link,
.social-link,
.contact-info a {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover,
.social-link:hover,
.contact-info a:hover {
  transform: translateY(-2px);
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  
  .hero-right img {
    animation: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   15. RESPONSIVE FINE-TUNING
───────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .brand-name {
    font-size: 0.9375rem;
  }
  
  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }
  
  .brand-logo {
    width: 110px;

  }
  
  .brand {
    gap: 0.625rem;
  }
  
  .panel-cards {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   16. PRINT STYLES
───────────────────────────────────────────────────────────────────── */
@media print {
  .site-header,
  .nav,
  .hero-backdrop,
  .hero-bg-image,
  .hero-bg-overlay,
  .back-to-top,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   17. LOADING & PERFORMANCE
───────────────────────────────────────────────────────────────────── */
/* Prevent layout shift for images */
img {
  content-visibility: auto;
}

/* Smooth loading for hero background */
.hero-bg-image img {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 0.35; }
}

/* Optimize hover effects on touch devices */
@media (hover: none) {
  .card:hover,
  .mini-card:hover,
  .quote:hover,
  .step:hover,
  .shot:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --clr-border: rgba(255, 255, 255, 0.3);
    --clr-text-muted: #CCCCCC;
    --clr-text-dim: #AAAAAA;
  }
  
  .btn-primary {
    border: 2px solid white;
  }
}













/* --- FIX: Mobile menu overlay (works reliably with backdrop-filter headers) --- */
:root{
  --header-h: 80px; /* JS kirjutab üle */
}

.site-header{
  overflow: visible; /* igaks juhuks */
}

/* Mobile only */
@media (max-width: 991.98px){
  .nav-menu{
    position: absolute;        /* <-- WAS fixed */
    top: var(--header-h);      /* headeri alt */
    left: 0;
    right: 0;

    height: calc(100dvh - var(--header-h));
    z-index: 2000;             /* kindlasti üle sisu */

    /* sinu olemasolev jääb samaks: transform/opacity/visibility */
  }
}







    /* ═══════════════════════════════════════════════════════════════ */
    /* PORTFOOLIO PAGE SPECIFIC STYLES */
    /* ═══════════════════════════════════════════════════════════════ */
    
    /* Portfolio Filters */
    .portfolio-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 0 1rem;
    }
    
    @media (min-width: 640px) {
      .portfolio-filters {
        gap: 0.75rem;
        margin-top: 3rem;
      }
    }
    
    .filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1rem;
      background: var(--clr-bg-card);
      border: 1px solid var(--clr-border);
      border-radius: 100px;
      color: var(--clr-text-muted);
      font-size: 0.8125rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    @media (min-width: 640px) {
      .filter-btn {
        gap: 0.625rem;
      }
    }
    
    .filter-btn:hover {
      border-color: var(--clr-blue);
      color: var(--clr-text);
      background: var(--clr-bg-elevated);
      transform: translateY(-1px);
    }
    
    .filter-btn.active {
      background: var(--clr-blue);
      border-color: var(--clr-blue);
      color: var(--clr-bg-dark);
      box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }
    
    .filter-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.5rem;
      height: 1.5rem;
      padding: 0 0.375rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
    }
    
    .filter-btn.active .filter-count {
      background: rgba(0, 0, 0, 0.15);
      color: var(--clr-bg-dark);
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    @media (min-width: 480px) {
      .portfolio-grid {
        gap: 2rem;
      }
    }
    
    @media (min-width: 640px) {
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }
    
    @media (min-width: 1440px) {
      .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    /* Portfolio Item */
    .portfolio-item {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--clr-bg-card);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--clr-border);
    }
    
    @media (hover: hover) {
      .portfolio-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 
                    0 0 0 1px var(--clr-border-accent);
      }
    }
    
    @media (hover: none) {
      .portfolio-item:active {
        transform: scale(0.98);
      }
    }
    
    .portfolio-item-image {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--clr-bg-alt);
    }
    
    .portfolio-item-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @media (hover: hover) {
      .portfolio-item:hover .portfolio-item-image img {
        transform: scale(1.1);
      }
    }
    
    .portfolio-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, 
        rgba(7, 7, 12, 0.95) 0%, 
        rgba(7, 7, 12, 0.7) 40%,
        transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .portfolio-item-overlay {
        padding: 2rem;
      }
    }
    
    @media (hover: hover) {
      .portfolio-item:hover .portfolio-item-overlay {
        opacity: 1;
      }
    }
    
    @media (hover: none) {
      .portfolio-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, 
          rgba(7, 7, 12, 0.85) 0%, 
          transparent 60%);
      }
    }
    
    .portfolio-item-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.375rem;
      transform: translateY(12px);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
      letter-spacing: -0.01em;
    }
    
    @media (min-width: 640px) {
      .portfolio-item-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
      }
    }
    
    @media (hover: hover) {
      .portfolio-item:hover .portfolio-item-title {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    @media (hover: none) {
      .portfolio-item-title {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    .portfolio-item-category {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--clr-blue);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transform: translateY(12px);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }
    
    @media (min-width: 640px) {
      .portfolio-item-category {
        font-size: 0.875rem;
      }
    }
    
    @media (hover: hover) {
      .portfolio-item:hover .portfolio-item-category {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    @media (hover: none) {
      .portfolio-item-category {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    /* Empty State */
    .portfolio-empty {
      text-align: center;
      padding: 6rem 2rem;
      color: var(--clr-text-muted);
      grid-column: 1 / -1;
    }
    
    .portfolio-empty svg {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      opacity: 0.3;
      stroke: var(--clr-blue);
    }
    
    .portfolio-empty h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--clr-text);
    }
    
    .portfolio-empty p {
      font-size: 1rem;
      color: var(--clr-text-muted);
    }
    
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.96);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    
    .lightbox.active {
      display: flex;
    }
    
    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      animation: lightboxIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes lightboxIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    .lightbox-content img {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius-lg);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    }
    
    .lightbox-close {
      position: fixed;
      top: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--clr-bg-card);
      border: 1px solid var(--clr-border);
      border-radius: 50%;
      color: var(--clr-text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 10001;
    }
    
    .lightbox-close:hover {
      background: var(--clr-blue);
      border-color: var(--clr-blue);
      color: var(--clr-bg-dark);
      transform: rotate(90deg);
    }
    
    .lightbox-info {
      text-align: center;
      margin-top: 1.5rem;
    }
    
    .lightbox-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.375rem;
      letter-spacing: -0.01em;
    }
    
    .lightbox-category {
      color: var(--clr-blue);
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      background: var(--clr-bg-card);
      border: 1px solid var(--clr-border);
      border-radius: 50%;
      color: var(--clr-text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    
    .lightbox-nav:hover {
      background: var(--clr-blue);
      border-color: var(--clr-blue);
      color: var(--clr-bg-dark);
      transform: translateY(-50%) scale(1.1);
    }
    
    .lightbox-prev {
      left: -4.5rem;
    }
    
    .lightbox-next {
      right: -4.5rem;
    }
    
    @media (max-width: 768px) {
      .lightbox {
        padding: 1rem;
      }
      
      .lightbox-prev {
        left: 0.5rem;
        bottom: 0;
        top: auto;
        transform: none;
      }
      
      .lightbox-next {
        right: 0.5rem;
        bottom: 0;
        top: auto;
        transform: none;
      }
      
      .lightbox-nav {
        width: 36px;
        height: 36px;
        background: rgba(18, 18, 26, 0.85);
        backdrop-filter: blur(12px);
        border-color: rgba(255, 255, 255, 0.1);
      }
      
      .lightbox-nav:hover {
        transform: none;
      }
      
      .lightbox-nav svg {
        width: 18px;
        height: 18px;
      }
      
      .lightbox-nav:active {
        transform: scale(0.9);
        background: var(--clr-blue);
        color: var(--clr-bg-dark);
      }
      
      .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(18, 18, 26, 0.9);
        backdrop-filter: blur(12px);
        border-color: rgba(255, 255, 255, 0.15);
      }
      
      .lightbox-close:hover {
        transform: none;
      }
      
      .lightbox-close:active {
        transform: scale(0.9);
        background: var(--clr-blue);
        color: var(--clr-bg-dark);
      }
      
      .lightbox-close svg {
        width: 18px;
        height: 18px;
      }
      
      .lightbox-content img {
        max-height: 75vh;
      }
      
      .lightbox-info {
        margin-top: 1rem;
      }
      
      .lightbox-title {
        font-size: 1rem;
      }
      
      .lightbox-category {
        font-size: 0.75rem;
      }
    }
    
    /* Loading state */
    .portfolio-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 6rem 2rem;
      color: var(--clr-text-muted);
      grid-column: 1 / -1;
    }
    
    .loading-spinner {
      width: 48px;
      height: 48px;
      border: 3px solid var(--clr-border);
      border-top-color: var(--clr-blue);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      margin-bottom: 1.5rem;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .portfolio-loading p {
      font-size: 1rem;
      font-weight: 500;
    }
  
/* ═══════════════════════════════════════════════════════════════════
   HINNAKIRI LEHT – PRICING PAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Page Hero for sub-pages */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  text-align: center;
  overflow: hidden;
  background: var(--clr-bg-alt);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero .hero-lead {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(157, 78, 221, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

/* 4-column grid for hourly services */
.pricing-grid-4 {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

@media (min-width: 1200px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Pricing Card */
.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}

.pricing-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--clr-border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Featured pricing card */
.pricing-card-featured {
  border-color: var(--clr-border-accent);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.03) 0%, 
    var(--clr-bg-card) 50%);
}

.pricing-card-featured::before {
  opacity: 1;
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Pricing Header */
.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1), 
    rgba(157, 78, 221, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.pricing-icon svg {
  color: var(--clr-blue);
  width: 32px;
  height: 32px;
}

.pricing-card:hover .pricing-icon {
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.2), 
    rgba(157, 78, 221, 0.1));
  border-color: rgba(14, 165, 233, 0.4);
  transform: scale(1.05);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.pricing-header p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  margin: 0;
}

/* Pricing Price */
.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.pricing-price.pricing-price--stacked {
  flex-direction: column;
  gap: 0.5rem;
}

.price-from {
  font-size: 0.875rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-left: 0.25rem;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--clr-text-muted);
  background-clip: unset;
}

/* Hourly pricing style - horizontal display */
.pricing-price-hourly {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.pricing-price-hourly .price-amount {
  font-size: 2.25rem;
}

.pricing-price-hourly .price-unit {
  font-size: 1rem;
}

/* Simple pricing for smaller cards */
.pricing-price-simple {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pricing-price-simple .price-from {
  font-size: 0.75rem;
}

.pricing-price-simple .price-amount {
  font-size: 1.75rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────────
   Special Services Cards (Muud teenused)
───────────────────────────────────────────────────────────────────── */
.special-services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .special-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.special-service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.special-service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient border effect on hover */
.special-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--clr-blue), var(--clr-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

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

.special-service-card:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .special-service-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem;
  }
}

.special-service-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1), 
    rgba(157, 78, 221, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.special-service-icon svg {
  color: var(--clr-blue);
  transition: transform var(--transition-base);
}

.special-service-card:hover .special-service-icon {
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.2), 
    rgba(157, 78, 221, 0.15));
  border-color: rgba(14, 165, 233, 0.4);
}

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

.special-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.special-service-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.special-service-content p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

.special-service-price {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-blue);
  margin-top: 0.5rem;
}

.special-service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (min-width: 768px) {
  .special-service-card .btn {
    align-self: center;
    margin-top: 0;
    white-space: nowrap;
  }
}

/* Pricing Features */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

.pricing-feature svg {
  flex-shrink: 0;
  color: var(--clr-blue);
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
}

/* Info Box */
.info-box {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.info-box-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1), 
    rgba(157, 78, 221, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box-icon svg {
  color: var(--clr-blue);
  width: 32px;
  height: 32px;
}

.info-box-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.info-list li::before {
  content: '→';
  color: var(--clr-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (max-width: 767px) {
  .info-box {
    flex-direction: column;
  }
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.08) 0%, 
    rgba(157, 78, 221, 0.04) 100%);
  border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.cta-content p {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin: 0;
}

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

@media (max-width: 640px) {
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
}

/* Contact info cards in pricing page */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
}

.contact-card.revealed {
  opacity: 1;
  transform: translateX(0);
}

.contact-card:hover {
  border-color: var(--clr-border-accent);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1), 
    rgba(157, 78, 221, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  color: var(--clr-blue);
  width: 24px;
  height: 24px;
}

.contact-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-blue);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.6;
}

.contact-card a {
  transition: color var(--transition-fast);
}

.contact-card a:hover {
  color: var(--clr-blue);
}

/* Contact form wrapper */
.contact-form-wrap {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-wrap.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Contact form */
.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-group:last-of-type {
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  min-height: 48px;
  font-size: 1rem;
  color: var(--clr-text);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* ========================================
   About Section Styles
   ======================================== */

.about-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: left;
}

.about-story h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}

.about-story p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.values-section {
  margin-top: 4rem;
}

.values-section > h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .about-content {
    margin-bottom: 5rem;
  }

  .about-story h3 {
    font-size: 2rem;
  }

  .values-section {
    margin-top: 5rem;
  }

  .values-section > h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-content {
    max-width: 1000px;
  }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--clr-text-dim);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

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

.contact-form button[type="submit"] {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-form button[type="submit"] {
    width: auto;
  }
}
/* ═══════════════════════════════════════════════════════════════════
   KONTAKT LEHT – CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Contact page intro */
.contact-intro {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Contact cards grid */
.contact-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

/* Individual contact card */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

a.contact-card:hover {
  border-color: var(--clr-blue);
  background: rgba(0, 212, 255, 0.03);
  transform: translateY(-2px);
}

a.contact-card:hover .contact-card-icon {
  background: rgba(0, 212, 255, 0.15);
  color: var(--clr-blue);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--clr-blue);
  transition: all var(--transition-base);
}

.contact-card-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.contact-card-hint {
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
}

/* Company info section */
.company-info {
  padding: 1.5rem;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}

.company-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.company-info-grid {
  display: grid;
  gap: 0.75rem;
}

.company-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
}

.company-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.company-info-label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.company-info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

/* Form intro */
.form-intro {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Form row for side-by-side fields */
.form-row {
  display: grid;
  gap: 1rem;
}

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

/* File upload area */
.form-group-file {
  margin-bottom: 1.5rem;
}

.file-upload-area {
  position: relative;
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--clr-bg-elevated);
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.file-upload-area:hover .file-upload-content,
.file-upload-area:focus-within .file-upload-content {
  border-color: var(--clr-blue);
  background: rgba(0, 212, 255, 0.03);
}

.file-upload-content svg {
  color: var(--clr-text-muted);
}

.file-upload-content p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

.file-upload-content p span {
  color: var(--clr-blue);
  font-weight: 600;
}

.file-upload-hint {
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
}

/* Form note */
.form-note {
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
  margin-top: 1rem;
}

/* Large button variant */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 56px;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

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

.faq-item {
  padding: 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.faq-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   CUSTOM SELECT WRAPPER – Ilusam dropdown
   ═══════════════════════════════════════════════════════════════════ */

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--clr-text);
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.select-wrapper select:hover {
  border-color: rgba(0, 212, 255, 0.4);
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.select-wrapper .select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.select-wrapper select:focus + .select-icon {
  color: var(--clr-blue);
}

/* Optgroup styling */
.select-wrapper select optgroup {
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-bg-card);
  padding: 0.5rem 0;
}

.select-wrapper select option {
  padding: 0.75rem 1rem;
  background: var(--clr-bg-elevated);
  color: var(--clr-text);
}

/* ═══════════════════════════════════════════════════════════════════
   FILE PREVIEW LIST – Piltide eelvaade
   ═══════════════════════════════════════════════════════════════════ */

.file-preview-list {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.file-preview-list.has-files {
  display: flex;
}

.file-preview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.file-preview-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.file-preview-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-bg-card);
}

.file-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.file-preview-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-preview-size {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
}

.file-preview-remove {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-preview-remove:hover {
  background: rgba(255, 100, 100, 0.1);
  border-color: rgba(255, 100, 100, 0.4);
  color: #ff6464;
}

.file-preview-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.file-preview-total span:last-child {
  font-weight: 600;
  color: var(--clr-blue);
}

/* Drag active state */
.file-upload-area.dragging .file-upload-content {
  border-color: var(--clr-blue);
  background: rgba(0, 212, 255, 0.08);
}

.file-upload-area.dragging .file-upload-content svg {
  color: var(--clr-blue);
  transform: translateY(-4px);
}

/* File preview responsive */
@media (max-width: 480px) {
  .file-preview-list {
    gap: 0.5rem;
  }

  .file-preview-item {
    padding: 0.625rem;
    gap: 0.75rem;
  }

  .file-preview-image {
    width: 48px;
    height: 48px;
  }

  .file-preview-info {
    flex: 1;
    min-width: 0;
  }

  .file-preview-name {
    font-size: 0.8125rem;
  }

  .file-preview-size {
    font-size: 0.75rem;
  }

  .file-preview-remove {
    width: 28px;
    height: 28px;
  }

  .file-preview-remove svg {
    width: 14px;
    height: 14px;
  }

  .file-preview-total {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/* File upload area responsive */
@media (max-width: 480px) {
  .file-upload-content {
    padding: 1.5rem 1rem;
  }

  .file-upload-content svg {
    width: 28px;
    height: 28px;
  }

  .file-upload-content p {
    font-size: 0.875rem;
  }

  .file-upload-hint {
    font-size: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL PAGES – Privaatsuspoliitika, Küpsised jne
   ═══════════════════════════════════════════════════════════════════ */

.container-narrow {
  max-width: 800px;
}

.page-hero-sm {
  padding: 8rem 0 3rem;
}

.page-hero-sm .page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
}

.legal-intro {
  font-size: 1.125rem;
  color: var(--clr-text);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.legal-section ul li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--clr-blue);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.legal-section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-box {
  padding: 1.25rem 1.5rem;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin: 1rem 0 1.5rem;
}

.legal-box p {
  margin-bottom: 0.375rem;
}

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












/* Honeypot offscreen */
.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Field errors */
.form-group.is-error input,
.form-group.is-error textarea,
.form-group.is-error select{
  border-color: #d93025;
  box-shadow: 0 0 0 2px rgba(217,48,37,.12);
}

.field-error{
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.25;
  color: #d93025;
}

#formMessage.success{ color: #1e8e3e; }
#formMessage.error{ color: #d93025; }







