/* ============================================
   SUZUKI NJS CIMAHI – WHITE LUXURY THEME
   Clean · Minimal · Premium Automotive
   ============================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --blue: #00439C;
  --blue-light: #0062D1;
  --blue-dark: #003374;
  --blue-soft: rgba(0, 67, 156, 0.06);
  --blue-border: rgba(0, 67, 156, 0.12);
  --red: #E30613;
  --red-dark: #B8040F;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-subtle: #f0f3f7;
  --surface: #ffffff;
  --border: #e4e8ee;
  --border-light: #eef1f5;
  --text: #1a1d23;
  --text-secondary: #5a6170;
  --text-muted: #8a909d;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1), 0 6px 18px rgba(0, 0, 0, 0.05);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
.hidden { display: none !important; }

::selection {
  background: var(--blue);
  color: #fff;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #c5cad4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a7b4; }

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

/* ---------- GLASS (light adaptation) ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

/* ---------- CARD ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-border);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 60px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 67, 156, 0.25);
}

.btn-glow {
  box-shadow: 0 2px 12px rgba(0, 67, 156, 0.15);
}
.btn-glow:hover {
  box-shadow: 0 6px 24px rgba(0, 67, 156, 0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-soft);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-full { width: 100%; }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
.btn-primary .ripple { background: rgba(255, 255, 255, 0.25); }
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-xs);
}

.navbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  z-index: 1001;
}

.logo-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  margin-right: 8px;
}

.logo-njs {
  color: var(--blue);
  margin-left: 2px;
}

/* ---------- LOGO IMAGE ---------- */
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
}

.navbar.scrolled .logo-img {
  height: 34px;
}

/* ---------- FOOTER LOGO ---------- */
.footer-logo-wrap {
  display: inline-block;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-menu a:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-menu a.active {
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 600;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--bg);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
.hero-particles::before {
  width: 500px;
  height: 500px;
  background: rgba(0, 67, 156, 0.12);
  top: -120px;
  right: -80px;
  animation: floatOrb 14s ease-in-out infinite;
}
.hero-particles::after {
  width: 350px;
  height: 350px;
  background: rgba(227, 6, 19, 0.06);
  bottom: -60px;
  left: 8%;
  animation: floatOrb 18s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: 60px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #00439c;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  color:  #1a1d23;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-sales-card {
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: fit-content;
  box-shadow: var(--shadow-sm);
}

.sales-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

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

/* Hero Right – Photo */
.hero-right {
  display: flex;
  justify-content: center;
}

.sales-photo-wrap {
  position: relative;
  width: 320px;
  height: 380px;
}

.sales-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.sales-photo-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-lg) + 14px);
  border: 1.5px solid var(--blue-border);
  z-index: 1;
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.01); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ---------- HERO ANIMATIONS ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--blue-border);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--text);
}

.title-accent {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  background: none;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ---------- TWO COLUMN ---------- */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---------- CATEGORY BUTTONS ---------- */
.category-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: all var(--transition);
}

.btn-chip:hover {
  color: var(--blue);
  border-color: var(--blue-border);
  background: var(--blue-soft);
}

.btn-chip.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 2px 10px rgba(0, 67, 156, 0.2);
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-xs);
}

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

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--bg-alt);
}

.product-card-image {
  width: 85%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.06);
}

.product-card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 20px;
}

.product-card-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-card-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.product-card-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--transition);
}

.product-card:hover .product-card-cta {
  gap: 10px;
  color: var(--blue-dark);
}

/* ---------- SIMULATION FORM ---------- */
.simulation-form {
  margin-top: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 67, 156, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a909d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group select option {
  background: var(--white);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-actions.full-width {
  grid-column: 1 / -1;
}

/* Simulation Result */
.simulation-result {
  margin-top: 24px;
  padding: 32px;
}

.sim-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.sim-result-item {
  padding: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
}

.sim-result-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.sim-result-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.sim-result-highlight {
  text-align: center;
  padding: 24px;
  background: var(--blue);
  border-radius: var(--radius);
}

.sim-result-highlight .sim-result-value {
  font-size: 30px;
  color: #fff;
}

.sim-result-highlight .sim-result-label {
  color: rgba(255, 255, 255, 0.75);
}

.sim-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- LANDING CARDS ---------- */
.landing-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.landing-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.landing-card:hover::before {
  opacity: 1;
}

.landing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.landing-pill {
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 60px;
  white-space: nowrap;
}

.promo-pill {
  color: #fff;
  background: var(--red);
}

.landing-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.landing-card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.landing-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--transition);
}

.landing-card:hover .landing-card-cta {
  color: var(--blue-dark);
}

/* Landing Pagination */
.landing-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.page-btn:hover:not(:disabled) {
  color: var(--blue);
  border-color: var(--blue-border);
  background: var(--blue-soft);
}

.page-btn.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.list-check li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--blue);
  border-radius: 5px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  padding: 24px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

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

