/* WiseTraceCore Custom Styles */
/* ============================= */

/* ========== CSS Variables ========== */
:root {
  /* Primary Colors */
  --wtc-primary: #1e3a5f;
  --wtc-primary-dark: #162d4a;
  --wtc-primary-light: #2a4d7a;

  /* Accent Colors */
  --wtc-accent: #6b8e6b;
  --wtc-accent-dark: #5a7d5a;
  --wtc-accent-light: #8fb08f;

  /* Neutral Colors */
  --wtc-white: #ffffff;
  --wtc-offwhite: #f8fafc;
  --wtc-gray-100: #f1f5f9;
  --wtc-gray-200: #e2e8f0;
  --wtc-gray-300: #cbd5e1;
  --wtc-gray-400: #94a3b8;
  --wtc-gray-500: #64748b;
  --wtc-gray-600: #475569;
  --wtc-gray-700: #334155;
  --wtc-gray-800: #1e293b;
  --wtc-gray-900: #0f172a;

  /* Typography */
  --wtc-font-primary: 'Inter', 'Plus Jakarta Sans', sans-serif;
  --wtc-font-heading: 'Syne', 'Clash Display', sans-serif;

  /* Spacing */
  --wtc-section-padding: 100px;
  --wtc-section-padding-mobile: 60px;

  /* Border Radius */
  --wtc-radius-sm: 8px;
  --wtc-radius-md: 12px;
  --wtc-radius-lg: 16px;
  --wtc-radius-xl: 24px;

  /* Shadows */
  --wtc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --wtc-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --wtc-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --wtc-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========== Global Styles ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--wtc-font-primary);
  color: var(--wtc-gray-800);
  line-height: 1.6;
}

/* ========== Preloader ========== */
.preloader-wrapper {
  background-color: var(--wtc-primary);
}

.lds-ellipsis div {
  background: var(--wtc-accent);
}

/* ========== Header & Navigation ========== */
.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolling {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--wtc-shadow-md);
}

.site-header.scrolling .nav-link-item {
  color: var(--wtc-gray-800) !important;
}

.site-header.scrolling .nav-link-item:hover {
  color: var(--wtc-primary) !important;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  height: 45px;
  width: auto;
}

.brand-logo-text {
  font-family: var(--wtc-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wtc-primary);
}

.site-header--transparent .brand-logo-text {
  color: var(--wtc-primary);
}

.site-header.scrolling .brand-logo-text {
  color: var(--wtc-primary);
}

/* Navigation Links */
.site-menu-main .nav-link-item {
  font-weight: 500;
  font-size: 15px;
  color: var(--wtc-gray-700);
  transition: color 0.3s ease;
}

.site-menu-main .nav-link-item:hover {
  color: var(--wtc-primary);
}

/* Header CTA Button */
.btn-masco--header {
  background-color: var(--wtc-primary) !important;
  border-color: var(--wtc-primary) !important;
  color: var(--wtc-white) !important;
  font-weight: 600;
  padding: 12px 24px;
}

.btn-masco--header:hover {
  background-color: var(--wtc-primary-dark) !important;
  border-color: var(--wtc-primary-dark) !important;
}

