:root {
  --bg-primary: #0c0d12;
  --bg-secondary: #13161f;
  --bg-tertiary: #1b1f2c;
  --bg-card: rgba(23, 27, 38, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(91, 108, 255, 0.45);
  --accent-primary: #5b6cff;
  --accent-hover: #7080ff;
  --accent-glow: rgba(91, 108, 255, 0.25);
  --text-primary: #f5f6fa;
  --text-secondary: #9da6b9;
  --text-muted: #626b80;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-w: 1160px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151828 0%, #0c0d12 70%);
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Ambient Glow Overlays */
.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}
.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(91, 108, 255, 0.15);
}
.glow-right {
  top: 400px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(112, 128, 255, 0.08);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 13, 18, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.brand-icon {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(91, 108, 255, 0.3);
}
.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-sub {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-btn-primary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-active);
}
.nav-btn-primary:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 70px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 108, 255, 0.12);
  border: 1px solid rgba(91, 108, 255, 0.35);
  color: #a2afff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-highlight {
  color: var(--accent-primary);
  display: block;
}
.hero-description {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(91, 108, 255, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(91, 108, 255, 0.5);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.btn-secondary:hover {
  background: #252a3a;
  border-color: var(--border-active);
  transform: translateY(-1px);
}
.btn-badge-soon {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(91, 108, 255, 0.25);
  color: #a2afff;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(91, 108, 255, 0.4);
  margin-left: 2px;
}
.btn-block {
  width: 100%;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Hero Mockup Frame - High-Impact & Direct */
.hero-preview {
  display: flex;
  justify-content: center;
}
.mockup-card-container {
  max-width: 380px;
  width: 100%;
  animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mockup-frame {
  background: #11141e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(91, 108, 255, 0.2);
  overflow: hidden;
}
.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #0e1017;
  border-bottom: 1px solid var(--border-subtle);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2c3140;
}
.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }
.mockup-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.mockup-body {
  padding: 0;
  display: flex;
  justify-content: center;
  background: #10121a;
}
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Strip Section */
.strip-section {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(19, 22, 31, 0.4);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.strip-icon {
  font-size: 1.6rem;
  background: var(--bg-tertiary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}
.strip-text {
  display: flex;
  flex-direction: column;
}
.strip-text strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.strip-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(91, 108, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(91, 108, 255, 0.25);
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-desc code, kbd {
  background: #202534;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #ccd5ff;
}

/* ========================================================
   Interactive Showcase Tabs (High Quality & Responsive)
   ======================================================== */
.showcase-section {
  padding: 80px 0 100px;
  background: rgba(15, 17, 24, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.interactive-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.showcase-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-active);
  background: #1b1f2e;
}
.tab-btn.active {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.tab-badge-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.showcase-display {
  min-height: 480px;
  position: relative;
}
.showcase-pane {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  animation: fadeInPane 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.showcase-pane.active {
  display: grid;
}
@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pane-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.pane-details p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pane-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pane-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.pane-list li::before {
  content: "•";
  color: var(--accent-primary);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -2px;
}
.pane-list strong {
  color: var(--text-primary);
}
.pane-media {
  display: flex;
  justify-content: center;
}
.pane-frame {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #10121a;
}
.pane-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Support Desk & Contact Section */
.support-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.support-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.support-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.support-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.support-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.mail-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}
.mail-link:hover {
  text-decoration: underline;
}
.support-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.s-icon {
  font-size: 1.2rem;
}

.support-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.label-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(91, 108, 255, 0.25);
  background: #181c28;
}
.form-group input[readonly] {
  background: #11131c;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* Custom Styled Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  text-align: left;
}
.custom-select-trigger:hover {
  border-color: rgba(91, 108, 255, 0.35);
  background: #161925;
}
.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(91, 108, 255, 0.25);
  background: #181c28;
}
.custom-select-value {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.custom-select-arrow {
  color: var(--text-muted);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  flex-shrink: 0;
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent-primary);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  background: #131622;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.custom-select.open .custom-select-options {
  display: flex;
  animation: selectMenuDrop 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes selectMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.custom-option:hover {
  background: rgba(91, 108, 255, 0.12);
  color: #ffffff;
}
.custom-option.selected {
  background: rgba(91, 108, 255, 0.22);
  color: #a8b5ff;
  font-weight: 600;
}
.opt-icon {
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
}
.opt-text {
  flex: 1;
  line-height: 1.3;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.form-toast {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-toast.success {
  display: block;
  background: rgba(39, 201, 63, 0.15);
  border: 1px solid rgba(39, 201, 63, 0.35);
  color: #72f385;
}
.form-toast.error {
  display: block;
  background: rgba(255, 95, 86, 0.15);
  border: 1px solid rgba(255, 95, 86, 0.35);
  color: #ff9b96;
}

/* ========================================================
   Custom Smooth FAQ Accordion (Zero Page Jump / Shifting)
   ======================================================== */
.faq-section {
  padding: 90px 0 110px;
  border-top: 1px solid var(--border-subtle);
}
.faq-container {
  max-width: 820px;
}
.faq-accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-card.open {
  border-color: var(--border-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  user-select: none;
}
.faq-icon-indicator {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-card.open .faq-icon-indicator {
  transform: rotate(45deg);
  color: var(--accent-primary);
}

/* Modern CSS Grid Smooth Height Transition */
.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-card.open .faq-content-wrapper {
  grid-template-rows: 1fr;
}
.faq-content-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq-card.open .faq-content-inner {
  opacity: 1;
}
.faq-content-inner p {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  background: #08090d;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-primary);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}
.footer-dot {
  color: var(--border-subtle);
  font-size: 0.8rem;
}
.footer-badge-soon {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}
.footer-copy {
  width: 100%;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #4a5163;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions, .hero-trust {
    justify-content: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-pane {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pane-list {
    text-align: left;
  }
  .support-wrapper {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .support-form-card {
    padding: 24px 18px;
  }
  .showcase-tabs-nav {
    flex-direction: column;
  }
}
