/* ==========================================================================
   ADS.KWIKEZEE.MY — Meta Ads Performance Agency Master Stylesheet
   Luxury Obsidian & Gold Palette with Meta Electric Blue Accents
   ========================================================================== */

:root {
  --bg-main: #07080C;
  --bg-card: rgba(18, 20, 30, 0.85);
  --bg-card-hover: rgba(26, 29, 44, 0.95);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-meta: rgba(0, 132, 255, 0.35);
  
  --gold-primary: #D4AF37;
  --gold-light: #F59E0B;
  --gold-dark: #B8860B;
  
  --meta-blue: #0084FF;
  --meta-cyan: #00F0FF;
  --meta-purple: #8B5CF6;
  
  --emerald: #10B981;
  --ruby: #EF4444;
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

/* Background Particle Canvas */
#quantumCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* Ambient Radial Glows */
.ambient-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 650px;
  height: 400px;
  background: radial-gradient(circle at 50% 10%, rgba(0, 132, 255, 0.15) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-grad-gold {
  background: linear-gradient(135deg, #FFFFFF 0%, #F59E0B 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-grad-meta {
  background: linear-gradient(135deg, #FFFFFF 0%, #00F0FF 50%, #0084FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-sub {
  display: block;
  margin-top: 4px;
}

.nav-cta-text-desk {
  display: inline;
}
.nav-cta-text-mob {
  display: none;
}

/* Badges */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0, 132, 255, 0.1);
  border: 1px solid rgba(0, 132, 255, 0.3);
  color: var(--meta-cyan);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--meta-cyan);
  box-shadow: 0 0 10px var(--meta-cyan);
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--meta-cyan); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  border-radius: 99px;
}

.btn-primary-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000000;
  padding: 14px 30px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-primary-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6), 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 14px 28px;
  font-size: 15px;
  backdrop-filter: blur(10px);
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

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

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

.brand-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.brand-title span {
  color: var(--meta-cyan);
}

.brand-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link.active {
  color: var(--gold-primary);
}

.nav-cta-btn {
  padding: 9px 20px;
  font-size: 13px;
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
}

.hero-micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  color: var(--emerald);
  font-weight: bold;
}

