/* ============================================
   jams.zone — Dark Glassmorphism Design System
   Aesthetic: Lumora Studio ported to jams.zone
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0F;
  color: #E2E8F0;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --coral: #F95C4B;
  --coral-light: #fb7d70;
  --coral-peach: #fda898;
  --dark: #0A0A0F;
  --dark2: #0f0f16;
  --dark3: #14141e;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text-muted: #94A3B8;
  --text-bright: #F1F5F9;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ===== GRADIENT TEXT ===== */
.grad-text {
  background: linear-gradient(135deg, #F95C4B 0%, #fb7d70 50%, #fda898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLASS CARD ===== */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  box-shadow: 0 0 30px rgba(249,92,75,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(249,92,75,0.55);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* Dark + ghost button variants (legacy from hero) */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  box-shadow: 0 0 30px rgba(249,92,75,0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(249,92,75,0.55);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ===== SECTION HELPERS ===== */
section { padding: 100px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,92,75,0.12);
  border: 1px solid rgba(249,92,75,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* Legacy section-tag alias */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,92,75,0.12);
  border: 1px solid rgba(249,92,75,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-bright);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub,
.section-header p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-bright);
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GRADIENT DIVIDER ===== */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,92,75,0.25), rgba(251,125,112,0.2), transparent);
}

/* ==============================================
   1. NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-bright);
}
.logo-dot { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
.lang-toggle:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--coral-light); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  line-height: 1;
}

/* ==============================================
   2. HERO
   ============================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
/* Dot pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,92,75,0.10);
  border: 1px solid rgba(249,92,75,0.22);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-light);
  margin-bottom: 32px;
}
.hero-dot {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--coral);
  animation: pulse 2s ease-in-out infinite;
}
.hero-eyebrow-line { display: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-bright);
}
.hero-headline .line { display: block; }
.hero-headline .line-accent {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  background: linear-gradient(135deg, #F95C4B 0%, #fb7d70 50%, #fda898 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-meta-sep { opacity: 0.4; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-indicator svg { opacity: 0.45; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==============================================
   3. STATS BAR
   ============================================== */
.stats-bar-section { padding: 0; }
.stats-bar {
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 36px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: var(--glass-border);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #F95C4B, #fb7d70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

/* ==============================================
   4. ABOUT STRIP
   ============================================== */
.about-section {
  padding: 80px 0;
  background: var(--dark2);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.about-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249,92,75,0.35);
  box-shadow: 0 0 28px rgba(249,92,75,0.2);
  flex-shrink: 0;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==============================================
   5. WORK / PORTFOLIO
   ============================================== */
.work-section { background: var(--dark); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,92,75,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.work-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.work-card-wide .work-card-img {
  aspect-ratio: auto;
  min-height: 260px;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.06); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249,92,75,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.work-card-img:hover .work-card-overlay { opacity: 1; }
.work-card-cta {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.work-card-info {
  padding: 24px;
}
.work-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.work-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(249,92,75,0.12);
  color: var(--coral-light);
  border: 1px solid rgba(249,92,75,0.2);
}
.work-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.work-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==============================================
   6. SERVICES
   ============================================== */
.services-section { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(249,92,75,0.07), rgba(251,125,112,0.04));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,92,75,0.3);
  box-shadow: 0 20px 60px rgba(249,92,75,0.1);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(249,92,75,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--coral);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================
   7. PROCESS
   ============================================== */
.process-section { background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,92,75,0.35), rgba(251,125,112,0.3), transparent);
}
.process-step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(249,92,75,0.2);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(249,92,75,0.35);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
/* Legacy arrow (hidden in grid layout) */
.process-arrow { display: none; }

/* ==============================================
   8. PRODUCTS TEASER
   ============================================== */
.products-teaser-section { background: var(--dark2); }
.products-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.products-teaser-inner::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,92,75,0.08), transparent 70%);
  pointer-events: none;
}
.products-teaser-text .section-tag { display: block; width: fit-content; }
.products-teaser-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}
.products-teaser-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.products-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.teaser-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-top-width: 3px;
  border-radius: 12px;
  padding: 18px 16px;
  transition: all 0.3s ease;
}
.teaser-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.teaser-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.teaser-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}

/* ==============================================
   9. CONTACT
   ============================================== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-tag { display: block; width: fit-content; }
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-text > p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-item svg { color: var(--coral); flex-shrink: 0; }
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--coral-light); }

/* Contact Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-bright);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(249,92,75,0.45);
  box-shadow: 0 0 0 3px rgba(249,92,75,0.1);
}
.form-group select option { background: #16161F; color: var(--text-bright); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-primary { padding: 14px 28px; border: none; cursor: pointer; font-size: 0.95rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  color: #34D399;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success[hidden] { display: none; }

/* ==============================================
   10. FOOTER
   ============================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.04em; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: rgba(249,92,75,0.12);
  border-color: rgba(249,92,75,0.3);
  color: var(--coral-light);
  transform: translateY(-2px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-bright); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .work-card-wide { grid-column: span 3; grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card-wide { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .products-teaser-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-dark, .btn-ghost-dark { width: 100%; justify-content: center; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; text-align: center; padding: 32px 28px; }
  .stats-inner { gap: 0; }
  .stat-item:not(:last-child)::after { display: none; }
  .products-teaser-inner { padding: 32px 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-form { padding: 28px 20px; }
}
