/* Pure Survey - Enhanced Stylesheet */

:root {
  /* Primary - Teal/Blue inspired by Pure Survey */
  --primary-50: #e6f7f7;
  --primary-100: #ccefef;
  --primary-200: #99dfdf;
  --primary-300: #66cfcf;
  --primary-400: #33bfbf;
  --primary-500: #00a8a8;
  --primary-600: #008f8f;
  --primary-700: #007575;
  --primary-800: #005c5c;
  --primary-900: #004242;

  /* Accent - Deep Blue */
  --accent-500: #1e3a5f;
  --accent-600: #152a45;
  --accent-700: #0d1b2a;

  /* Warm accent - Orange/Coral for CTAs */
  --warm-400: #ff8c42;
  --warm-500: #ff6b35;
  --warm-600: #e85a24;

  /* Slate neutrals */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
  --gradient-hero: linear-gradient(135deg, var(--accent-700) 0%, var(--primary-700) 50%, var(--primary-600) 100%);
  --gradient-subtle: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--slate-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-xs {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}

p {
  color: var(--slate-600);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .lead { font-size: 1.25rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 168, 168, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 168, 0.4);
}

.btn-warm {
  background: var(--warm-500);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-warm:hover {
  background: var(--warm-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--slate-700);
  border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--slate-200);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.logo-img-light {
  filter: brightness(0) invert(1);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.15s;
  position: relative;
}

.nav a:hover {
  color: var(--primary-600);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.2s;
}

.nav a:hover::after {
  width: 100%;
}

.header .btn {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--slate-100);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-600);
}

.mobile-nav {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--slate-200);
  background: white;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 0.5rem;
}

.mobile-nav a:hover {
  background: var(--slate-100);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header .btn { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Hero Section - Dark gradient */
.hero {
  background: var(--gradient-hero);
  padding: 5rem 0 6rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  max-width: 800px;
}

.hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

.hero .lead {
  margin-top: 1.5rem;
}

.hero .btn-group {
  margin-top: 2.5rem;
}

.hero-centered {
  text-align: center;
}

.hero-centered h1,
.hero-centered p {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .btn-group {
  justify-content: center;
}

@media (min-width: 640px) {
  .hero { padding: 6rem 0 7rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 7rem 0 8rem; }
}

/* Hero - Light variant */
.hero-light {
  background: var(--gradient-subtle);
  color: var(--slate-900);
  padding: 4rem 0 5rem;
}

.hero-light::before {
  display: none;
}

.hero-light h1 {
  color: var(--slate-900);
}

.hero-light p {
  color: var(--slate-600);
}

/* Stats bar */
.stats-bar {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-alt {
  background: var(--slate-50);
}

.section-dark {
  background: var(--accent-700);
  color: white;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  margin-top: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--primary-300);
}

/* Content list with icons */
.content-list {
  margin-top: 1.5rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--slate-700);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.content-list li::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-100);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23008f8f'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}

.section-dark .content-list li {
  color: rgba(255,255,255,0.9);
}

.section-dark .content-list li::before {
  background-color: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2366cfcf'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--slate-100);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: var(--primary-200);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-600);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.feature-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-600);
  transition: gap 0.2s;
}

.feature-card:hover .arrow {
  gap: 0.75rem;
}

/* Solution Cards (larger) */
.solution-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-card {
  display: block;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid var(--slate-200);
}

.solution-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 8px 24px rgba(0, 168, 168, 0.12);
}

.solution-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.solution-card:hover h2 {
  color: var(--primary-600);
}

.solution-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.solution-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-600);
}

/* Steps */
.steps {
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.9375rem;
}

/* Info box */
.info-box {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--slate-50) 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  border-left: 4px solid var(--primary-500);
}

.info-box h3 {
  font-size: 1rem;
  color: var(--primary-700);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.9375rem;
}

.info-box h3 + p + h3 {
  margin-top: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-200);
  line-height: 1;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* Client logos */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  opacity: 0.6;
}

.client-logos span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.05em;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary-600);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  min-width: 200px;
}

/* CTA Box (inline) */
.cta-box {
  background: linear-gradient(135deg, var(--primary-50) 0%, white 100%);
  border: 1px solid var(--primary-200);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-box h3 {
  margin-bottom: 0.5rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--slate-200);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-success {
  background: linear-gradient(135deg, var(--primary-50) 0%, white 100%);
  border: 1px solid var(--primary-200);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.form-success h3 {
  color: var(--primary-700);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--primary-600);
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .contact-methods { grid-template-columns: repeat(3, 1fr); }
}

.contact-method {
  background: var(--slate-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.contact-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.contact-method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
}

.contact-method h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-method p {
  font-size: 0.875rem;
}

/* Two column layout */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Page header (for inner pages) */
.page-header {
  background: var(--gradient-hero);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* Footer */
.footer {
  background: var(--accent-700);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-col h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
  color: white;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-primary { color: var(--primary-600); }
.text-slate-900 { color: var(--slate-900); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
