/* ================================================
   EVERGREEN MEDIA DESIGN - GLOBAL STYLES
   ================================================ */

:root {
  /* Light mode colors - default - Phase 6: Premium refinement */
  --bg: #FAFAFA;
  --bg-alt: #F0EDE8;
  --text: #0F0F0F;
  --text-muted: #5A5A5A;
  --accent: #0F3D2E;
  --accent-soft: #A3C9A8;
  --accent-lighter: #D4E5D0;
  --border: rgba(0, 0, 0, 0.08);
  
  /* Spacing scale - Phase 6: Premium breathing room */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
  --space-4xl: 160px;
  
  /* Typography - Phase 6: Refined hierarchy */
  --font-heading: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Transitions - Phase 6: Smooth, elegant motion */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-gentle: 600ms cubic-bezier(0.35, 0, 0.25, 1);
  
  /* Shadows - Phase 6: Soft, layered depth */
  --shadow-xs: 0 0 1px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  
  /* Border radius - Phase 6: Consistent, elegant curves */
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
}

/* ================================================
   DARK MODE OVERRIDE
   ================================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0D0D0D;
    --bg-alt: #1A1A1A;
    --text: #F5F5F5;
    --text-muted: #ACACAC;
    --accent: #A3C9A8;
    --accent-soft: #0F3D2E;
    --accent-lighter: #1A5C3A;
    --border: rgba(255, 255, 255, 0.08);
  }
}

[data-theme="dark"] {
  --bg: #0D0D0D;
  --bg-alt: #1A1A1A;
  --text: #F5F5F5;
  --text-muted: #ACACAC;
  --accent: #A3C9A8;
  --accent-soft: #0F3D2E;
  --accent-lighter: #1A5C3A;
  --border: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  --bg: #FAFAFA;
  --bg-alt: #F0EDE8;
  --text: #0F0F0F;
  --text-muted: #5A5A5A;
  --accent: #0F3D2E;
  --accent-soft: #A3C9A8;
  --accent-lighter: #D4E5D0;
  --border: rgba(0, 0, 0, 0.08);
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: var(--line-height-relaxed);
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  overflow-wrap: break-word;
}

section.trust-bar {
  margin-top: auto;
}

/* ================================================
   TYPOGRAPHY - Phase 6: Refined, elegant hierarchy
   ================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h3 {
  font-size: clamp(1.125rem, 2.6vw, 1.875rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
}

h4 {
  font-size: clamp(1.05rem, 2.1vw, 1.375rem);
  letter-spacing: -0.015em;
}

h1, h2, h3, h4 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
  color: var(--text);
}

@media (max-width: 480px) {
  p {
    line-height: 1.7;
  }
}

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

/* Phase 6: Display styles for premium headings */
.display-large {
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.display-medium {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

 

/* Phase 6: Caption and metadata */
.caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 500;
}

.caption-small {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

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

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

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

/* ================================================
   LAYOUT CONTAINERS - Phase 6: Improved rhythm
   ================================================ */

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

section {
  padding: var(--space-3xl) var(--space-lg);
}

section:nth-child(even) {
  background-color: var(--bg-alt);
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .header-container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    padding: calc(var(--space-2xl) * 0.75) var(--space-md);
  }

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

  nav {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  nav a {
    font-size: 0.85rem;
  }
}

/* ================================================
   HEADER & NAVIGATION - Phase 6: Minimal, refined
   ================================================ */

header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: border-color var(--transition-smooth);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] header {
  background-color: rgba(13, 13, 13, 0.8);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent-soft);
  transform: translateY(-1px);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: currentColor;
}

nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

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

nav a.active {
  color: var(--accent);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text);
  transition: all var(--transition-fast);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  min-height: 44px;
  min-width: 44px;
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.theme-toggle:hover {
  background-color: var(--bg-alt);
  transform: rotate(20deg);
}

@media (max-width: 480px) {
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  nav {
    gap: var(--space-xs);
    font-size: 0.75rem;
  }
  
  nav a {
    letter-spacing: -0.02em;
  }
  
  nav a.active::after {
    bottom: -4px;
    height: 1.5px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 var(--space-md);
  }
  
  nav {
    gap: var(--space-md);
    font-size: 0.9rem;
  }
  
  .logo-text {
    display: none;
  }
}

/* ================================================
   BUTTONS & INTERACTIVE ELEMENTS - Phase 6: Refined
   ================================================ */

.btn {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: box-shadow var(--transition-normal), background-color var(--transition-normal), color var(--transition-fast), transform var(--transition-fast);
  text-align: center;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(163,201,168,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

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

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-soft);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }
}

.btn-block {
  width: 100%;
  display: block;
}

/* ================================================
   FORMS - Phase 6: Refined, minimal design
   ================================================ */

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (max-width: 480px) {
  form {
    gap: var(--space-md);
  }
}


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

label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

input,
textarea,
select {
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--text);
  background-color: var(--bg);
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-lighter);
  background-color: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  input:focus,
  textarea:focus,
  select:focus {
    box-shadow: inset 0 0 0 2px var(--accent);
  }
}

textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  textarea {
    min-height: 120px;
    font-size: 16px;
  }
}

select {
  cursor: pointer;
  appearance: none;
  padding-right: var(--space-xl);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230F3D2E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-lg) center;
}

@media (max-width: 480px) {
  select {
    font-size: 16px;
    padding-right: var(--space-lg);
  }
}

/* ================================================
   CARDS & COMPONENTS - Phase 6: Premium refinement
   ================================================ */

.card {
  background-color: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  background-color: var(--accent-soft);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform var(--transition-smooth);
}

