/* ==============================================================================
   GUDANG KONTEN - STYLESHEET
   Desain: Mobile-First, Modern, Energik, & High-Conversion
   Palet: #1E90FF (Biru), #22B8FF (Cyan), #0B1B3A (Navy), #FFB800 (CTA Aksen)
   ============================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --primary-blue: #1E90FF;
  --primary-blue-dark: #1274D6;
  --primary-cyan: #22B8FF;
  --cyan-light: #E1F5FE;
  --deep-navy: #0B1B3A;
  --navy-light: #152A54;
  --bg-body: #F5F9FF;
  --bg-card: #FFFFFF;
  --bg-alt: #EDF5FF;
  
  --cta-gold: #FFB800;
  --cta-gold-hover: #FFA200;
  --cta-gold-active: #E68F00;
  --cta-shadow: rgba(255, 184, 0, 0.42);

  --accent-red: #FF4757;
  --accent-green: #10B981;
  --accent-green-hover: #059669;

  --text-main: #0B1B3A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-focus: #1E90FF;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(11, 27, 58, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 144, 255, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 27, 58, 0.12);
  --shadow-glow: 0 0 25px rgba(34, 184, 255, 0.35);

  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.text-center {
  text-align: center;
}

/* Section Header */
.section-header {
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 144, 255, 0.1);
  color: var(--primary-blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.3rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #1E90FF 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Highlight badge */
.badge-promo {
  display: inline-block;
  background: var(--accent-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Buttons & CTAs --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #FFC425 0%, var(--cta-gold) 100%);
  color: #0B1B3A;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 32px;
  min-height: 54px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px var(--cta-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(180deg, #FFD043 0%, var(--cta-gold-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 184, 0, 0.52);
}

.btn-cta:active {
  transform: translateY(0);
  background: var(--cta-gold-active);
}

.btn-cta-nav {
  padding: 10px 20px;
  min-height: 42px;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px var(--cta-shadow);
}

.btn-cta-large {
  width: 100%;
  font-size: 1.125rem;
  padding: 18px 28px;
}

@media (min-width: 640px) {
  .btn-cta-large {
    width: auto;
    padding: 18px 40px;
  }
}

.cta-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- Navbar --- */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 144, 255, 0.12);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--primary-cyan), 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

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

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

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: radial-gradient(120% 80% at 50% 0%, #E7F3FF 0%, #F5F9FF 100%);
  padding-top: 40px;
  padding-bottom: 60px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    text-align: left;
  }
}

.hero-badge-wrap {
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(30, 144, 255, 0.25);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.hero-headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.8rem;
    line-height: 1.18;
  }
}

.hero-subheadline {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.18rem;
  }
}

/* Price Highlight Card */
.price-box {
  background: #FFFFFF;
  border: 2px solid rgba(30, 144, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
  max-width: 480px;
}

.price-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.price-box-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-coret {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-promo {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Trust Chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}

@media (min-width: 992px) {
  .trust-chips {
    justify-content: flex-start;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 27, 58, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chip svg {
  color: var(--primary-blue);
}

/* Smartphone Mockup 9:16 */
.hero-mockup-wrap {
  width: 100%;
  max-width: 320px;
  position: relative;
}

@media (min-width: 768px) {
  .hero-mockup-wrap {
    max-width: 340px;
  }
}

.phone-mockup {
  position: relative;
  background: #000000;
  border: 10px solid #1E293B;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px rgba(11, 27, 58, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 20;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0B1B3A;
  overflow: hidden;
}

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

/* Floating Mockup Badges */
.mockup-float-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(30, 144, 255, 0.2);
  z-index: 25;
  animation: floatSlow 3s ease-in-out infinite alternate;
}

@media (max-width: 480px) {
  .mockup-float-badge {
    left: 10px;
    bottom: 16px;
    padding: 8px 12px;
  }
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--deep-navy);
}

.float-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* --- Problem Section --- */
.problem-section {
  background: #FFFFFF;
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.problem-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-red);
  opacity: 0.6;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 71, 87, 0.3);
}

