/* ==========================================
   KWIKZEZE DESIGN SOLUTION - STYLE SHEET
   ========================================== */

:root {
  --primary: #FF7A00;
  --primary-hover: #e66e00;
  --primary-glow: rgba(255, 122, 0, 0.25);
  
  --dark: #111111;
  --dark-secondary: #1A1A1A;
  --dark-border: rgba(255, 255, 255, 0.08);
  
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.08);
  
  /* Text Colors */
  --text-dark: #111111;
  --text-body: #444444;
  --text-muted: #666666;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  /* Fonts & Radius */
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(255, 122, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. RESET & GLOBAL STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-body);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.text-center { text-align: center; }
.accent-text { color: var(--primary) !important; }
.gradient-text {
  background: linear-gradient(135deg, #FF7A00 0%, #FF9E44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 2. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-svg-logo {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* 3. LAYOUT HEADERS & SECTIONS */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
}

/* Animated Announcement Ticker */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background-color: var(--dark);
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-border);
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.announcement-text {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-right: 50px;
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Floating Navigation Panel */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 14px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-title);
}

.brand-logo {
  font-size: 1.5rem;
  animation: brandPulse 2.5s infinite;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary);
}

@keyframes brandPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 5px var(--primary)); }
  100% { transform: scale(1); }
}

/* SECTION 1 - HERO (Premium Dark background) */
.hero-section {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 180px 0 80px 0;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 122, 0, 0.08) 0%, transparent 60%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-badge {
  background-color: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 24px;
  animation: promoPulse 2s infinite ease-in-out;
}

