/* ============================================
   MASTERMIND INTEGRATED SOLUTIONS
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --primary: #C8900A;
  --primary-light: #E8A820;
  --primary-pale: #FFF8E7;
  --secondary: #3D1010;
  --secondary-pale: #FFF0F0;
  --gradient: linear-gradient(135deg, #C8900A 0%, #3D1010 100%);
  --gradient-soft: linear-gradient(135deg, #FFF8E7 0%, #FFF0F0 100%);
  --bg: #FFFFFF;
  --bg-alt: #FFF9F0;
  --text-dark: #1A0A00;
  --text-medium: #5C4033;
  --text-light: #9E8070;
  --border: #EDE0D4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ============================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; gap: 32px; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.logo-img-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0; display: block; object-fit: contain;
}
.logo-icon-dark { display: none; }
.navbar.scrolled .logo-icon-light { display: none; }
.navbar.scrolled .logo-icon-dark { display: block; }
.logo-full-img { height: 48px; width: auto; display: block; border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 15px; font-weight: 700; line-height: 1.2; color: white; }
.logo-sub {
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.05em;
  line-height: 1.2; color: rgba(255,255,255,0.65);
}
.navbar.scrolled .logo-main { color: var(--text-dark); }
.navbar.scrolled .logo-sub { color: var(--text-medium); }

.nav-menu { display: flex; list-style: none; gap: 2px; margin-left: auto; }
.nav-link {
  display: block; padding: 8px 13px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: 8px; transition: var(--transition);
  color: rgba(255,255,255,0.85);
}
.navbar.scrolled .nav-link { color: var(--text-medium); }
.nav-link:hover, .navbar:not(.scrolled) .nav-link.active { background: rgba(255,255,255,0.12); color: white; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { background: var(--primary-pale); color: var(--secondary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .menu-toggle span { background: var(--text-dark); }

/* ============================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gradient); color: white;
  box-shadow: 0 4px 15px rgba(200,144,10,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,144,10,0.45); }

.btn-outline {
  background: rgba(255,255,255,0.1); color: white;
  border-color: rgba(255,255,255,0.45); backdrop-filter: blur(10px);
}
.btn-outline:hover { background: white; color: var(--primary); border-color: white; }

.btn-white { background: white; color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ============================================ SECTION HEADERS */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: var(--gradient-soft); color: var(--primary);
  font-size: 13px; font-weight: 600; border-radius: 100px;
  margin-bottom: 16px; letter-spacing: 0.02em; border: 1px solid var(--border);
}
.section-title {
  font-size: 38px; font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-subtitle { font-size: 17px; color: var(--text-medium); line-height: 1.6; }

/* ============================================ SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================ HERO */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #160505 0%, #2A0808 40%, #3D1010 100%);
  overflow: hidden; display: flex; align-items: center; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-shape {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.45;
}
.shape-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #C8900A, transparent);
  top: -150px; left: -100px;
  animation: floatShape 9s ease-in-out infinite;
}
.shape-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #7A2020, transparent);
  bottom: -100px; right: 80px;
  animation: floatShape 11s ease-in-out infinite reverse;
}
.shape-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #D4A020, transparent);
  top: 40%; right: 35%;
  animation: floatShape 13s ease-in-out infinite 2s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -35px) scale(1.06); }
}
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 60px 0;
}

