:root {
  --primary-red: #d32f2f;
  --dark-red: #b71c1c;
  --light-red: #ffebee;
  --accent-orange: #f59e0b;
  --dark-orange: #d97706;
  --navy-dark: #0f172a;
  --navy-slate: #1e293b;
  --navy-light: #334155;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --green-success: #16a34a;
  --green-bg: #dcfce7;
  --font-base: 'Be Vietnam Pro', sans-serif;
  --font-heading: 'Outfit', 'Be Vietnam Pro', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(211, 47, 47, 0.35);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* TOP EMERGENCY BAR */
.top-emergency-bar {
  background: linear-gradient(90deg, #991b1b, #dc2626, #991b1b);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pulse-icon {
  color: #fef08a;
  animation: pulse-alert 1.5s infinite;
}
@keyframes pulse-alert {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* SITE HEADER */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}
.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-slate);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-red);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-nav {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: #fff;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  font-size: 13px;
  padding: 9px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-nav-title {
  white-space: nowrap;
}
.btn-nav-price {
  white-space: nowrap;
  font-weight: 700;
  display: inline-block;
}
.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.4);
}
.pulse-btn {
  animation: pulse-shadow 2s infinite;
}
@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(211, 47, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 80px;
  background: radial-gradient(circle at 10% 20%, #fff5f5 0%, #ffffff 90%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fee2e2;
  color: var(--dark-red);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid #fca5a5;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.25;
  color: var(--navy-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.highlight-text {
  color: var(--primary-red);
  position: relative;
  display: inline-block;
}
.hero-desc {
  font-size: 16px;
  color: var(--navy-light);
  margin-bottom: 25px;
  line-height: 1.7;
}
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-slate);
}
.check-item i {
  color: var(--green-success);
  font-size: 18px;
}

.hero-cta-box {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  border: 2px dashed #fca5a5;
  box-shadow: var(--shadow-md);
  max-width: 520px;
}
.hero-price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.old-price {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}
.sale-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-red);
  font-family: var(--font-heading);
}
.discount-badge {
  background: var(--green-bg);
  color: var(--green-success);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}
.btn-hero {
  width: 100%;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: white;
  padding: 16px;
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.45);
}
.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* HERO VISUAL MOCKUP */
.mockup-container {
  position: relative;
}
.mockup-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--navy-dark);
  color: #fef08a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.document-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doc-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.doc-card:hover {
  transform: translateX(8px);
}
.card-top {
  border-left: 5px solid #2563eb;
}
.card-mid {
  border-left: 5px solid #d97706;
}
.card-bot {
  border-left: 5px solid var(--primary-red);
}
.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.doc-type {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
  color: #1e40af;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #93c5fd;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: -0.2px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
  transition: all 0.25s ease;
}
.doc-type i {
  color: #2563eb;
  font-size: 15px;
}
.doc-card:hover .doc-type {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #3b82f6;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}
.doc-tag {
  background: #f8fafc;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  color: #475569;
  font-weight: 700;
  border: 1px solid #cbd5e1;
}
.doc-card h4 {
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.doc-card p {
  font-size: 13px;
  color: var(--text-muted);
}
.doc-meta {
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  border-top: 1px solid #f1f5f9;
  padding-top: 6px;
}

.guarantee-chip {
  margin-top: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guarantee-chip i {
  font-size: 26px;
  color: #16a34a;
}
.guarantee-chip strong {
  display: block;
  font-size: 14px;
  color: #166534;
}
.guarantee-chip span {
  font-size: 12px;
  color: #15803d;
}

/* SECTION TITLES */
.section-title-wrap {
  margin-bottom: 45px;
}
.text-center {
  text-align: center;
}
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563eb;
  margin-bottom: 10px;
}
.section-subtitle.warning-tag {
  color: var(--primary-red);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 10px auto 0;
}

/* SECTION 1: LEGAL WARNING (CRITICAL REQUIREMENT) */
.legal-warning-section {
  padding: 70px 0;
  background: #fff1f2;
  border-top: 1px solid #ffe4e6;
  border-bottom: 1px solid #ffe4e6;
}
.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.warning-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.1);
  display: flex;
  gap: 20px;
  position: relative;
  transition: transform 0.3s;
}
.warning-card:hover {
  transform: translateY(-4px);
}
.penalty-card {
  border-top: 5px solid #d97706;
}
.criminal-card {
  border-top: 5px solid var(--primary-red);
}
.warning-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.penalty-card .warning-icon {
  background: #fef3c7;
  color: #d97706;
}
.criminal-card .warning-icon {
  background: #fee2e2;
  color: var(--primary-red);
}
.warning-content {
  flex-grow: 1;
}
.penalty-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #d97706;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.red-tag {
  color: var(--primary-red);
  background: #fee2e2;
}
.warning-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.slogan-quote {
  background: #fff8f8;
  border-left: 4px solid #d97706;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #9a3412;
  line-height: 1.6;
  margin-bottom: 14px;
  border-radius: 0 8px 8px 0;
  font-style: normal;
}
.slogan-quote.red-quote {
  background: #fff1f2;
  border-left-color: var(--primary-red);
  color: #9f1239;
}
.warning-detail {
  font-size: 13.5px;
  color: var(--navy-light);
  line-height: 1.6;
}