/* LIVE METRICS BANNER */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: linear-gradient(145deg, rgba(20, 24, 38, 0.8) 0%, rgba(11, 13, 20, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-number {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* PAIN VS SOLUTION SECTION */
.pain-sol-section {
  padding: 80px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: linear-gradient(145deg, rgba(22, 24, 36, 0.85) 0%, rgba(13, 15, 23, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.pain-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pain-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--ruby);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.pain-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
}

.pain-box {
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid var(--ruby);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: #CBD5E1;
}

.sol-box {
  background: rgba(16, 185, 129, 0.06);
  border-left: 3px solid var(--emerald);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: #E2E8F0;
  font-weight: 500;
}

.sol-tag {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 3px;
}

/* INTERACTIVE ROI CALCULATOR */
.calc-section {
  padding: 80px 0;
}

.calc-container {
  background: linear-gradient(145deg, rgba(22, 26, 40, 0.95) 0%, rgba(12, 14, 22, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.15);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-slider-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  accent-color: var(--gold-light);
}

.industry-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.industry-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 8px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.industry-btn.active, .industry-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: #FFFFFF;
}

.calc-output-card {
  background: rgba(8, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 14px;
}

.calc-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-res-label {
  font-size: 13.5px;
  color: var(--text-muted);
}

.calc-res-val {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
}

.calc-res-val.highlight {
  color: var(--gold-light);
  font-size: 28px;
}

/* 4-STEP FRAMEWORK */
.process-section {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  background: linear-gradient(145deg, rgba(22, 24, 36, 0.9) 0%, rgba(13, 15, 22, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--meta-cyan);
}

.process-step-num {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 800;
  color: var(--meta-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 3px 9px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 14px;
}

.process-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PRICING PACKAGES */
.pricing-section {
  padding: 80px 0;
}

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

.pricing-card {
  background: linear-gradient(145deg, rgba(20, 23, 34, 0.9) 0%, rgba(11, 13, 20, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
}

.pricing-badge-hot {
  position: absolute;
  top: -12px;
  right: 28px;
  background: linear-gradient(90deg, #F59E0B, #D4AF37);
  color: #000000;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-title {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pkg-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pkg-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
}

.pkg-currency {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-primary);
}

.pkg-price {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 900;
  color: #FFFFFF;
}

.pkg-period {
  font-size: 13px;
  color: var(--text-muted);
}

.pkg-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.pkg-features-list li {
  font-size: 13.5px;
  color: #CBD5E1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pkg-features-list li svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
}

.faq-accordion-box {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(18, 20, 30, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* FINAL CTA BANNER */
.cta-banner-section {
  padding: 60px 0 100px 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(28, 32, 50, 0.95) 0%, rgba(14, 16, 26, 0.98) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.2);
  max-width: 920px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
}

/* FLOATING WA BUTTON */
.floating-wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-wa-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .calc-container {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .ambient-glow-top {
    width: 100% !important;
    max-width: 100vw !important;
    left: 0 !important;
    transform: none !important;
  }
  
  /* Header */
  .site-header {
    padding: 13px 0 !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    background: rgba(7, 8, 12, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 100 !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .brand-group {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
  }
  .brand-logo-ring {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
  }
  .brand-text {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
  }
  .brand-title {
    font-size: 16px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    font-weight: 800 !important;
  }
  .brand-subtitle {
    font-size: 9.5px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    color: #94A3B8 !important;
    text-transform: uppercase !important;
  }

  /* Hero Section */
  .hero-section {
    padding: 34px 0 26px 0 !important;
  }
  .eyebrow-badge {
    padding: 5px 12px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 14px !important;
    max-width: 100% !important;
    line-height: 1.35 !important;
    text-align: center !important;
    display: inline-flex !important;
    justify-content: center !important;
  }
  .hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.02em !important;
    padding: 0 4px !important;
  }
  .hero-title-sub {
    display: block !important;
    margin-top: 4px !important;
  }
  .hero-desc {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
    padding: 0 4px !important;
    color: #94A3B8 !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
  }
  .btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 13.5px !important;
    border-radius: 12px !important;
    justify-content: center !important;
  }
  .hero-micro-trust {
    flex-direction: column !important;
    align-items: center !important;
    gap: 7px !important;
    font-size: 11px !important;
  }

  /* Metrics Strip: 1 Baris 1 Baris (Single Column List) */
  .metrics-strip {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 14px 12px !important;
    margin-top: 26px !important;
    border-radius: 18px !important;
  }
  .metric-card {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    width: 100% !important;
  }
  .metric-number {
    font-size: 1.7rem !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }
  .metric-label {
    font-size: 11.5px !important;
    text-align: right !important;
    max-width: 170px !important;
    line-height: 1.35 !important;
    color: #CBD5E1 !important;
  }

  /* Section Header */
  .section-header {
    margin-bottom: 28px !important;
  }
  .section-title {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  .section-sub {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  /* Pain vs Solution */
  .pain-sol-section {
    padding: 38px 0 !important;
  }
  .pain-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pain-card {
    padding: 16px 14px !important;
    border-radius: 16px !important;
    gap: 10px !important;
  }
  .pain-title {
    font-size: 14.5px !important;
  }
  .pain-box, .sol-box {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  /* Calculator Section */
  .calc-section {
    padding: 38px 0 !important;
  }
  .calc-container {
    padding: 20px 14px !important;
    border-radius: 18px !important;
    gap: 20px !important;
  }
  .industry-select-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .industry-btn {
    padding: 8px 4px !important;
    font-size: 11px !important;
    border-radius: 8px !important;
  }
  .calc-output-card {
    padding: 18px 14px !important;
    border-radius: 14px !important;
    gap: 12px !important;
  }
  .calc-res-label {
    font-size: 12px !important;
  }
  .calc-res-val {
    font-size: 18px !important;
  }
  .calc-res-val.highlight {
    font-size: 22px !important;
  }

  /* Process Section */
  .process-section {
    padding: 38px 0 !important;
  }
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .process-card {
    padding: 16px 14px !important;
    border-radius: 14px !important;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 38px 0 !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
  .pricing-card {
    padding: 24px 16px !important;
    border-radius: 18px !important;
  }
  .pkg-price {
    font-size: 32px !important;
  }

  /* FAQ Section */
  .faq-section {
    padding: 38px 0 !important;
  }
  .faq-btn {
    padding: 14px 14px !important;
    font-size: 14px !important;
    gap: 8px !important;
  }
  .faq-answer {
    font-size: 12.5px !important;
    padding: 0 14px 14px 14px !important;
  }

  /* Final CTA */
  .cta-banner-section {
    padding: 30px 0 85px 0 !important;
  }
  .cta-banner-card {
    padding: 24px 14px !important;
    border-radius: 18px !important;
  }

  /* Floating WA */
  .floating-wa-fab {
    bottom: 14px !important;
    right: 14px !important;
    padding: 9px 16px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.45rem !important;
  }
  .brand-title {
    font-size: 13px !important;
  }
  .brand-subtitle {
    display: none !important;
  }
  .industry-select-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .industry-btn {
    padding: 8px 4px !important;
    font-size: 11px !important;
  }
}