.problem-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 71, 87, 0.12);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

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

/* --- Solution & Package Features --- */
.solution-section {
  background: var(--bg-alt);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 144, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(34, 184, 255, 0.15) 100%);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* --- Order Timeline Steps --- */
.steps-section {
  background: #FFFFFF;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.35);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.94rem;
  color: var(--text-body);
}

/* --- Preview Gallery (9:16 Aspect Ratio) --- */
.preview-section {
  background: var(--bg-body);
}

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

@media (min-width: 768px) {
  .preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .preview-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

.preview-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 9 / 16;
  background: #0B1B3A;
  transition: var(--transition);
  border: 2px solid transparent;
}

.preview-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary-cyan);
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 12, 26, 0.95) 100%);
  color: #FFFFFF;
  pointer-events: none;
}

.preview-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.preview-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Pricing Card Offer --- */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #FFFFFF 100%);
  position: relative;
}

.pricing-card-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(30, 144, 255, 0.15);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 48px 36px;
  }
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: -36px;
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 6px 45px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.pricing-package-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

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

.pricing-amount-box {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 28px;
  border: 1px dashed rgba(30, 144, 255, 0.3);
}

.pricing-coret-wrap {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-current-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-main-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1;
}

.pricing-save-pill {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: 8px;
}

.pricing-benefits {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
  color: var(--text-main);
}

.pricing-benefits li:last-child {
  border-bottom: none;
}

.pricing-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Testimonials Placeholder --- */
.testimonials-section {
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card-placeholder {
  background: var(--bg-body);
  border: 2px dashed rgba(30, 144, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  transition: var(--transition);
}

.testimonial-card-placeholder:hover {
  border-color: var(--primary-blue);
  background: #FFFFFF;
}

.placeholder-tag {
  display: inline-block;
  background: rgba(30, 144, 255, 0.12);
  color: var(--primary-blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.placeholder-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* --- Guarantee Placeholder --- */
.guarantee-section {
  background: var(--bg-alt);
}

.guarantee-box-placeholder {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px dashed rgba(30, 144, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
}

.guarantee-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.15);
  color: var(--cta-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* --- FAQ Accordion --- */
.faq-section {
  background: #FFFFFF;
}

.faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

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

.accordion-item.active {
  border-color: var(--primary-blue);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.accordion-header:hover {
  color: var(--primary-blue);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--primary-blue);
  color: #FFFFFF;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  padding-bottom: 20px;
}

/* --- Closing CTA Section --- */
.closing-section {
  background: radial-gradient(100% 100% at 50% 0%, #152A54 0%, #0B1B3A 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.closing-section .section-title {
  color: #FFFFFF;
}

.closing-section .section-subtitle {
  color: #CBD5E1;
}

.closing-box {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.closing-section .cta-subtext {
  color: #94A3B8;
}

/* --- Footer --- */
.footer {
  background: #071228;
  color: #94A3B8;
  padding-top: 48px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-tagline {
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.footer-support-link:hover {
  background: rgba(34, 184, 255, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  font-size: 0.85rem;
  color: #64748B;
  text-align: center;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: pulseRipple 2s infinite ease-out;
}

@keyframes pulseRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- Optional Embed Order Form Section --- */
.embed-form-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.embed-form-box {
  max-width: 680px;
  margin: 0 auto;
  min-height: 200px;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Respect Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .mockup-float-badge {
    animation: none !important;
  }
  .wa-pulse {
    animation: none !important;
  }
}

/* --- Mobile Viewport 360px Fine-Tuning --- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.75rem;
  }
  .pricing-card {
    padding: 28px 16px;
  }
  .pricing-main-amount {
    font-size: 2.2rem;
  }
  .btn-cta-large {
    width: 100%;
    font-size: 0.96rem;
    padding: 15px 16px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