.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.faq-item.active {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 32px;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-item strong {
  color: var(--text);
}

/* ---------- DELIVERY GALLERY ---------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.delivery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.delivery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-item:hover img {
  transform: scale(1.06);
}

.delivery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.delivery-item:hover::after {
  opacity: 1;
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 40px 24px;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  width: 100%;
  max-width: 960px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: 50%;
  z-index: 10;
  transition: all var(--transition);
}

.modal-close:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

.modal-content {
  padding: 32px;
  gap: 32px;
}

.modal-left {
  position: relative;
}

.modal-product-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
  max-height: 220px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: gambar yang bisa muat foto mobil di modal tanpa kepotong;
}

.modal-product-gallery {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.modal-product-gallery img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--border-light);
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition);
  background: var(--bg-alt);
}

.modal-product-gallery img:hover,
.modal-product-gallery img.active {
  opacity: 1;
  border-color: var(--blue);
}

.modal-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-right h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.modal-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.modal-price-block {
  padding: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}

.modal-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.modal-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}

.modal-actions {
  margin: 2px 0;
}

.modal-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-specs-quick h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#modal-brief-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

#modal-brief-specs li {
  font-size: 12px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

#modal-brief-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

/* Variant Buttons */
.modal-variant-section h4,
.modal-color-section h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: all var(--transition);
}

.variant-btn:hover {
  border-color: var(--blue-border);
  color: var(--blue);
}

.variant-btn.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

/* Color Buttons */
.color-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: all var(--transition);
}

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

.color-btn.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.color-btn.active .color-swatch {
  border-color: var(--blue);
}

/* Modal Tabs */
.modal-tabs {
  display: flex;
  border-top: 1px solid var(--border);
}

.tab-button {
  flex: 1;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.tab-button.active {
  color: var(--blue);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-button:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.modal-tab-content {
  padding: 24px 32px 28px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-light);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 11px 0;
  font-size: 13px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-secondary);
  width: 40%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.specs-table td:last-child {
  color: var(--text);
}

/* Delivery Preview Modal */
.delivery-preview {
  max-width: 680px;
  padding: 16px;
}

.delivery-preview img {
  width: 100%;
  border-radius: var(--radius);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 56px 0 0;
  background: var(--text);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer a:hover {
  color: #fff;
}

.footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ================= FLOATING WA ================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border: none;
  border-radius: 50%;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  cursor: pointer;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.wa-float.wa-open {
  background: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: none;
  transform: rotate(45deg);
}

.wa-float.wa-open:hover {
  transform: rotate(45deg) scale(1.08);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ================= WA POPUP ================= */
.wa-popup {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 899;
}

.wa-popup.hidden {
  display: none;
}

.wa-popup-card {
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.wa-popup:not(.hidden) .wa-popup-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-popup-arrow {
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
}

.wa-popup-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.wa-sales-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.wa-sales-btn:first-of-type {
  margin-bottom: 8px;
}

.wa-sales-btn:hover {
  background: var(--bg-alt);
  border-color: var(--border);
}

.wa-sales-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-avatar-2 {
  background: #128C7E;
}

.wa-sales-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.wa-sales-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.wa-sales-role {
  font-size: 12px;
  color: var(--text-muted);
}

.wa-sales-arrow {
  flex-shrink: 0;
  opacity: 0;
  transition: all var(--transition);
}

.wa-sales-btn:hover .wa-sales-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ================= WA RESPONSIVE ================= */
@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .wa-popup {
    bottom: 82px;
    right: 16px;
    left: 16px;
  }

  .wa-popup-card {
    width: 100%;
  }

  .wa-popup-arrow {
    right: 22px;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-sales-card { margin-left: auto; margin-right: auto; }

  .hero-right { order: -1; }
  .sales-photo-wrap { width: 240px; height: 290px; }

  .two-column {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -290px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 2px;
    transition: right var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .sales-photo-wrap {
    width: 200px;
    height: 240px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-product-image {
    height: 200px;
  }

  #modal-brief-specs {
    grid-template-columns: 1fr;
  }

  .sim-result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .landing-links-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg { width: 24px; height: 24px; }

  .modal-tab-content {
    padding: 20px;
  }

  .about-stats {
    gap: 12px;
  }

  .stat-number { font-size: 28px; }
}

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

  .hero-left h1 { font-size: 22px; }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
    justify-content: center;
  }

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

  .stat-number { font-size: 26px; }
  .stat-suffix { font-size: 18px; }

  .section { padding: 60px 0; }

  .section-title { font-size: 22px; }
}

/* ================= FLOATING TEST DRIVE BUTTON ================= */
.td-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0;
  z-index: 901;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all var(--transition);
  cursor: pointer;
  animation: tdFloat 3s ease-in-out infinite;
}

.td-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

@keyframes tdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.td-float-icon {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  margin: 0;
}

/* ================= TEST DRIVE POPUP ================= */
.td-overlay {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px;
}

.td-overlay.hidden {
  display: none;
}

.td-popup {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: tdPopIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tdPopIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.td-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: 50%;
  transition: all var(--transition);
}

.td-close:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

/* Header */
.td-popup-header {
  text-align: center;
  margin-bottom: 28px;
}

.td-popup-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 12px;
}

.td-popup-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.td-popup-header p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Form */
.td-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.td-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.td-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.td-field select,
.td-field input {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.td-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a909d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.td-field select option {
  background: var(--white);
  color: var(--text);
}

.td-field input:focus,
.td-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08);
}

.td-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}

.td-submit:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.3);
  transform: translateY(-1px);
}

/* Disclaimer */
.td-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-align: center;
}

.td-disclaimer svg {
  flex-shrink: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .td-popup {
    padding: 24px;
    margin: 16px;
  }

  .td-popup-header h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .td-float {
    bottom: 82px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .td-float-icon {
    width: 36px;
    height: 36px;
  }
}
