/* SES Endustri - Static Website Styles */
/* Complete CSS - No build required */

/* 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;
  background-color: #050505;
  color: #fafafa;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* CSS Variables */
:root {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --background: #050505;
  --foreground: #fafafa;
  --card: #0a0a0a;
  --card-foreground: #fafafa;
  --muted: #171717;
  --muted-foreground: #a3a3a3;
  --border: #262626;
  --ring: #f97316;
  --radius: 0.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { color: var(--muted-foreground); }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

/* Container */
.container { width: 100%; 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; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); border-color: var(--primary); }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #20bd5a; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Navigation */
.top-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}
.top-bar a:hover { color: var(--primary); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(5, 5, 5, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.logo span { color: var(--primary); }

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--foreground); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 40;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 0.25rem; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.dropdown-item:hover { background: var(--muted); }
.dropdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.dropdown-text h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.dropdown-text p { font-size: 0.75rem; color: var(--muted-foreground); }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(249,115,22,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.1) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(249,115,22,0.15);
  border: 2px solid rgba(249,115,22,0.4);
  border-radius: 9999px;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(249,115,22,0.2);
}
.hero-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); filter: drop-shadow(0 0 8px rgba(249,115,22,0.6)); }
.hero-badge span { 
  font-size: 1rem; 
  font-weight: 800; 
  color: var(--primary);
  text-shadow: 0 0 10px rgba(249,115,22,0.5);
}
@media (min-width: 768px) { 
  .hero-badge { padding: 1rem 2rem; }
  .hero-badge svg { width: 1.5rem; height: 1.5rem; }
  .hero-badge span { font-size: 1.25rem; }
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 span { color: var(--primary); }
.hero-desc { font-size: 1.125rem; max-width: 700px; margin: 0 auto 2rem; color: var(--muted-foreground); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--primary); }
.section-desc { color: var(--muted-foreground); max-width: 600px; margin: 0 auto; }

/* Services Grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #fb923c);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card > p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Projects Section */
.projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.project-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.project-image {
  aspect-ratio: 16/10;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}
.project-content { padding: 1.5rem; }
.project-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.project-content p { font-size: 0.875rem; }

/* About Section */
.about-section { background: var(--card); }
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content h2 span { color: var(--primary); }
.about-content > p { margin-bottom: 2rem; }
.about-features { display: grid; gap: 1rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}
.about-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.about-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.about-feature p { font-size: 0.875rem; }
.about-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Quality Section */
.quality-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .quality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quality-grid { grid-template-columns: repeat(5, 1fr); } }
.quality-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.quality-card:hover { border-color: var(--primary); }
.quality-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.quality-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.quality-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.75rem; }

/* Contact Section */
.contact-section { background: var(--card); }
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info h2 span { color: var(--primary); }
.contact-info > p { margin-bottom: 2rem; }
.contact-items { display: grid; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--muted);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.contact-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-item p, .contact-item a { font-size: 0.875rem; color: var(--muted-foreground); display: block; }
.contact-item a:hover { color: var(--primary); }
.whatsapp-buttons { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .whatsapp-buttons { grid-template-columns: repeat(2, 1fr); } }

/* Contact Form */
.contact-form {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin: 1rem 0; font-size: 0.875rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 1.25rem; height: 1.25rem; }
.footer-column h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-column a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-contact svg { width: 1rem; height: 1rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.25rem; }
.modal-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
}
.modal-close:hover { color: var(--foreground); }
.modal-body { padding: 1.5rem; }

/* Service Page */
.service-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--card) 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
}
.service-hero h1 { margin-bottom: 1rem; }
.service-hero p { font-size: 1.125rem; max-width: 600px; }
.service-content { padding: 4rem 0; }
.service-main {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .service-main { grid-template-columns: 2fr 1fr; } }
.service-details h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary); }
.service-details p { margin-bottom: 1.5rem; }
.service-list { list-style: none; margin-bottom: 2rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.service-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 6rem;
}
.service-sidebar h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.sidebar-contact { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.sidebar-contact a:hover { background: var(--border); }
.sidebar-contact svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

/* Page Transition Animation */
.page-transition {
  display: none;
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-transition.active { display: flex; }
.page-transition .logo-anim {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}
.page-transition .logo-anim span { color: var(--primary); }
.page-transition .underline-anim {
  width: 200px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(249,115,22,0.5);
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease forwards 0.3s;
  transform: scaleX(0);
}
.page-transition .tagline {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.6s;
}
.page-transition .dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.page-transition .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1s ease infinite;
}
.page-transition .dot:nth-child(2) { animation-delay: 0.2s; }
.page-transition .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes scaleIn { to { transform: scaleX(1); } }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Animations */
.fade-in { animation: fadeIn 0.6s ease forwards; }
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive utilities */
@media (max-width: 767px) {
  .hide-mobile { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-badge span { font-size: 0.875rem; }
  section { padding: 3rem 0; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none; }
}