@media (max-width: 480px) {
  .card-img {
    height: 200px;
  }
}

.card:hover .card-img {
  transform: scale(1.03);
}

.card-body {
  padding: var(--space-lg);
}

@media (max-width: 480px) {
  .card-body {
    padding: var(--space-md);
  }
  
  .card-title {
    font-size: 1.125rem;
  }
  
  .card-text {
    font-size: 0.9rem;
  }
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: -0.01em;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
}

.card-link:hover {
  gap: var(--space-md);
  transform: translateX(2px);
}

/* ================================================
   GRID LAYOUTS - Phase 6: Flexible, responsive
   ================================================ */

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-auto {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid {
    gap: var(--space-lg);
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   HERO SECTIONS - Phase 6: Premium, confident
   ================================================ */

.hero {
  padding: calc(var(--space-3xl) * 0.75) var(--space-lg);
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.8s ease-out;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(163, 201, 168, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  font-weight: 800;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subheadline {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  line-height: var(--line-height-normal);
  font-weight: 400;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.pillar {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 480px) {
  .pillar {
    padding: var(--space-md);
  }
  
  .pillar-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .pillar h3 {
    font-size: 1.05rem;
  }
}

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

.pillar-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  line-height: 1;
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.pillar:hover .pillar-icon {
  transform: scale(1.1) rotate(5deg);
}

.pillar h3 {
  color: var(--accent);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.pillar p {
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
}

/* ================================================
   FOOTER - Phase 6: Elegant conclusion
   ================================================ */

footer {
  background-color: var(--bg-alt);
  color: var(--text);
  padding: var(--space-3xl) var(--space-lg);
  margin-top: var(--space-4xl);
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  footer {
    padding: var(--space-2xl) var(--space-md);
    margin-top: var(--space-2xl);
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-section h4 {
  margin-bottom: var(--space-md);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-section a {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all var(--transition-normal);
  border: 1px solid var(--border);
  min-height: 44px;
  min-width: 44px;
}

.social-links a:hover {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-accent {
  color: var(--accent);
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.hidden {
  display: none !important;
}

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

/* ================================================
   PHASE 6: ANIMATIONS & MOTION SYSTEM
   ================================================ */

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* Scroll-triggered animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out;
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.8s ease-out;
}

.transition-all {
  transition: all var(--transition-normal);
}

/* ================================================
   PRICING PAGE COMPONENTS - Phase 6: Premium design
   ================================================ */

.pricing-card {
  padding: var(--space-lg);
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.pricing-card h3 {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.pricing-list {
  text-align: left;
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
  list-style: none;
}

.pricing-list li {
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-normal);
}

.pricing-tagline {
  margin-top: var(--space-md);
  font-style: italic;
  color: var(--text-muted);
}

.bg-alt {
  background-color: var(--bg-alt);
}
/* ================================================
   HOMEPAGE FIX PASS - NEW UTILITY CLASSES
   ================================================ */

/* Gradient background for audit section */
.gradient-audit {
  background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-soft) 100%);
}

/* Large emoji icons for media services */
.icon-emoji-large {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

/* Audit section typography */
.audit-title {
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.audit-description {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

/* CTA section description */
.cta-description {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

/* CTA button group with flex layout */
.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Full-width button utility */
.btn-full-width {
  margin-top: var(--space-md);
  width: 100%;
}

/* ================================================
   SITE-WIDE FIX PASS - ADDITIONAL UTILITY CLASSES
   ================================================ */

/* List styling for service cards */
.service-list {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

/* Process step numbers */
.process-number {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

/* Centered card with padding */
.card-centered {
  padding: var(--space-lg);
  text-align: center;
}

/* Featured/highlighted card */
.card-featured {
  border: 2px solid var(--accent);
}

/* Section with centered heading */
.section-heading-center {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* Narrow centered container */
.container-narrow {
  max-width: 800px;
  text-align: center;
}

/* Wide centered container */
.container-medium {
  max-width: 900px;
}

/* Accent colored heading */
.heading-accent {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

/* Process/step container */
.process-step {
  text-align: center;
}

/* Info callout box */
.info-box {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Info box paragraphs */
.info-box-text {
  margin: 0;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.info-box-text:last-child {
  margin-bottom: 0;
}

/* Accent link in text */
.link-accent {
  color: var(--accent);
  font-weight: 600;
}

/* Grid with extra gap */
.grid-gap-xl {
  gap: var(--space-xl);
}

/* Grid items aligned center */
.grid-align-center {
  align-items: center;
}

/* Large emoji display box */
.emoji-display {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
  height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 6rem;
}

/* Quote/emphasis text */
.text-emphasis {
  margin-top: var(--space-lg);
  font-weight: 600;
  color: var(--accent);
}

/* Large text */
.text-large {
  font-size: 1.125rem;
}

/* Extra responsive */
@media (max-width: 768px) {
  .emoji-display {
    height: 300px;
    font-size: 4rem;
  }
  
  .process-number {
    font-size: 2.5rem;
  }
}

/* Booking/Contact form specific */
.form-container-bg {
  background-color: var(--bg-alt);
  padding: var(--space-lg);
  border-radius: 8px;
}

/* Required field asterisk */
.required-mark {
  color: var(--accent);
}

/* Confirmation message */
.confirmation-box {
  background-color: var(--accent-soft);
  color: var(--accent);
  padding: var(--space-lg);
  border-radius: 8px;
  margin-top: var(--space-lg);
  text-align: center;
}

.confirmation-box h3 {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.confirmation-box-note {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Note/info paragraph styling */
.note-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