/* SECTION 2: PACKAGE DETAILS */
.package-details-section {
  padding: 80px 0;
  background: #ffffff;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.item-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
}
.item-box:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}
.item-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #cbd5e1;
}
.item-icon {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.item-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.item-rule {
  font-size: 12px;
  color: #ea580c;
  background: #fff7ed;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.item-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.highlight-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.highlight-box .item-icon {
  background: #fef3c7;
  color: #d97706;
}

/* SECTION 3: PREVIEW DOCUMENTS */
.preview-section {
  padding: 80px 0;
  background: #f8fafc;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.preview-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.preview-img-box {
  background: #f1f5f9;
  padding: 16px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preview-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.preview-img-box img:hover {
  transform: scale(1.04);
}
.doc-sheet {
  background: #ffffff;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #cbd5e1;
  padding: 14px;
  font-size: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  font-weight: 700;
}
.sheet-body h5 {
  text-align: center;
  font-size: 10.5px;
  margin: 6px 0 2px;
  color: #b91c1c;
}
.sheet-body p {
  text-align: center;
  font-size: 9px;
  color: #64748b;
  margin-bottom: 6px;
}
.sheet-lines .line {
  background: #f8fafc;
  border-left: 2px solid #3b82f6;
  padding: 2px 4px;
  margin-bottom: 3px;
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sheet-footer {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 8.5px;
  border-top: 1px dashed #cbd5e1;
  padding-top: 4px;
}
.preview-info {
  padding: 18px;
}
.preview-info h4 {
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.preview-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTION 4: AUDIENCES */
.audiences-section {
  padding: 60px 0;
  background: var(--navy-dark);
  color: #ffffff;
}
.audiences-section .section-title {
  color: #ffffff;
}
.audiences-section .section-subtitle {
  color: #38bdf8;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.target-card {
  background: var(--navy-slate);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s;
}
.target-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}
.target-card i {
  font-size: 32px;
  color: #f59e0b;
  margin-bottom: 14px;
}
.target-card h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
}
.target-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

/* SECTION 5: ORDER & FORM */
.order-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff5f5 100%);
}
.order-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.badge-flash {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef08a;
  color: #854d0e;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.order-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.order-subtitle {
  font-size: 15px;
  color: var(--navy-light);
  margin-bottom: 24px;
}

.price-box-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 2px solid #fecdd3;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.price-row .lbl {
  font-size: 14px;
  color: var(--text-muted);
}
.price-row.highlight .lbl {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 15px;
}
.old-val {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
}
.sale-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-red);
  font-family: var(--font-heading);
}
.save-tag {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-success);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 4px;
}

.order-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-slate);
}
.text-green {
  color: var(--green-success);
  margin-top: 3px;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
}
.form-header {
  margin-bottom: 22px;
  text-align: center;
}
.form-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-slate);
  margin-bottom: 6px;
}
.form-group label i {
  color: var(--primary-red);
  margin-right: 4px;
}
.required {
  color: var(--primary-red);
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}
.form-hint {
  display: block;
  font-size: 11.5px;
  color: #ea580c;
  margin-top: 4px;
  font-weight: 500;
}

.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red), #991b1b);
  color: #ffffff;
  padding: 16px;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.35);
}
.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.45);
}
.secure-badge {
  text-align: center;
  font-size: 12.5px;
  color: #64748b;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
}
.order-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
}
.guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.guarantee-item .text-warning {
  color: #d97706;
}
.guarantee-item .text-success {
  color: #16a34a;
}
.guarantee-divider {
  color: #cbd5e1;
  font-weight: 700;
}