/* Hero Text */
.hero-text { z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-title {
  font-size: 54px; font-weight: 900; color: white;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #F5C842, #E89030);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block; min-height: 1.2em;
}
.cursor { display: inline-block; width: 3px; background: #F5C842; margin-left: 2px; animation: blink 0.9s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 490px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; align-items: center; }
.stat { display: flex; flex-direction: column; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-number-row { display: flex; align-items: baseline; gap: 2px; line-height: 1; margin-bottom: 4px; }
.stat-number { font-size: 34px; font-weight: 800; color: white; }
.stat-suffix { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.65); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; height: 500px; z-index: 2; }

.dashboard-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  animation: floatCard 6s ease-in-out infinite;
}
.main-card { position: absolute; top: 10px; right: 0; width: 88%; padding: 22px; }

@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.card-dots { display: flex; gap: 5px; }
.card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #FF5F57; }
.card-dots span:nth-child(2) { background: #FEBC2E; }
.card-dots span:nth-child(3) { background: #28C840; }
.card-title { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; margin: 0 auto; letter-spacing: 0.04em; }

.chart-bars {
  display: flex; align-items: flex-end;
  gap: 6px; height: 90px; margin-bottom: 14px;
}
.bar {
  flex: 1; background: rgba(255,255,255,0.12);
  border-radius: 5px 5px 0 0; transition: height 1s ease;
}
.bar.active { background: linear-gradient(180deg, #F5C842, #C8900A); }
.bar:nth-child(1) { animation: barPulse 3s 0.0s ease-in-out infinite; }
.bar:nth-child(2) { animation: barPulse 3s 0.2s ease-in-out infinite; }
.bar:nth-child(3) { animation: barPulse 3s 0.4s ease-in-out infinite; }
.bar:nth-child(4) { animation: barPulse 3s 0.6s ease-in-out infinite; }
.bar:nth-child(5) { animation: barPulse 3s 0.8s ease-in-out infinite; }
.bar:nth-child(6) { animation: barPulse 3s 1.0s ease-in-out infinite; }
.bar:nth-child(7) { animation: barPulse 3s 1.2s ease-in-out infinite; }
@keyframes barPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }

.chart-line { height: 55px; width: 100%; margin-bottom: 14px; }
.chart-line svg { width: 100%; height: 100%; }

.card-metrics {
  display: flex; gap: 20px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.metric-value { display: block; font-size: 18px; font-weight: 700; color: white; line-height: 1.2; }
.metric-label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.floating-card {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.fc-1 { bottom: 100px; left: 0; animation: floatCardB 5s ease-in-out infinite; }
.fc-2 { top: 30px; left: 15px; animation: floatCardB 7s ease-in-out infinite reverse; }
.fc-3 { bottom: 30px; right: 10px; animation: floatCardB 6s 1s ease-in-out infinite; }
.fc-4 { top: 120px; right: 0; animation: floatCardB 5.5s 0.5s ease-in-out infinite reverse; }
@keyframes floatCardB { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(0.8deg); } }

.fc-icon {
  font-size: 20px; width: 38px; height: 38px;
  background: var(--gradient-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-title { display: block; font-size: 12px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.fc-sub { display: block; font-size: 11px; color: var(--text-medium); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.25);
  border-radius: 13px; display: flex; align-items: flex-start; justify-content: center; padding: 7px;
}
.scroll-dot {
  width: 4px; height: 8px; background: rgba(255,255,255,0.55);
  border-radius: 2px; animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ============================================ PRODUCTS */
.products { background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

.product-icon {
  width: 58px; height: 58px; background: var(--icon-bg);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--icon-color); transition: var(--transition);
}
.product-icon svg { width: 28px; height: 28px; }
.product-card:hover .product-icon { transform: scale(1.1) rotate(-5deg); }

.product-name { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.product-tagline {
  font-size: 12px; font-weight: 600; color: var(--primary);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em;
}
.product-desc { font-size: 14px; color: var(--text-medium); line-height: 1.65; margin-bottom: 20px; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; }
.product-features span {
  padding: 4px 10px; background: var(--bg-alt); color: var(--text-medium);
  font-size: 12px; font-weight: 500; border-radius: 6px; border: 1px solid var(--border);
}

/* ============================================ SERVICES */
.services { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition); border: 1.5px solid var(--border);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(200,144,10,0.2); }

.service-icon {
  width: 52px; height: 52px; background: var(--gradient);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: white; transition: var(--transition);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-medium); line-height: 1.65; }

/* ============================================ ABOUT */
.about { background: var(--bg); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 80px;
}
.about-visual { position: relative; height: 420px; }

.about-circle {
  width: 220px; height: 220px; background: var(--gradient);
  border-radius: 50%; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(200,144,10,0.35);
  animation: floatCard 7s ease-in-out infinite;
}
.circle-inner { text-align: center; }
.circle-year { display: block; font-size: 42px; font-weight: 900; color: white; line-height: 1; }
.circle-label { display: block; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 4px; }

.about-card-1, .about-card-2 {
  position: absolute; background: white; border-radius: 18px;
  padding: 16px 20px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px rgba(61,16,16,0.14), 0 4px 14px rgba(0,0,0,0.07);
  border: none; border-left: 4px solid var(--primary); z-index: 2;
}
.about-card-1 { top: 40px; left: 0; animation: floatCardB 5s ease-in-out infinite; }
.about-card-2 { bottom: 40px; right: 0; animation: floatCardB 7s ease-in-out infinite reverse; }

.ac-icon {
  font-size: 26px; width: 52px; height: 52px;
  background: var(--gradient); border-radius: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ac-title {
  display: block; font-size: 10px; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.09em;
}
.ac-text { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-top: 4px; }

.dot-grid {
  position: absolute; top: 0; right: 0;
  width: 130px; height: 130px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 18px 18px; opacity: 0.15;
}

.about-content .section-tag { display: inline-block; }
.about-content .section-title { text-align: left; margin-top: 12px; }

.about-lead { font-size: 17px; color: var(--text-dark); line-height: 1.7; margin-bottom: 14px; font-weight: 500; }
.about-body { font-size: 15px; color: var(--text-medium); line-height: 1.7; margin-bottom: 32px; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: 12px; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.value-item:hover { border-color: rgba(200,144,10,0.25); background: var(--gradient-soft); }
.value-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.value-info h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.value-info p { font-size: 13px; color: var(--text-medium); line-height: 1.5; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--gradient); border-radius: var(--radius-xl);
  padding: 48px; overflow: hidden; position: relative;
}
.stats-row::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card { text-align: center; position: relative; }
.stat-card + .stat-card { border-left: 1px solid rgba(255,255,255,0.2); }
.stat-number-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; line-height: 1; }
.stat-big { font-size: 54px; font-weight: 900; color: white; }
.stat-big-plus { font-size: 32px; font-weight: 700; color: rgba(255,255,255,0.75); }
.stat-name { display: block; font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============================================ CUSTOMERS */
.customers { background: var(--bg-alt); }

.customers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.customer-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 20px;
  text-align: center; transition: var(--transition);
}
.customer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.customer-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.customer-card span { font-size: 14px; font-weight: 600; color: var(--text-medium); }

.customers-cta { text-align: center; }
.customers-cta p { font-size: 16px; color: var(--text-medium); margin-bottom: 20px; }

/* ============================================ BOOK DEMO CTA */
.book-demo { background: var(--bg); padding: 60px 0; }

.demo-card {
  background: var(--gradient); border-radius: var(--radius-xl);
  padding: 80px; text-align: center;
  position: relative; overflow: hidden;
}
.demo-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.demo-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); }
.ds-1 { width: 420px; height: 420px; top: -120px; right: -80px; }
.ds-2 { width: 300px; height: 300px; bottom: -90px; left: -60px; }

.demo-content { position: relative; z-index: 2; }
.demo-badge {
  display: inline-block; padding: 8px 20px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; color: rgba(255,255,255,0.95); font-size: 14px;
  font-weight: 600; margin-bottom: 20px; letter-spacing: 0.02em;
}
.demo-content h2 {
  font-size: 44px; font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
}
.demo-content p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.6;
}
.demo-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================ CONTACT */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px; background: white; border-radius: 14px;
  border: 1.5px solid var(--border); transition: var(--transition);
}
.contact-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }

.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gradient-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-icon.whatsapp { background: #DCFCE7; color: #16A34A; }

.contact-detail h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.contact-detail p { font-size: 14px; color: var(--text-medium); }
.contact-detail a { color: var(--primary); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; border: 1.5px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.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: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  color: var(--text-dark); background: var(--bg-alt);
  transition: var(--transition); outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); background: white;
  box-shadow: 0 0 0 4px rgba(200,144,10,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-medium); margin-top: -4px; }
.form-note a { color: var(--primary); font-weight: 600; text-decoration: none; }

/* ============================================ FOOTER */
.footer { background: #160505; color: rgba(255,255,255,0.65); }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer .logo-main { color: white; }
.footer .logo-sub { color: rgba(255,255,255,0.45); }
.footer-desc { font-size: 14px; line-height: 1.65; margin: 16px 0 24px; color: rgba(255,255,255,0.55); }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { transform: translateY(-3px); }
.social-link.whatsapp:hover { background: #25D366; color: white; }
.social-link.email:hover { background: var(--primary); color: white; }
.social-link.facebook:hover { background: #1877F2; color: white; }
.social-link.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; }

.footer-links h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-bottom {
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-visual { display: none; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat:first-child { padding-left: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: inline-block; }
  .about-content { text-align: center; }
  .values-grid { text-align: left; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 40px; }
  .stat-card + .stat-card:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px; margin-top: 0; }
  .stat-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px; border-left: 1px solid rgba(255,255,255,0.2); }
  .customers-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 34px; }
  .hero-badge { font-size: 12px; }

  .nav-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22,5,5,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { font-size: 20px; padding: 12px 32px; color: white; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 32px 24px; }
  .demo-card { padding: 48px 28px; }
  .demo-content h2 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat:first-child { padding-left: 28px; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ============================================
   PRODUCT SHOWCASE SLIDER
   ============================================ */
.showcase { background: var(--bg-alt); padding-bottom: 0; }
.showcase .section-header { margin-bottom: 48px; }

/* Slider wrapper */
.slider-wrapper { overflow: hidden; }

/* Grid-stack all slides so only one shows at a time */
.slider { display: grid; }

.slide {
  grid-column: 1; grid-row: 1;
  opacity: 0; visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}
.slide.active {
  opacity: 1; visibility: visible;
  transform: translateX(0); pointer-events: auto;
}

.slide-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 20px 0 52px;
}

/* Slide text */
.slide-number {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--text-light); display: block; margin-bottom: 8px;
}
.slide-tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; display: block; margin-bottom: 14px;
}
.slide-title {
  font-size: 42px; font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.1;
}
.slide-desc {
  font-size: 15px; color: var(--text-medium); line-height: 1.7; margin-bottom: 20px;
}
.slide-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 28px;
}
.slide-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-dark); font-weight: 500;
}
.slide-features li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--gradient-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C8900A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Slide screen container */
.slide-screen { position: relative; }
.slide-screen-hint {
  text-align: center; font-size: 11px; color: var(--text-light);
  margin-top: 10px; font-style: italic; letter-spacing: 0.02em;
}