/* ========== Buttons ========== */
.btn-wtc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--wtc-primary);
  color: var(--wtc-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid var(--wtc-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-wtc-primary:hover {
  background-color: var(--wtc-primary-dark);
  border-color: var(--wtc-primary-dark);
  color: var(--wtc-white);
  transform: translateY(-2px);
  box-shadow: var(--wtc-shadow-lg);
}

.btn-wtc-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--wtc-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid var(--wtc-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-wtc-secondary:hover {
  background-color: var(--wtc-primary);
  color: var(--wtc-white);
  transform: translateY(-2px);
}

.btn-wtc-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--wtc-accent);
  color: var(--wtc-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid var(--wtc-accent);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-wtc-accent:hover {
  background-color: var(--wtc-accent-dark);
  border-color: var(--wtc-accent-dark);
  color: var(--wtc-white);
  transform: translateY(-2px);
}

/* Override template button */
.btn-primary-l09,
.btn-masco.btn-primary-l09 {
  background-color: var(--wtc-primary) !important;
  border-color: var(--wtc-primary) !important;
  color: var(--wtc-white) !important;
}

.btn-primary-l09:hover,
.btn-masco.btn-primary-l09:hover {
  background-color: var(--wtc-primary-dark) !important;
  border-color: var(--wtc-primary-dark) !important;
}

/* ========== Hero Section ========== */
.hero-section {
  background: linear-gradient(135deg, var(--wtc-offwhite) 0%, var(--wtc-gray-100) 100%);
  padding: 160px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-title {
  font-family: var(--wtc-font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--wtc-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--wtc-gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--wtc-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wtc-gray-700);
  box-shadow: var(--wtc-shadow-sm);
}

.hero-badge i {
  color: var(--wtc-accent);
}

/* ========== Hero Dashboard Mockup ========== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  background: var(--wtc-white);
  border-radius: var(--wtc-radius-xl);
  box-shadow: var(--wtc-shadow-xl);
  overflow: hidden;
  transform: rotate(2deg);
  max-width: 480px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-mockup:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 95, 0.2);
}

.dashboard-header {
  background: var(--wtc-primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wtc-white);
  font-weight: 600;
  font-size: 14px;
}

.dashboard-logo-icon {
  width: 24px;
  height: 24px;
  background: var(--wtc-accent);
  border-radius: 6px;
}

.dashboard-nav-dots {
  display: flex;
  gap: 6px;
}

.dashboard-nav-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.dashboard-nav-dots span:first-child {
  background: #ff5f57;
}

.dashboard-nav-dots span:nth-child(2) {
  background: #ffbd2e;
}

.dashboard-nav-dots span:last-child {
  background: #28ca41;
}

.dashboard-content {
  padding: 24px 20px;
}

.dashboard-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--wtc-gray-800);
  margin-bottom: 16px;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 20px;
}

.dashboard-table th {
  text-align: left;
  padding: 10px 8px;
  background: var(--wtc-gray-100);
  color: var(--wtc-gray-600);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-table th:first-child {
  border-radius: 6px 0 0 6px;
}

.dashboard-table th:last-child {
  border-radius: 0 6px 6px 0;
}

.dashboard-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--wtc-gray-200);
  color: var(--wtc-gray-700);
}

.dashboard-table tbody tr:last-child td {
  border-bottom: none;
}

.batch-id {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  background: var(--wtc-gray-100);
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--wtc-primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.status-completed {
  background: #d1fae5;
  color: #065f46;
}

.status-maturing {
  background: #fef3c7;
  color: #92400e;
}

.maturation-progress {
  background: var(--wtc-gray-100);
  border-radius: var(--wtc-radius-md);
  padding: 16px;
}

.maturation-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--wtc-gray-700);
  font-weight: 500;
}

.maturation-percent {
  color: var(--wtc-accent);
  font-weight: 700;
}

.maturation-bar {
  height: 8px;
  background: var(--wtc-gray-300);
  border-radius: 50px;
  overflow: hidden;
}

.maturation-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--wtc-accent) 0%, var(--wtc-accent-light) 100%);
  border-radius: 50px;
}

/* ========== Section Common Styles ========== */
.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--wtc-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wtc-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--wtc-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Pain Points / Why WiseTraceCore Section ========== */
.pain-points-section {
  background-color: var(--wtc-primary);
  padding: var(--wtc-section-padding) 0;
}

.pain-points-section .section-title,
.pain-points-section .heading-lg {
  color: var(--wtc-white);
}

.pain-point-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wtc-radius-lg);
  padding: 32px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pain-point-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pain-point-card__icon {
  width: 56px;
  height: 56px;
  background: var(--wtc-accent);
  border-radius: var(--wtc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-point-card__icon i {
  font-size: 24px;
  color: var(--wtc-white);
}

.pain-point-card__title {
  color: var(--wtc-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pain-point-card__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ========== Features Section ========== */
.features-section {
  background: var(--wtc-offwhite);
  padding: var(--wtc-section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--wtc-white);
  border-radius: var(--wtc-radius-lg);
  padding: 32px;
  box-shadow: var(--wtc-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wtc-shadow-lg);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--wtc-gray-100) 0%, var(--wtc-offwhite) 100%);
  border-radius: var(--wtc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon i {
  font-size: 26px;
  color: var(--wtc-primary);
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wtc-gray-800);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--wtc-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ========== Pricing Section ========== */
.pricing-section {
  background: var(--wtc-white);
  padding: var(--wtc-section-padding) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--wtc-white);
  border: 2px solid var(--wtc-gray-200);
  border-radius: var(--wtc-radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wtc-shadow-xl);
}

.pricing-card--featured {
  background: var(--wtc-primary);
  border-color: var(--wtc-primary);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wtc-accent);
  color: var(--wtc-white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--wtc-gray-200);
}

.pricing-card--featured .pricing-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card__plan {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wtc-gray-800);
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__plan {
  color: var(--wtc-white);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card__currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wtc-accent);
}

.pricing-card--featured .pricing-card__currency {
  color: var(--wtc-accent-light);
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--wtc-primary);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--wtc-white);
}

.pricing-card__amount--custom {
  font-size: 2rem;
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--wtc-gray-500);
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card__body {
  flex: 1;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--wtc-gray-700);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card__features li i {
  color: var(--wtc-accent);
  font-size: 14px;
}

.pricing-card--featured .pricing-card__features li i {
  color: var(--wtc-accent-light);
}

.pricing-card__footer {
  margin-top: 32px;
}

.pricing-card__footer .btn-wtc-primary,
.pricing-card__footer .btn-wtc-secondary,
.pricing-card__footer .btn-wtc-accent {
  width: 100%;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 32px;
  background: var(--wtc-gray-100);
  border-radius: var(--wtc-radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-guarantee i {
  color: var(--wtc-accent);
  font-size: 20px;
}

.pricing-guarantee span {
  color: var(--wtc-gray-700);
  font-size: 0.95rem;
}

/* ========== Waitlist Form Section ========== */
.waitlist-section {
  background: #f0f4f8;
  padding: var(--wtc-section-padding) 0;
}

.waitlist-form-container {
  background: var(--wtc-white);
  border-radius: var(--wtc-radius-xl);
  padding: 40px;
  box-shadow: var(--wtc-shadow-lg);
  max-width: 50vw;
  margin: 0 auto;
}

.waitlist-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.waitlist-form-title {
  font-family: var(--wtc-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wtc-primary);
  margin-bottom: 8px;
}

.waitlist-form-subtitle {
  color: var(--wtc-gray-600);
  font-size: 1rem;
  margin: 0;
}

.waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.waitlist-form .form-group {
  margin-bottom: 0;
}

.waitlist-form .form-group--full {
  margin-bottom: 20px;
}

.waitlist-form label {
  font-weight: 600;
  color: var(--wtc-gray-800);
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}

.waitlist-form .form-control {
  height: 50px;
  border: 2px solid var(--wtc-gray-200);
  border-radius: var(--wtc-radius-sm);
  padding: 12px 16px;
  font-size: 16px;
  color: var(--wtc-gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  background: var(--wtc-white);
}

.waitlist-form .form-control:focus {
  border-color: var(--wtc-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
  outline: none;
}

.waitlist-form .form-control::placeholder {
  color: var(--wtc-gray-400);
}

.waitlist-form .form-control.is-invalid {
  border-color: #dc3545;
}

.waitlist-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  cursor: pointer;
  padding-right: 40px;
}

/* Tier Selection Cards */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier-card {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tier-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 2px solid var(--wtc-gray-200);
  border-radius: var(--wtc-radius-md);
  text-align: center;
  transition: all 0.2s ease;
  background: var(--wtc-white);
  min-height: 90px;
}

.tier-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wtc-gray-800);
  margin-bottom: 4px;
}

.tier-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wtc-primary);
}

.tier-card-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wtc-gray-500);
}

