/* ============================================================
   CENTRAL LAUNDRE — style.css
   Berwarna & Kreatif | Font: Paytone One + Nunito
   ============================================================ */

/* === RESET & ROOT === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #FF6B9D;
  --blue:    #4FACFE;
  --yellow:  #FECA57;
  --green:   #43E97B;
  --purple:  #A18CD1;
  --orange:  #FF9A3C;
  --dark:    #1A1A2E;
  --mid:     #2D2D44;
  --light:   #F8F9FF;
  --white:   #FFFFFF;
  --gray:    #6C6C88;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding: 0 1.5rem;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: #F0F0FF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  cursor: pointer; 
}

/* Ganti .logo-icon menjadi .logo-img */
.logo-img {
  height: 40px;      /* Atur tinggi logo agar pas di navbar */
  width: auto;       /* Menjaga proporsi agar tidak gepeng */
  object-fit: contain;
  animation: wobble 3s ease-in-out infinite; /* Tetap pakai animasi goyang jika mau */
}
.logo-text .accent { color: var(--pink); }

@keyframes wobble {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--gray);
  transition: var(--transition);
  font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* === PAGE SECTIONS === */
.page-section {
  display: none;
  min-height: 100vh;
  padding-top: 68px;
}
.page-section.active { display: block; }

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.accent-text { color: var(--pink); }
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, #FFF0F7 0%, #F0F4FF 50%, #F0FFF8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  flex-wrap: wrap;
  gap: 40px;
}

/* Bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}
.b1 { width: 120px; height: 120px; background: var(--pink); top: 10%; left: 5%; animation-delay: 0s; }
.b2 { width: 80px; height: 80px; background: var(--blue); top: 70%; left: 2%; animation-delay: 1s; }
.b3 { width: 60px; height: 60px; background: var(--yellow); top: 20%; right: 8%; animation-delay: 2s; }
.b4 { width: 100px; height: 100px; background: var(--green); bottom: 10%; right: 5%; animation-delay: 1.5s; }
.b5 { width: 50px; height: 50px; background: var(--purple); top: 50%; right: 15%; animation-delay: 0.8s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(254,202,87,0.4);
}
.hero-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
  font-family: 'Nunito', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,107,157,0.5); }
.btn-outline {
  background: white;
  color: var(--pink);
  border: 2.5px solid var(--pink);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
}
.btn-outline:hover { background: var(--pink); color: white; transform: translateY(-3px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Paytone One', sans-serif; font-size: 1.6rem; color: var(--dark); }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.stat-divider { width: 2px; height: 40px; background: #E0E0F0; }

/* Washing Machine Visual */
.hero-visual {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.washing-machine { position: relative; z-index: 2; }
.machine-body {
  width: 220px; height: 240px;
  background: linear-gradient(145deg, #f0f4ff, #e8f0ff);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(79,172,254,0.25), inset 0 2px 4px rgba(255,255,255,0.9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: machine-rock 4s ease-in-out infinite;
}
@keyframes machine-rock {
  0%,100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}
.machine-door {
  width: 140px; height: 140px;
  background: white;
  border-radius: 50%;
  border: 6px solid var(--blue);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(79,172,254,0.3);
  overflow: hidden;
}
.door-inner {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, #e0f0ff, #c8e4ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.spinner {
  display: flex;
  gap: 4px;
  font-size: 1.4rem;
  animation: spin 3s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.machine-panel { display: flex; gap: 8px; align-items: center; padding: 0 10px; }
.panel-dot { width: 12px; height: 12px; border-radius: 50%; }
.panel-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.panel-dot.yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); animation: blink 1.5s ease-in-out infinite; }
.panel-bar { flex: 1; height: 6px; background: linear-gradient(90deg, var(--blue), var(--pink)); border-radius: 3px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.foam-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.f1 { width: 160px; height: 160px; background: rgba(79,172,254,0.25); top: -30px; right: -20px; }
.f2 { width: 120px; height: 120px; background: rgba(255,107,157,0.2); bottom: -20px; left: -10px; }

/* Why Us */
.why-us { background: white; padding: 60px 24px; }
.why-us .section-title { text-align: center; margin-bottom: 40px; }
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.why-card h3 { font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.95rem; }

/* === SERVICES === */
#layanan { background: linear-gradient(135deg, #FFF8F0, #F8F0FF); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  border-radius: 20px;
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: white;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 1; }

.sc-yellow { background: linear-gradient(135deg, #FECA57, #FF9A3C); }
.sc-blue   { background: linear-gradient(135deg, #4FACFE, #00F2FE); }
.sc-pink   { background: linear-gradient(135deg, #FF6B9D, #C44CFF); }
.sc-green  { background: linear-gradient(135deg, #43E97B, #38F9D7); }
.sc-purple { background: linear-gradient(135deg, #A18CD1, #FBC2EB); }
.sc-orange { background: linear-gradient(135deg, #FF9A3C, #FF6B9D); }

.sc-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.service-card h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { opacity: 0.9; font-size: 0.95rem; margin-bottom: 12px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sc-list li { font-size: 0.9rem; opacity: 0.85; }
.sc-list li::before { content: '✓ '; font-weight: 700; }

/* === HARGA === */
#harga { background: white; }
.price-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ptab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2.5px solid #E0E0F0;
  background: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
  color: var(--gray);
}
.ptab.active, .ptab:hover {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}
.price-table-wrap { overflow-x: auto; margin-bottom: 8px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.price-table-wrap.hidden { display: none; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead tr { background: linear-gradient(135deg, var(--dark), var(--mid)); color: white; }
.price-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}
.price-table td {
  padding: 12px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid #F0F0F8;
}
.price-table tbody tr:hover { background: #FFF5FF; }
.price-table tbody tr:last-child td { border-bottom: none; }
.row-highlight td { background: #FFF0F7 !important; }
.price-val { font-weight: 700; color: var(--pink); }
.price-note { color: var(--gray); font-size: 0.875rem; margin-top: 8px; font-style: italic; }

/* Download Card */
.download-section { margin-top: 40px; }
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #FFF0F7, #F0F0FF);
  border-radius: 20px;
  padding: 28px 32px;
  border: 2px dashed var(--pink);
  flex-wrap: wrap;
}
.dl-icon { font-size: 3rem; }
.dl-info { flex: 1; min-width: 200px; }
.dl-info h3 { font-weight: 800; margin-bottom: 4px; }
.dl-info p { color: var(--gray); font-size: 0.95rem; }
.btn-download {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
}
.btn-download:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,107,157,0.5); }

/* === CARA KERJA === */
#cara-kerja { background: linear-gradient(135deg, #F0FFF8, #F0F4FF); }
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.step-line {
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--green));
  border-radius: 2px;
  z-index: 0;
}
.step-item { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
}
.step-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }
.step-card h3 { font-weight: 800; margin-bottom: 6px; }
.step-card p { color: var(--gray); font-size: 0.9rem; }

/* Testimonials */
.testimonial-section { margin-top: 20px; }
.testi-title { font-family: 'Paytone One', sans-serif; font-size: 1.6rem; text-align: center; margin-bottom: 28px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--pink);
}
.testi-card:nth-child(2) { border-color: var(--blue); }
.testi-card:nth-child(3) { border-color: var(--green); }
.testi-card:hover { transform: translateY(-6px); }
.testi-stars { font-size: 1.1rem; margin-bottom: 12px; }
.testi-card p { color: var(--gray); font-size: 0.95rem; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 800;
}
.testi-author span { font-weight: 700; }

/* === GALERI === */
#galeri { background: var(--dark); }
#galeri .section-title { color: white; }
#galeri .section-sub { color: #aaa; }
#galeri .section-tag { background: linear-gradient(135deg, var(--yellow), var(--orange)); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gal-card {
  border-radius: 20px;
  padding: 28px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}
.gal-card:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.gal-big { grid-column: span 2; }
.gal-content { width: 100%; }
.gal-emoji { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.gal-card h4 { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.gal-card p { opacity: 0.85; font-size: 0.9rem; }

/* === KONTAK === */
#kontak { background: linear-gradient(135deg, #FFF8F8, #F8F8FF); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.info-card:hover { transform: translateX(4px); }
.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-card h4 { font-weight: 800; margin-bottom: 4px; }
.info-card p { color: var(--gray); font-size: 0.9rem; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  background: #25D366;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.wa-btn:hover { background: #128C7E; transform: scale(1.05); }

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--dark);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0F0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.1);
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,107,157,0.5); }

/* Social */
.social-section { text-align: center; margin-top: 48px; }
.social-section h3 { font-family: 'Paytone One', sans-serif; font-size: 1.4rem; margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.social-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.fb { background: #1877F2; }
.social-btn.tt { background: linear-gradient(135deg, #010101, #69C9D0); }

/* === FOOTER === */
.footer { background: var(--dark); color: white; padding: 60px 24px 0; }
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .logo-text { color: white; font-size: 1.3rem; }
.footer-brand p { color: #aaa; font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-links h4 { font-weight: 800; margin-bottom: 16px; color: var(--pink); font-size: 1rem; }
.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--pink); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #666;
  font-size: 0.875rem;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--dark);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: linear-gradient(135deg, var(--green), #0ECC6E); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-big { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: white;
    border-bottom: 2px solid #F0F0FF;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-big { grid-column: span 1; }
  .footer-container { grid-template-columns: 1fr; }
  .hero { padding: 40px 20px; }
  .hero-visual { max-width: 280px; }
  .machine-body { width: 180px; height: 200px; }
  .machine-door { width: 115px; height: 115px; }
  .door-inner { width: 88px; height: 88px; }
  .download-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.3rem; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: 0.88rem; }
  .section-wrapper { padding: 40px 16px; }
}
