/* ==========================================
   ZetaSites - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --indigo: #4f46e5;
  --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;
  --green-50: #f0fdf4;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --yellow-400: #facc15;
  --white: #ffffff;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: linear-gradient(to bottom, var(--slate-50), var(--white));
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--slate-700);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.nav-phone i {
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--slate-700);
  cursor: pointer;
  font-size: 1.5rem;
}

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

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--slate-700);
  font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

/* Banner */
.banner {
  background: linear-gradient(to right, var(--amber-500), var(--orange-500));
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .banner { font-size: 1rem; }
}

.banner span {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--indigo));
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--primary-dark), #4338ca);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: var(--slate-900);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--slate-800);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--slate-50);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

.btn-outline:hover {
  background: var(--slate-50);
}

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

.btn-full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge i {
  font-size: 0.875rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

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

.section-gray {
  background: linear-gradient(to bottom, var(--slate-50), var(--white));
}

.section-dark {
  background: linear-gradient(to bottom, var(--slate-900), var(--slate-800));
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(to right, var(--primary), var(--indigo));
  color: var(--white);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-title .highlight {
  background: linear-gradient(to right, var(--primary), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta-link {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .hero-cta-link { font-size: 1.5rem; }
}

.hero-cta-link:hover {
  color: var(--primary-dark);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 0.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-urgency {
  color: var(--orange-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-stats {
  color: var(--slate-500);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.hero-note {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.hero-image {
  margin-top: 3rem;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--slate-50), transparent);
  z-index: 1;
  pointer-events: none;
  border-radius: 1.5rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.3s;
}

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

.card-body {
  padding: 1.5rem;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.15));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-icon-center {
  margin-left: auto;
  margin-right: auto;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--slate-600);
  font-size: 0.875rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 1rem;
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--primary-dark);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

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

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

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

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

/* Two Column Layout */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col-image {
  position: relative;
}

.two-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(to right, var(--primary), var(--indigo));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

.experience-badge-number {
  font-size: 1.875rem;
  font-weight: 700;
}

.experience-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Benefits List */
.benefits-list {
  margin-top: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefits-list i {
  color: var(--green-500);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefits-list strong {
  color: var(--slate-900);
}

.benefits-list p {
  color: var(--slate-600);
  margin-top: 0.25rem;
}

/* Portfolio */
.portfolio-card {
  overflow: hidden;
}

.portfolio-card .card-image {
  position: relative;
  overflow: hidden;
}

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

.portfolio-card:hover .card-image img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  padding: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--yellow-400);
}

.testimonial-text {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-900);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
}

.pricing-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-card.popular .card-body {
  padding-top: 3.5rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.pricing-price small {
  color: var(--slate-500);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--slate-700);
}

.pricing-features i {
  color: var(--green-500);
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.75rem;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--slate-600);
}

/* Contact Info Cards */
.contact-info-card {
  text-align: center;
}

.contact-info-card .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info-card .card-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info-card .card-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--indigo));
}

.contact-info-card .card-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.contact-info-card .card-icon.orange {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
}

.contact-info-card .card-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

/* Contact Form Card */
.contact-form-card {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

.contact-form-card .card-body {
  padding: 2rem;
}

@media (min-width: 640px) {
  .contact-form-card .card-body { padding: 3rem; }
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

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

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--slate-600);
}

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

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.process-text {
  color: var(--slate-600);
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.timeline-year {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  color: var(--white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.timeline-text {
  color: var(--slate-600);
}

/* Business Types */
.business-type-card {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.business-type-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.business-type-card p {
  font-weight: 500;
  color: var(--slate-900);
}

/* Quick Contact */
.quick-contact {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.quick-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.2s;
}

.quick-contact-link:hover {
  box-shadow: var(--shadow-xl);
  color: var(--primary-dark);
}

/* CTA Contact Cards */
.cta-contact-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.cta-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 1rem;
  color: var(--white);
  transition: background 0.2s;
}

.cta-contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-contact-card .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-contact-card .icon-circle.blue {
  background: var(--primary);
}

.cta-contact-card .icon-circle.green {
  background: var(--green-500);
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo img {
  height: 3rem;
  width: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* Simple Footer */
.footer-simple {
  padding: 2rem 0;
}

.footer-simple-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-simple-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-simple p {
  font-size: 0.875rem;
  color: var(--slate-400);
}

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

.footer-simple-links a {
  color: var(--slate-400);
  transition: color 0.2s;
}

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

/* Response Notice */
.response-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  color: var(--slate-700);
  font-weight: 500;
  margin-top: 2rem;
}

.response-notice i {
  color: var(--primary);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-light { color: rgba(255, 255, 255, 0.8); }
.text-amber { color: var(--amber-300); }
.text-orange { color: var(--orange-600); }
.text-primary { color: var(--primary); }
.text-slate { color: var(--slate-600); }
.text-slate-light { color: var(--slate-500); }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

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

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