/* =========================================
   QUICKSOLZ LANDING PAGE - STYLES.CSS
   Primary: #5a3b36 | Accent: #c8956c
   ========================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #5a3b36;
  --primary-light: #7a5550;
  --primary-dark: #3d2420;
  --accent: #c8956c;
  --accent-light: #e8b899;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --off-white: #f8f5f4;
  --bg-soft: #fdf9f8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888888;
  --border: #e8e0de;
  --shadow-sm: 0 2px 8px rgba(90,59,54,0.08);
  --shadow-md: 0 8px 32px rgba(90,59,54,0.12);
  --shadow-lg: 0 20px 60px rgba(90,59,54,0.16);
  --shadow-xl: 0 32px 80px rgba(90,59,54,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SECTION === */
.section { padding: 100px 0; }

/* === SECTION BADGE === */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(90,59,54,0.1), rgba(200,149,108,0.15));
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(90,59,54,0.15);
}
.worker-badge {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(200,149,108,0.15));
  color: var(--gold);
  border-color: rgba(245,158,11,0.2);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(90,59,54,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(90,59,54,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-worker {
  background: linear-gradient(135deg, var(--gold) 0%, #e67e22 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
  font-weight: 700;
}
.btn-worker:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary-small {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.btn-primary-small:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-small {
  background: transparent;
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
}
.btn-outline-small:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.header.hero-visible {
  background: transparent;
}
.header.scrolled .nav-link { color: var(--text-dark); }
.header.scrolled .logo-text { color: var(--primary); }
.header.scrolled .logo-icon { color: var(--accent); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-icon { font-size: 24px; }
.logo-text { color: var(--white); transition: var(--transition); }
.logo-accent { color: var(--accent-light); }
.scrolled .logo-text { color: var(--primary); }
.scrolled .logo-accent { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.scrolled .nav-link { color: var(--text-dark); }
.scrolled .nav-link:hover { color: var(--primary); background: var(--off-white); }
.header-cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--white);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; left: -100px;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 40%;
  left: 40%;
  animation: float1 6s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 15px) scale(1.03); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInRight 0.9s ease 0.2s both;
}
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--primary-dark);
  border-radius: 40px;
  padding: 16px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
  animation: phoneBob 4s ease-in-out infinite;
}
@keyframes phoneBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--off-white);
  border-radius: 28px;
  overflow: hidden;
}
.app-ui { padding: 12px; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.app-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}
.app-search-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-light);
}
.app-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.app-cat-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}
.app-cat-chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}
.app-card-preview { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.app-worker-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.worker-avatar {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.worker-info { flex: 1; min-width: 0; }
.worker-name { font-size: 11px; font-weight: 600; color: var(--text-dark); }
.worker-rating { font-size: 10px; color: var(--text-light); }
.worker-book-btn {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.app-floating-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}
.phone-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,149,108,0.5), transparent 70%);
  bottom: -80px; left: 0; right: 0; margin: auto;
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.float-card span { font-size: 24px; }
.float-card strong { display: block; font-weight: 700; color: var(--text-dark); font-size: 13px; }
.float-card small { color: var(--text-light); font-size: 11px; }
.float-card-1 { top: 30px; right: -40px; animation-delay: 0s; }
.float-card-2 { bottom: 100px; left: -60px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--card-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: color-mix(in srgb, var(--card-color) 18%, transparent);
  transform: scale(1.1);
}
.service-icon { font-size: 28px; }
.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}
.service-link:hover { gap: 8px; }
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.service-card-more {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-more:hover { transform: translateY(-6px); }
.service-card-more::before { display: none; }
.service-more-inner { text-align: center; color: var(--white); }
.more-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.service-more-inner h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-more-inner p { font-size: 14px; opacity: 0.85; margin-bottom: 20px; line-height: 1.5; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section { background: var(--white); }
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  background: var(--off-white);
  border-radius: var(--radius-full);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hiw-tab {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}
.hiw-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.hiw-content { animation: fadeInUp 0.5s ease; }
.hiw-content.hidden { display: none; }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
.hiw-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  max-width: 240px;
  transition: var(--transition);
  position: relative;
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(90,59,54,0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 16px;
}
.step-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
}
.hiw-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hiw-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: var(--border);
  flex-shrink: 0;
  margin-top: 60px;
  font-weight: 300;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,59,54,0.03), rgba(200,149,108,0.05));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(90,59,54,0.2); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-mid); }
.why-visual { position: relative; }
.why-card-stack { position: relative; height: 360px; }
.why-stack-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 300px;
}
.card-back {
  top: 0; left: 20px;
  transform: rotate(3deg);
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  z-index: 1;
}
.card-back .stack-icon { font-size: 32px; }
.card-back strong { font-size: 16px; font-weight: 700; }
.card-mid {
  top: 40px; left: 0;
  transform: rotate(-1deg);
  z-index: 2;
}
.review-mini .review-stars { font-size: 18px; margin-bottom: 12px; }
.review-mini p { font-size: 15px; color: var(--text-dark); margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 13px; color: var(--text-mid); font-weight: 600; }
.card-front {
  top: 120px; left: 40px;
  z-index: 3;
  text-align: center;
  transition: var(--transition);
}
.card-front:hover { transform: translateY(-4px) scale(1.02); }
.satisfaction-gauge { display: flex; justify-content: center; margin-bottom: 16px; }
.gauge-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-num { font-size: 24px; font-weight: 900; color: var(--white); }
.gauge-label { font-size: 10px; color: rgba(255,255,255,0.8); }
.card-front p { font-size: 14px; color: var(--text-mid); }