@keyframes promoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px rgba(255, 122, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

.hero-title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-lead {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Mockup Overlapping Illustration */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-floating {
  position: relative;
  width: 100%;
  height: 100%;
  animation: floatMockup 6s ease-in-out infinite;
}

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

.mock-device {
  background-color: #222;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 3px solid #333;
}

.mock-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mock-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-mock {
  width: 320px;
  height: 200px;
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 1;
}

.laptop-keyboard {
  height: 12px;
  background-color: #1a1a1a;
  border-top: 2px solid #444;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-mock {
  width: 110px;
  height: 210px;
  position: absolute;
  bottom: 10px;
  right: 40px;
  z-index: 2;
  border-radius: 18px;
  border: 4px solid #333;
}

/* SECTION 2 - TRUST BAR */
.trust-bar {
  background-color: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 40px;
}

.trust-badge {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--accent-soft);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background-color: var(--light-bg);
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* SECTION 3 - MASALAH PELANGGAN (Pain points) */
.pain-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.pain-card {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: left;
  border-top: 4px solid #e11d48; /* Red highlight for problem cards */
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pain-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pain-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.transition-box {
  background-color: var(--white);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.transition-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* SECTION 4 - APA YANG ANDA DAPAT (Features) */
.features-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--light-bg);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  border-color: rgba(255, 122, 0, 0.25);
  box-shadow: var(--shadow-md);
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.feat-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SECTION 5 - PORTFOLIO SHOWCASE & INTERACTIVE MOCKUP */
.mockup-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.niche-switcher {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.niche-btn {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.niche-btn:hover {
  color: var(--text-dark);
  border-color: var(--primary);
}

.niche-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.device-switcher {
  display: inline-flex;
  background-color: rgba(0,0,0,0.03);
  border: 1px solid var(--border-light);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 40px;
  gap: 2px;
}

.switcher-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.switcher-btn:hover {
  color: var(--text-dark);
}

.switcher-btn.active {
  background-color: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.mockup-display-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.device-frame {
  background-color: #0f172a;
  border-radius: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
  border: 4px solid #334155;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* Sizing configurations */
.device-frame.pc-frame {
  width: 800px;
  height: 480px;
}

.device-frame.tablet-frame {
  width: 500px;
  height: 600px;
  border-radius: 24px;
  border-width: 8px;
}

.device-frame.mobile-frame {
  width: 290px;
  height: 520px;
  border-radius: 36px;
  border-width: 10px;
  position: relative;
}

.device-frame.mobile-frame::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background-color: #334155;
  border-radius: 10px;
  z-index: 10;
}

.device-header {
  background-color: #1e293b;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.device-frame.mobile-frame .device-header,
.device-frame.tablet-frame .device-header {
  display: none;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.browser-search-bar {
  flex: 1;
  background-color: rgba(9, 13, 22, 0.5);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 0.65rem;
  color: var(--text-light-muted);
  text-align: center;
  font-family: monospace;
}

.device-viewport {
  flex: 1;
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.device-viewport iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
}

.mockup-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* SECTION 6 - TESTIMONIAL */
.testimonial-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.testi-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--radius-md);
}

.stars {
  color: #ffb703;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testi-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  font-size: 1.8rem;
  background-color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-business {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* WhatsApp Chat Preview Testimonials removed, replaced with standard testimonials grid */

/* SECTION 7 - PROSES KERJA (Timeline) */
.process-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SECTION 8 - PRICING */
.pricing-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.price-box-wrapper {
  display: flex;
  justify-content: center;
}

.price-box {
  background-color: var(--white);
  border: 2px solid var(--primary);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--primary);
}

.price-badge {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.price-subtitle-box {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.price-display {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 25px;
}

.price-strike-box {
  text-decoration: line-through;
  color: var(--text-light-muted);
  font-size: 1.1rem;
  font-weight: bold;
}

.price-new-box {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-title);
  line-height: 1;
}

.price-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin: 20px 0;
}

.price-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* SECTION 9 - FAQ */
.faq-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 122, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-dark);
  text-align: left;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  background-color: rgba(0, 0, 0, 0.01);
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Active FAQ */
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-dark);
}

/* SECTION 10 - FINAL CTA */
.final-cta-section {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.06) 0%, transparent 60%);
}

.final-cta-title {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta-subtitle {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Borang Tempahan (Order Form Section) */
.order-section {
  background-color: var(--white);
  padding: 80px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  padding-right: 15px;
}

.badge-accent {
  background-color: var(--accent-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
}

.contact-detail-item .icon {
  font-size: 1.5rem;
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.contact-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Form Styles */
.form-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.82rem;
  margin-bottom: 25px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.required {
  color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 8px var(--primary-glow);
}

.form-tip {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 6px;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
  cursor: pointer;
  font-size: 0.82rem !important;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-terms {
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

/* FOOTER */
.main-footer {
  background-color: var(--dark);
  color: var(--text-light-muted);
  padding: 60px 0 40px 0;
  border-top: 1px solid var(--dark-border);
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-contact {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
}
.footer-contact a:hover {
  color: var(--primary);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--dark-border);
  margin: 30px 0;
}

.copyright {
  font-size: 0.72rem;
  color: #555;
}

/* SECTION: PILIH INDUSTRI ANDA */
.industry-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 35px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 122, 0, 0.25);
}

.ind-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ind-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ind-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-ind {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
  margin-top: auto;
}

/* ==========================================
   4. MOBILE RESPONSIVENESS & MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card {
    padding-right: 0;
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-detail-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 36px;
    padding: 10px 0;
  }

  .nav-links {
    display: none; /* simple mobile navbar header */
  }

  .hero-section {
    padding: 160px 0 50px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    margin-bottom: 24px;
  }
  
  /* Reduction of space margins between sections on mobile */
  .pain-section,
  .features-section,
  .industry-section,
  .mockup-section,
  .testimonial-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .order-section {
    padding: 40px 0 !important;
  }

  .badge-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
  }

  .trust-badge {
    width: 100% !important;
    max-width: 260px !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pain-grid,
  .features-grid,
  .industry-grid,
  .process-steps,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .device-frame {
    max-width: 100%;
  }

  .device-frame.pc-frame {
    width: 100%;
    height: 300px;
  }
  
  .device-frame.tablet-frame {
    width: 100%;
    height: 440px;
  }
  
  .device-frame.mobile-frame {
    width: 270px;
    height: 440px;
  }

  .form-card {
    padding: 24px;
  }


  
  .whatsapp-sticky {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  
  .wa-svg-logo {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .nav-cta {
    display: none; /* Avoid logo overlap */
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
  }

  .device-switcher {
    padding: 4px;
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  .switcher-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .niche-switcher {
    gap: 6px;
  }

  .niche-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .logo-box {
    min-width: unset !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 14px 20px;
  }
}

/* ==========================================
   5. ENTRANCE & SCROLL ANIMATIONS (REVEAL EFFECTS)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