/* SECTION 6: FAQ */
.faq-section {
  padding: 70px 0;
  background: #ffffff;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-question h4 {
  font-size: 15.5px;
  color: var(--navy-dark);
  font-weight: 700;
}
.faq-question i {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, padding 0.3s ease;
  background: #ffffff;
  padding: 0 22px;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--navy-light);
  line-height: 1.65;
  margin: 0;
}
.faq-item.active {
  border-color: #fecdd3;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.06);
}
.faq-item.active .faq-question h4 {
  color: var(--primary-red);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-red);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 22px 20px;
  border-top: 1px solid #f1f5f9;
}

/* SITE FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 60px 0 20px;
  border-top: 1px solid var(--navy-slate);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13.5px;
  margin-bottom: 8px;
}
.footer-col strong {
  color: #f59e0b;
}
.footer-col.brand-col .brand-title {
  color: #ffffff;
}
.footer-desc {
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--navy-slate);
  padding-top: 20px;
  font-size: 12.5px;
}

/* MODAL STYLES */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-dialog {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-dialog.small-modal {
  max-width: 480px;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-icon {
  width: 40px;
  height: 40px;
  background: #fee2e2;
  color: var(--primary-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.modal-title-wrap h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-dark);
}
.order-id-badge {
  font-size: 12px;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--primary-red);
}
.btn-close-modal {
  background: transparent;
  border: none;
  font-size: 26px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
.btn-close-modal:hover {
  color: var(--navy-dark);
}

.modal-body {
  padding: 24px;
}

.payment-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.p-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
}
.p-step.active {
  color: var(--primary-red);
}
.p-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.p-step.active span {
  background: var(--primary-red);
  color: #ffffff;
}

.payment-card-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.qr-wrapper {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}
.qr-code-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.qr-scan-guide {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 10px;
}
.qr-note {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 8px;
}

.transfer-info-column h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bank-details-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 13px;
}
.bank-row:last-child {
  border-bottom: none;
}
.b-lbl {
  color: var(--text-muted);
}
.b-val {
  font-weight: 700;
  color: var(--navy-dark);
}
.highlight-acc {
  font-family: monospace;
  font-size: 15px;
  color: #1e40af;
}
.price-green {
  color: var(--green-success);
  font-size: 15px;
}
.memo-red {
  color: var(--primary-red);
  font-family: monospace;
  font-size: 15px;
}

.copy-val-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-copy {
  background: #e2e8f0;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--navy-slate);
  transition: all 0.2s;
}
.btn-copy:hover {
  background: #cbd5e1;
}

.alert-box-notice {
  background: #fff7ed;
  border-left: 3px solid #f97316;
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #9a3412;
  margin-bottom: 14px;
}
.alert-box-notice i {
  margin-top: 2px;
}

.post-payment-guide {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-paid-confirm {
  width: 100%;
  background: linear-gradient(135deg, var(--green-success), #15803d);
  color: #ffffff;
  padding: 12px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.btn-paid-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.success-icon-animated {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* SOCIAL PROOF TOAST */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-avatar {
  font-size: 26px;
  color: #3b82f6;
}
.toast-content {
  font-size: 12px;
}
.toast-title {
  font-weight: 700;
  color: var(--navy-dark);
}
.toast-desc {
  color: var(--navy-light);
}
.toast-time {
  font-size: 10px;
  color: #94a3b8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid,
  .warning-grid,
  .order-wrapper,
  .footer-content {
    grid-template-columns: 1fr;
  }
  .items-grid,
  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .target-grid {
    grid-template-columns: 1fr 1fr;
  }
  .payment-card-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-wrap {
    padding: 10px 14px;
    gap: 8px;
  }
  .brand-title {
    font-size: 15px;
    line-height: 1.2;
  }
  .brand-sub {
    font-size: 9.5px;
    line-height: 1.2;
  }
  .logo-icon {
    font-size: 18px;
    width: 34px;
    height: 34px;
  }
  .btn-primary-nav {
    font-size: 12px;
    padding: 7px 11px;
    gap: 4px;
  }
  .btn-primary-nav i {
    font-size: 11px;
  }
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .item-box {
    padding: 16px 12px;
    border-radius: 10px;
  }
  .item-number {
    font-size: 18px;
    top: 12px;
    right: 12px;
  }
  .item-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .item-box h3 {
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 6px;
  }
  .item-rule {
    font-size: 10.5px;
    padding: 2px 6px;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .item-desc {
    font-size: 11.5px;
    line-height: 1.45;
  }
  .preview-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }
  .social-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