/* ============================================
   PAINTING SECTION
   ============================================ */
.painting-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.painting-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,149,108,0.15), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.painting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.painting-section .section-title { color: var(--white); }
.painting-section .section-desc { color: rgba(255,255,255,0.75); }
.painting-section .section-badge {
  background: rgba(255,255,255,0.12);
  color: var(--accent-light);
  border-color: rgba(255,255,255,0.2);
}
.inspection-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.inspection-icon { font-size: 48px; margin-bottom: 20px; }
.inspection-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.inspection-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ins-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}
.ins-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.inspection-tag {
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
}
.painting-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.painting-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   WORKERS SECTION
   ============================================ */
.workers-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.workers-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
}
.workers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.worker-benefits { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.worker-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.worker-benefit:hover {
  transform: translateX(4px);
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-sm);
}
.wb-icon { font-size: 28px; flex-shrink: 0; }
.worker-benefit h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.worker-benefit p { font-size: 14px; color: var(--text-mid); }
.workers-form-wrap { position: relative; z-index: 2; }
.worker-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.form-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 32px;
  color: var(--white);
}
.form-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-header p { font-size: 14px; opacity: 0.85; }
.worker-form { padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.req-star { color: #ef4444; font-weight: 900; }
.form-group input, .form-group select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(90,59,54,0.08);
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: -8px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
  background: var(--white);
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0 16px; }
.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 2px solid var(--text-dark);
}
.download-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #000; }
.download-btn-apk {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.download-btn-apk:hover { background: var(--primary); color: var(--white); }
.store-icon { font-size: 28px; }
.store-small { display: block; font-size: 10px; font-weight: 500; opacity: 0.7; letter-spacing: 0.05em; }
.store-name { display: block; font-size: 16px; font-weight: 700; margin-top: 2px; }
.download-note { font-size: 13px; color: var(--text-light); }
.download-visual { display: flex; justify-content: center; }
.download-phones { position: relative; height: 300px; width: 250px; }
.dl-phone {
  position: absolute;
  width: 160px;
  height: 280px;
  border-radius: 24px;
  border: 3px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.dl-phone-back {
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--off-white), var(--white));
  transform: rotate(6deg);
}
.dl-phone-front {
  bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: rotate(-2deg);
  z-index: 2;
  animation: phoneBob 4s ease-in-out infinite 1s;
}
.dl-screen { height: 100%; display: flex; align-items: center; justify-content: center; }
.dl-app-content { text-align: center; }
.dl-stat { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.dl-text { font-size: 14px; font-weight: 700; color: var(--white); }
.dl-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.dl-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.dl-phone-back .dl-stat { color: var(--primary); }
.dl-phone-back .dl-text { font-size: 13px; color: var(--text-mid); font-weight: 600; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-featured {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: transparent;
  transform: scale(1.03);
}
.testimonial-featured:hover { transform: scale(1.03) translateY(-4px); }
.testimonial-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e67e22);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.testimonial-stars { font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-mid);
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.testimonial-featured .author-avatar { background: rgba(255,255,255,0.15); }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }
.testimonial-featured .testimonial-author span { color: rgba(255,255,255,0.65); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary-dark); }
.footer-top { padding: 80px 0 60px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.social-link svg { width: 16px; }
.social-link:hover { background: var(--primary-light); color: var(--white); border-color: transparent; transform: translateY(-2px); }
.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}
.footer-links-group a:hover { color: var(--accent-light); transform: translateX(4px); display: inline-block; }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-app-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-store-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition-fast);
}
.footer-store-btn:hover { background: var(--primary-light); }
.footer-apk-btn { border-color: rgba(245,158,11,0.3); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   POPUPS
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.popup-box h2 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.popup-box h4 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.popup-box p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--off-white);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  transition: var(--transition-fast);
}
.popup-close:hover { background: var(--primary); color: var(--white); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16,185,129,0.2);
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}
.toast.show { transform: translateX(0); }
.toast span { font-size: 28px; }
.toast strong { display: block; font-weight: 700; color: var(--text-dark); }
.toast p { color: var(--text-mid); margin-top: 2px; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE – TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { text-align: center; }
  .hero-visual { order: -1; }
  .float-card-1 { right: -10px; }
  .float-card-2 { left: -10px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }

  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }

  .painting-inner { grid-template-columns: 1fr; gap: 48px; }
  .workers-inner { grid-template-columns: 1fr; gap: 48px; }
  .download-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE – MOBILE
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-inner { padding: 40px 24px; }
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 16px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat-divider { display: none; }

  .phone-frame { width: 240px; height: 480px; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-tabs { flex-direction: column; width: 100%; }

  .why-section .section-desc { max-width: 100%; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .float-card-1, .float-card-2 { display: none; }
  .download-visual { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .popup-box { padding: 24px; }
  .worker-form { padding: 24px; }
  .form-header { padding: 24px; }
  .inspection-card { padding: 28px; }
}