/* ---- Real product image (portrait marketing card) ---- */
.slide-img-wrap {
  max-width: 340px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.slide.active .slide-img-wrap { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.slide-img-wrap img { width: 100%; height: auto; display: block; }

/* ---- Mock UI ---- */
.mock-ui {
  width: 100%; aspect-ratio: 16/10; background: white;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.13);
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.slide.active .mock-ui { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

.mock-chrome {
  height: 34px; background: #f0f4f8; flex-shrink: 0;
  display: flex; align-items: center; padding: 0 12px; gap: 5px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }
.mock-addr {
  height: 15px; width: 120px; background: #DDE4EF;
  border-radius: 8px; margin: 0 8px;
}
.mock-title-bar {
  font-size: 11px; font-weight: 600; color: var(--text-medium);
  margin-left: auto; letter-spacing: 0.02em;
}

.mock-body { display: flex; flex: 1; overflow: hidden; }
.mock-sidebar {
  width: 46px; background: var(--mock-color); flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0; gap: 9px;
}
.mock-nav-dot {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,0.18);
}
.mock-nav-dot.active { background: rgba(255,255,255,0.55); }
.mock-content {
  flex: 1; padding: 10px; background: #F8FAFF;
  display: flex; flex-direction: column; gap: 7px; overflow: hidden;
}

/* Stat chips row */
.mock-stats { display: flex; gap: 6px; flex-shrink: 0; }
.mock-stat-chip {
  flex: 1; height: 34px; border-radius: 6px;
  background: white; border: 1px solid #E8EDF5;
  display: flex; align-items: center; padding: 0 8px; gap: 6px;
}
.mock-stat-chip::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mock-color); flex-shrink: 0;
}
.mock-stat-line { height: 5px; background: #DDE4EF; border-radius: 3px; flex: 1; }

/* Chart */
.mock-chart {
  flex: 1; background: white; border-radius: 7px;
  border: 1px solid #E8EDF5; padding: 8px;
  display: flex; flex-direction: column; gap: 6px; min-height: 0;
}
.mock-chart-title { height: 5px; width: 35%; background: #DDE4EF; border-radius: 3px; }
.mock-chart-bars {
  flex: 1; display: flex; align-items: flex-end; gap: 5px;
}
.mock-bar {
  flex: 1; background: var(--mock-bar-color, var(--mock-color));
  border-radius: 3px 3px 0 0; opacity: 0.2;
}
.mock-bar:nth-child(odd) { opacity: 0.3; }
.mock-bar.mock-bar-hi { opacity: 0.85; }

/* Table */
.mock-table {
  background: white; border-radius: 7px;
  border: 1px solid #E8EDF5; overflow: hidden; flex-shrink: 0;
}
.mock-row {
  height: 22px; display: flex; align-items: center;
  padding: 0 10px; gap: 7px; border-bottom: 1px solid #F5F7FA;
}
.mock-row:last-child { border-bottom: none; }
.mock-row-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mock-color); flex-shrink: 0;
}
.mock-row-line { height: 4px; background: #DDE4EF; border-radius: 2px; }
.mock-row-badge {
  height: 14px; border-radius: 7px; padding: 0 8px; margin-left: auto;
  background: var(--mock-color, #C8900A); opacity: 0.18; flex-shrink: 0;
  font-size: 9px; font-weight: 700; color: var(--mock-color, #C8900A);
  display: flex; align-items: center; line-height: 1;
  border: 1px solid var(--mock-color, #C8900A);
}

/* KPI list (Master-Audit) */
.mock-kpi-list {
  flex: 1; background: white; border-radius: 7px;
  border: 1px solid #E8EDF5; padding: 8px;
  display: flex; flex-direction: column; justify-content: space-around;
}
.mock-kpi { display: flex; align-items: center; gap: 6px; }
.mock-kpi-label { width: 50px; height: 5px; background: #DDE4EF; border-radius: 3px; flex-shrink: 0; }
.mock-kpi-bar {
  flex: 1; height: 8px; background: var(--mock-color);
  border-radius: 4px; opacity: 0.35;
}
.mock-kpi-pct { font-size: 10px; font-weight: 700; color: var(--mock-color); flex-shrink: 0; }

/* Screen grid (Master-Ads) */
.mock-screen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex-shrink: 0;
}
.mock-screen-card {
  background: white; border-radius: 6px; border: 1px solid #E8EDF5;
  padding: 6px; display: flex; flex-direction: column; gap: 5px;
}
.mock-screen-thumb {
  height: 32px; background: var(--mock-color);
  border-radius: 4px; opacity: 0.25;
}
.mock-screen-info { display: flex; align-items: center; justify-content: space-between; }
.mock-screen-status {
  font-size: 9px; font-weight: 700; padding: 2px 5px;
  border-radius: 4px; flex-shrink: 0;
}
.mock-screen-status.on { background: #DCFCE7; color: #16A34A; }
.mock-screen-status.off { background: #F1F5F9; color: #94A3B8; }

/* Calendar grid (Master-Meet) */
.mock-calendar {
  flex: 1; background: white; border-radius: 7px;
  border: 1px solid #E8EDF5; padding: 8px; min-height: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-cal-header {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px;
}
.mock-cal-day {
  font-size: 9px; font-weight: 700; color: var(--text-light);
  text-align: center; letter-spacing: 0.05em;
}
.mock-cal-body {
  display: grid; grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 18px); gap: 3px; flex: 1;
}
.mock-cal-slot {
  background: #F0F4FF; border-radius: 4px;
}
.mock-cal-slot.booked {
  background: var(--mock-color); opacity: 0.75; border-radius: 4px;
}

/* Room grid (Master-Smart) */
.mock-room-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; flex-shrink: 0;
}
.mock-room {
  aspect-ratio: 1; border-radius: 6px; border: 1.5px solid #E8EDF5;
}
.mock-room.occupied { background: var(--mock-color); opacity: 0.75; border-color: transparent; }
.mock-room.available { background: #DCFCE7; border-color: #BBF7D0; }
.mock-room.cleaning { background: #FEF9C3; border-color: #FDE68A; }

/* Benefit cards (Master-Welfare) */
.mock-benefit-cards { display: flex; gap: 6px; flex-shrink: 0; }
.mock-benefit-card {
  flex: 1; height: 44px; border-radius: 8px;
  background: var(--mock-color); opacity: 0.2;
  border: 1.5px solid var(--mock-color);
}

/* ---- Slider controls ---- */
.slider-controls {
  padding: 24px 0 0; background: var(--bg-alt);
}
.slider-controls-inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.slider-dots { display: flex; gap: 8px; }
.sdot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.sdot.active {
  background: var(--primary); transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(200,144,10,0.15);
}
.slider-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-dark);
}
.slider-arrow:hover {
  background: var(--gradient); color: white;
  border-color: transparent; box-shadow: var(--shadow-lg);
}
.slider-arrow svg { pointer-events: none; }

.slider-progress {
  height: 3px; background: var(--border); margin-top: 20px;
}
.slider-progress-bar {
  height: 100%; background: var(--gradient); width: 0;
  transition: width 5000ms linear;
}

/* Responsive */
@media (max-width: 1024px) {
  .slide-layout { grid-template-columns: 1fr; gap: 36px; }
  .slide-title { font-size: 34px; }
}
@media (max-width: 768px) {
  .slide-title { font-size: 28px; }
  .mock-ui { transform: none !important; }
  .slide.active .mock-ui { transform: none; }
}