.tier-card:hover .tier-card-content {
  border-color: var(--wtc-primary);
  background: rgba(30, 58, 95, 0.02);
}

.tier-card input[type="radio"]:checked + .tier-card-content {
  border-color: var(--wtc-primary);
  background: rgba(30, 58, 95, 0.08);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.tier-card input[type="radio"]:checked + .tier-card-content .tier-card-name {
  color: var(--wtc-primary);
}

/* Submit Button */
.waitlist-form .btn-submit {
  width: 100%;
  height: 50px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  background: var(--wtc-primary);
  border: none;
  border-radius: var(--wtc-radius-sm);
  color: var(--wtc-white);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.waitlist-form .btn-submit:hover {
  background: var(--wtc-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--wtc-shadow-lg);
}

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

.form-privacy {
  text-align: center;
  color: var(--wtc-gray-500);
  font-size: 13px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy i {
  color: var(--wtc-gray-400);
  font-size: 14px;
}

/* Form Messages */
.form-message {
  padding: 16px 20px;
  border-radius: var(--wtc-radius-md);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-message i {
  font-size: 20px;
}

/* Other Industry Field */
.other-industry-group {
  overflow: hidden;
  transition: all 0.3s ease;
}

.other-industry-group.show {
  display: block !important;
  animation: slideDown 0.3s ease forwards;
}

.other-industry-group.hide {
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 20px;
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 20px;
  }
  to {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
  }
}

/* ========== Waitlist Success Section ========== */
.waitlist-success-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  padding: 60px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.waitlist-success-container.show {
  opacity: 1;
}

/* Floating Screenshots Background */
.floating-screenshots-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-screenshot {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 2px dashed rgba(30, 58, 95, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 58, 95, 0.4);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  pointer-events: auto;
  animation: float 4s ease-in-out infinite;
  transform: rotate(var(--rotation, 0deg));
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-screenshot:hover {
  transform: scale(1.1) rotate(0deg) !important;
  opacity: 1;
  border-color: rgba(30, 58, 95, 0.4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation, 0deg));
  }
}

/* Stagger animations */
.floating-screenshot:nth-child(2) { animation-delay: 0.5s; }
.floating-screenshot:nth-child(3) { animation-delay: 1s; }
.floating-screenshot:nth-child(4) { animation-delay: 1.5s; }
.floating-screenshot:nth-child(5) { animation-delay: 2s; }
.floating-screenshot:nth-child(6) { animation-delay: 0.3s; }
.floating-screenshot:nth-child(7) { animation-delay: 0.8s; }
.floating-screenshot:nth-child(8) { animation-delay: 1.3s; }
.floating-screenshot:nth-child(9) { animation-delay: 1.8s; }
.floating-screenshot:nth-child(10) { animation-delay: 0.6s; }

/* Individual floating screenshot positions - larger and spread wider */
.fs-1 { top: 8%; left: 2%; width: 180px; height: 135px; }
.fs-2 { top: 12%; right: 3%; width: 200px; height: 150px; }
.fs-3 { top: 45%; left: -1%; width: 220px; height: 165px; }
.fs-4 { top: 18%; right: 12%; width: 160px; height: 120px; }
.fs-5 { top: 55%; right: 1%; width: 190px; height: 140px; }
.fs-6 { bottom: 15%; left: 4%; width: 175px; height: 130px; }
.fs-7 { bottom: 8%; right: 6%; width: 165px; height: 125px; }
.fs-8 { top: 32%; left: -3%; width: 210px; height: 155px; }
.fs-9 { bottom: 25%; right: -1%; width: 185px; height: 140px; }
.fs-10 { top: 3%; right: 20%; width: 150px; height: 110px; }

/* Success Card */
.success-card {
  position: relative;
  z-index: 10;
  background: var(--wtc-white);
  border-radius: var(--wtc-radius-xl);
  padding: 48px 40px;
  box-shadow: var(--wtc-shadow-lg);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon i {
  font-size: 72px;
  color: #10b981;
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: var(--wtc-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wtc-primary);
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 1rem;
  color: var(--wtc-gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-next-steps {
  background: var(--wtc-gray-100);
  border-radius: var(--wtc-radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.success-next-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wtc-gray-800);
  margin-bottom: 16px;
}

.success-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.success-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--wtc-gray-700);
}

.success-list li i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wtc-primary);
  color: var(--wtc-white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-submit-another {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--wtc-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--wtc-radius-sm);
  border: 2px solid var(--wtc-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.btn-submit-another:hover {
  background: var(--wtc-primary);
  color: var(--wtc-white);
}

.success-contact {
  font-size: 14px;
  color: var(--wtc-gray-500);
  margin: 0;
}

.success-contact a {
  color: var(--wtc-primary);
  text-decoration: none;
  font-weight: 500;
}

.success-contact a:hover {
  text-decoration: underline;
}

/* Form container transition */
.waitlist-form-container {
  transition: opacity 0.3s ease;
}

/* ========== Trust Section ========== */
.trust-section {
  background: var(--wtc-gray-100);
  padding: 60px 0;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-item i {
  font-size: 28px;
  color: var(--wtc-primary);
  margin-bottom: 12px;
  display: block;
}

.trust-item__text {
  color: var(--wtc-gray-700);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

/* ========== FAQ Section ========== */
.faq-section {
  background: var(--wtc-white);
  padding: var(--wtc-section-padding) 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .accordion-item {
  border: 2px solid var(--wtc-gray-200);
  border-radius: var(--wtc-radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--wtc-white);
}

.faq-section .accordion-header {
  margin: 0;
}

.faq-section .accordion-button {
  background: var(--wtc-white);
  color: var(--wtc-gray-800);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--wtc-gray-50);
  color: var(--wtc-primary);
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a5f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq-section .accordion-body {
  padding: 0 24px 24px;
  color: var(--wtc-gray-600);
  line-height: 1.7;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--wtc-primary);
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

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

.footer-brand-logo {
  height: 40px;
  width: auto;
}

.footer-brand-text {
  font-family: var(--wtc-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wtc-white);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--wtc-white);
}

.footer-link i {
  font-size: 16px;
}

.footer-copyright {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* ========== Utilities ========== */
.w-100 {
  width: 100%;
}

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

.text-white {
  color: var(--wtc-white) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ========== Mobile Menu Styles ========== */
.mobile-menu-trigger span,
.mobile-menu-trigger span::before,
.mobile-menu-trigger span::after {
  background-color: var(--wtc-primary);
}

.site-header.scrolling .mobile-menu-trigger span,
.site-header.scrolling .mobile-menu-trigger span::before,
.site-header.scrolling .mobile-menu-trigger span::after {
  background-color: var(--wtc-primary);
}

/* ========== Responsive Styles ========== */
@media (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card--featured {
    transform: scale(1.02);
  }

  .pricing-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 991px) {
  :root {
    --wtc-section-padding: 80px;
  }

  .hero-section {
    padding: 140px 0 80px;
    min-height: auto;
  }

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

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .dashboard-mockup {
    max-width: 400px;
    transform: none;
  }

  .dashboard-mockup:hover {
    transform: translateY(-8px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .waitlist-form-container {
    max-width: 90vw;
    padding: 32px 24px;
  }

  .waitlist-success-container {
    padding: 40px 20px;
    min-height: 400px;
  }

  .success-card {
    padding: 32px 24px;
  }

  .floating-screenshot {
    opacity: 0.5;
  }

  /* Hide some screenshots on tablet */
  .fs-3, .fs-8 {
    display: none;
  }

  .waitlist-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tier-cards {
    grid-template-columns: 1fr;
  }

  .brand-logo-text {
    display: none;
  }

  .menu-block.active {
    background: var(--wtc-white);
  }

  .menu-block.active .nav-link-item {
    color: var(--wtc-gray-800);
    padding: 12px 20px;
    border-bottom: 1px solid var(--wtc-gray-200);
    display: block;
  }

  .menu-block.active .nav-link-item:hover {
    color: var(--wtc-primary);
    background: var(--wtc-gray-100);
  }
}

@media (max-width: 767px) {
  :root {
    --wtc-section-padding: 60px;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta a {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .dashboard-mockup {
    max-width: 100%;
  }

  .dashboard-table th,
  .dashboard-table td {
    padding: 8px 6px;
    font-size: 11px;
  }

  .batch-id {
    font-size: 10px;
  }

  .status-badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .pain-point-card {
    margin-bottom: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .waitlist-form-container {
    padding: 24px 20px;
  }

  .waitlist-success-container {
    padding: 32px 16px;
    min-height: 350px;
  }

  .success-card {
    padding: 24px 20px;
  }

  .floating-screenshot {
    opacity: 0.3;
  }

  /* Hide more screenshots on mobile */
  .fs-3, .fs-5, .fs-8, .fs-9 {
    display: none;
  }

  .success-icon i {
    font-size: 56px;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-subtitle br {
    display: none;
  }

  .waitlist-form-title {
    font-size: 1.5rem;
  }

  .tier-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .tier-card-content {
    padding: 12px 8px;
    min-height: 70px;
  }

  .tier-card-name {
    font-size: 0.8rem;
  }

  .tier-card-price {
    font-size: 0.9rem;
  }

  .tier-card-price small {
    font-size: 0.7rem;
  }

  .waitlist-form .btn-submit {
    font-size: 15px;
    height: 48px;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .btn-wtc-primary,
  .btn-wtc-secondary,
  .btn-wtc-accent {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ========== Showcase Sections (Screenshot Placeholders) ========== */
.showcase-section {
  padding: var(--wtc-section-padding) 0;
}

.showcase-section--light {
  background: var(--wtc-offwhite);
}

.showcase-section--white {
  background: var(--wtc-white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-grid--reversed {
  direction: rtl;
}

.showcase-grid--reversed > * {
  direction: ltr;
}

.showcase-content {
  max-width: 480px;
}

.showcase-title {
  font-family: var(--wtc-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wtc-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.showcase-description {
  font-size: 1.1rem;
  color: var(--wtc-gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--wtc-gray-700);
  line-height: 1.5;
}

.showcase-list li i {
  color: var(--wtc-accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ========== Image Placeholders ========== */
.image-placeholder {
  background: var(--wtc-gray-200);
  border: 2px dashed var(--wtc-gray-400);
  border-radius: var(--wtc-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: var(--wtc-gray-500);
}

.image-placeholder i {
  font-size: 48px;
  opacity: 0.6;
}

.image-placeholder span {
  font-size: 14px;
  font-weight: 500;
}

.image-placeholder--large {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 560px;
}

.image-placeholder--medium {
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* ========== Analytics Section ========== */
.analytics-section {
  background: var(--wtc-primary);
  padding: var(--wtc-section-padding) 0;
}

.section-title--light {
  color: var(--wtc-white);
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.analytics-card .image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.analytics-card .image-placeholder i {
  color: rgba(255, 255, 255, 0.5);
}

.analytics-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wtc-white);
  margin: 0;
}


/* ========== Responsive for New Sections ========== */
@media (max-width: 991px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-grid--reversed {
    direction: ltr;
  }

  .showcase-content {
    max-width: 100%;
    text-align: center;
  }

  .showcase-list li {
    justify-content: center;
  }

  .showcase-image {
    order: -1;
  }

  .image-placeholder--large {
    max-width: 100%;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .showcase-title {
    font-size: 1.75rem;
  }

  .showcase-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}
