/* =============================================
   PilihKontraktor - Main Stylesheet
   Mobile-First, Conversion-Optimized
   ============================================= */

/* --- Google Fonts & Root Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange: #F05A1A;
  --orange-dark: #d44d0f;
  --orange-light: #ff7340;
  --navy: #0D2A6B;
  --navy-dark: #091e52;
  --blue: #1A5FBF;
  --blue-light: #3a80df;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #eef1f7;
  --gray: #6b7280;
  --gray-dark: #374151;
  --text: #111827;
  --success: #16a34a;
  --shadow-sm: 0 2px 8px rgba(13,42,107,0.08);
  --shadow-md: 0 4px 20px rgba(13,42,107,0.12);
  --shadow-lg: 0 8px 40px rgba(13,42,107,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  background: rgba(240,90,26,0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 32px;
}

/* --- CTA Buttons --- */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 20px rgba(240,90,26,0.35);
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 6px 28px rgba(240,90,26,0.5);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13,42,107,0.25);
}

.btn-email:hover {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  box-shadow: 0 6px 20px rgba(13,42,107,0.4);
  transform: translateY(-1px);
}

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13,42,107,0.25);
  text-decoration: none;
}

.btn-email:hover {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  box-shadow: 0 6px 20px rgba(13,42,107,0.4);
  transform: translateY(-1px);
}

.microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.microcopy span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.microcopy span i { color: #4ade80; font-size: 0.75rem; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,42,107,0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 680px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo-text .brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.navbar-logo-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 500;
}

.navbar-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(240,90,26,0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-cta:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-1px);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  padding: 100px 0 60px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,90,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,95,191,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,90,26,0.2);
  border: 1px solid rgba(240,90,26,0.4);
  color: #ffb38a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,90,26,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(240,90,26,0); }
}

.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#hero h1 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

#hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Social Proof Counter */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
}

.social-proof-avatars {
  display: flex;
}

.social-proof-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  margin-right: -8px;
}

.social-proof-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--navy), var(--blue-light)); }
.social-proof-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--blue-light), var(--orange)); }

.social-proof-text {
  margin-left: 14px;
}

.social-proof-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
}

.social-proof-text strong span {
  color: var(--orange-light);
}

.social-proof-text small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}

/* Hero Bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-bullet i {
  color: #4ade80;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
}

/* Countdown */
.countdown-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 28px;
  text-align: center;
}

.countdown-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.countdown-label i { color: var(--orange); }

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit .number {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  font-variant-numeric: tabular-nums;
}

.countdown-unit .label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-sep {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}

/* =============================================
   SECTION 2 — WHY JOIN EARLY
   ============================================= */
#why-join {
  padding: 60px 0;
  background: var(--white);
}

.reason-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.reason-card:hover {
  border-color: rgba(240,90,26,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reason-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(240,90,26,0.25);
}

.reason-icon i {
  font-size: 1.1rem;
  color: white;
}

.reason-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.reason-content p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   SECTION 3 — SCARCITY
   ============================================= */
#scarcity {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

#scarcity::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(240,90,26,0.15) 0%, transparent 70%);
}

.scarcity-alert {
  background: rgba(240,90,26,0.15);
  border: 1px solid rgba(240,90,26,0.3);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scarcity-alert i {
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
}

.scarcity-alert p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.5;
}

.scarcity-alert p strong {
  color: #ffb38a;
}

/* Category Slots Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.category-slot {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
}

.category-slot.filling {
  border-color: rgba(240,90,26,0.4);
  background: rgba(240,90,26,0.08);
}

.category-slot i {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  display: block;
}

.category-slot.filling i { color: var(--orange-light); }

.category-slot .cat-name {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.slot-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.slot-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  transition: width 1.5s ease;
}

.slot-count {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* =============================================
   SECTION 4 — HOW IT WORKS
   ============================================= */
#how-it-works {
  padding: 60px 0;
  background: var(--off-white);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  z-index: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 28px 0;
  position: relative;
  z-index: 1;
}

.step-item:last-child { padding-bottom: 0; }

.step-number {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(240,90,26,0.3);
  position: relative;
}

.step-content {
  padding-top: 8px;
}

.step-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   SECTION 5 — TRUST
   ============================================= */
#trust {
  padding: 60px 0;
  background: var(--white);
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 3px solid var(--orange);
}

.trust-feature i {
  font-size: 1.3rem;
  color: var(--navy);
  width: 28px;
  flex-shrink: 0;
}

.trust-feature p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  font-weight: 500;
  line-height: 1.4;
}

.trust-feature p strong {
  color: var(--navy);
  display: block;
  font-size: 0.92rem;
}

/* Launch Timeline */
.launch-timeline {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 28px;
}

.launch-timeline .launch-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.launch-timeline .launch-date {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.launch-timeline .launch-date span { color: var(--orange); }

.launch-timeline .launch-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 16px;
  font-size: 3rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.testimonial-stars i { color: #f59e0b; font-size: 0.75rem; }

.testimonial-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

.t-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.t-info small {
  font-size: 0.72rem;
  color: var(--gray);
}

/* =============================================
   SECTION 6 — FINAL CTA
   ============================================= */
#final-cta {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--orange-dark), var(--orange), #ff8c42);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#final-cta::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");
}

#final-cta h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}

#final-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
}

.final-cta-btn {
  background: var(--white) !important;
  color: var(--orange) !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2) !important;
  font-size: 1.05rem !important;
  position: relative;
}

.final-cta-btn:hover {
  background: var(--off-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.3) !important;
}

.final-microcopy span { color: rgba(255,255,255,0.7) !important; }
.final-microcopy span i { color: rgba(255,255,255,0.9) !important; }

/* =============================================
   FAQ SECTION
   ============================================= */
#faq {
  padding: 60px 0;
  background: var(--off-white);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  padding-right: 12px;
  line-height: 1.4;
}

.faq-question i {
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 18px 16px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy-dark);
  padding: 32px 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo img { height: 32px; width: auto; }

.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

footer p a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* =============================================
   STICKY MOBILE CTA BAR
   ============================================= */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(13,42,107,0.12);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-bar-text {
  flex: 1;
}

.sticky-bar-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.sticky-bar-text small {
  font-size: 0.7rem;
  color: var(--gray);
}

.sticky-bar-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(240,90,26,0.35);
  transition: var(--transition);
  flex-shrink: 0;
}

.sticky-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(240,90,26,0.5);
}

/* =============================================
   ANIMATIONS (SCROLL REVEAL)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   SECTION DIVIDER
   ============================================= */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.wave-divider svg {
  width: 100%;
  display: block;
}

/* =============================================
   FORM PAGE (register.html)
   ============================================= */
.form-page-body {
  background: var(--off-white);
  min-height: 100vh;
}

.form-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 24px 20px 32px;
  text-align: center;
}

.form-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-header-logo img { height: 38px; width: auto; }

.form-header-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.form-header h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}

.form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.form-body {
  padding: 28px 20px 100px;
  max-width: 500px;
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
}

.progress-step.active { color: var(--orange); }
.progress-step.done { color: var(--success); }

.progress-step .step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
}

.progress-step.active .step-dot { background: var(--orange); }
.progress-step.done .step-dot { background: var(--success); }

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-light);
  border-radius: 1px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group label span.required { color: var(--orange); margin-left: 2px; }

.form-input,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,90,26,0.12);
}

.form-input::placeholder { color: #9ca3af; }

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: 0.85rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 5px;
}

.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 5px;
  display: none;
}

.form-input.error { border-color: #dc2626; }

.form-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 20px 0;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(240,90,26,0.35);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.form-submit-btn:hover {
  box-shadow: 0 6px 28px rgba(240,90,26,0.5);
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray);
}

.form-trust i { color: var(--success); font-size: 0.78rem; }

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-body {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.thankyou-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(240,90,26,0.4);
  animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.thankyou-logo img { height: 40px; }
.thankyou-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.thankyou-body h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.thankyou-body h1 span { color: var(--orange); }

.thankyou-body > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  max-width: 340px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.thankyou-checklist {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 340px;
  margin: 0 auto 28px;
  text-align: left;
}

.thankyou-checklist h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.thankyou-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thankyou-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.thankyou-checklist li i { color: #4ade80; font-size: 0.85rem; }

.thankyou-whatsapp {
  max-width: 340px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: var(--transition);
  text-decoration: none;
}

.thankyou-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

/* =============================================
   RESPONSIVE — DESKTOP TWEAKS
   ============================================= */
@media (min-width: 600px) {
  #hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  #hero h1 { font-size: 2.8rem; }
  .section-title { font-size: 2.1rem; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
