/**
 * Figma frame overrides
 *
 * This stylesheet intentionally overrides parts of styles.css to match the
 * supplied Figma screenshot layout (homepage + shared header/footer).
 */

:root{
  --figma-header-bg: #0f2942;
  --figma-header-fg: rgba(255,255,255,.92);
  --figma-muted-fg: rgba(255,255,255,.75);
  --figma-cta: #f59e0b;
  --figma-cta-dark: #d97706;
  --figma-surface: #ffffff;
  --figma-surface-muted: #f3f4f6;
  --figma-border: #e5e7eb;
  --figma-shadow: 0 6px 20px rgba(15, 41, 66, 0.14);
}

/* -------------------------------------------------------------------------- */
/* Shared header (matches screenshot)                                         */
/* -------------------------------------------------------------------------- */

body {
  overflow-x: hidden;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

.site-header{
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    visibility: hidden; /* Hide completely from layout and interaction when inactive */
    z-index: 2000;
  }

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

  .nav-menu a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: #fff !important; /* Ensure visibility */
  }

  .nav-menu .header-cta {
    margin-top: 20px;
    width: auto;
    padding: 16px 40px;
  }
}

.site-header .logo, .checkout-header .logo {
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  font-size: .95rem;
  transition: 0.2s;
}

.nav-menu a:hover {
  color: #fff !important;
}

.site-header .header-cta{
  background: var(--figma-cta);
  border-color: var(--figma-cta);
  color: #111827 !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
}

.site-header .header-cta:hover{
  background: #fbbf24;
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* Premium Checkout Styles                                                    */
/* -------------------------------------------------------------------------- */

.premium-checkout {
  background: #f8fafc;
  min-height: 100vh;
}

.checkout-header {
  background: #0f172a;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.checkout-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px !important;
  height: 72px;
  padding: 0 20px;
  margin: 0 auto;
}

.secure-setup-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secure-setup-badge svg {
  width: 18px;
  height: 18px;
}

.checkout-container {
  padding: 60px 20px;
  max-width: 1200px !important;
  margin: 0 auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.checkout-intro {
  margin-bottom: 40px;
}

.checkout-intro .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.checkout-intro h1 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.checkout-intro .subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.trial-timeline-premium {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.timeline-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--figma-border);
  border-radius: 12px;
}

.timeline-item.active {
  border-color: var(--figma-cta);
  background: #fffdf5;
}

.timeline-marker {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.timeline-item.active .timeline-marker {
  background: var(--figma-cta);
  color: #111827;
}

.timeline-label strong {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}

.timeline-label span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.pay-box-premium {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--figma-border);
}

.pay-box-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.pay-lock-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
}

.pay-lock-icon svg {
  width: 24px;
  height: 24px;
}

.pay-box-header h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.pay-box-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

.payment-guarantees {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
}

.guarantee-item svg {
  width: 16px;
  height: 16px;
}

.pay-btn-premium {
  width: 100%;
  padding: 18px;
  background: var(--figma-cta);
  color: #111827;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
  animation: cta-pulse 2s infinite;
}

.pay-btn-premium:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.order-summary-premium {
  background: #0f172a;
  color: #fff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.summary-header {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.summary-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.product-info span {
  font-size: 0.85rem;
  color: var(--figma-muted-fg);
}

.product-price {
  text-align: right;
}

.price-old {
  display: block;
  text-decoration: line-through;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--figma-cta);
}

.trial-info-box {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.trial-info-box svg {
  width: 20px;
  height: 20px;
  color: var(--figma-cta);
  flex-shrink: 0;
}

.trial-info-box span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--figma-muted-fg);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.summary-total strong {
  font-size: 1.5rem;
  color: #fff;
}

.sidebar-trust-signals {
  display: grid;
  gap: 20px;
}

.sidebar-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--figma-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.sidebar-trust-item span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.checkout-footer-premium {
  margin-top: 60px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--figma-border);
}

.checkout-footer-premium p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
  flex-wrap: wrap;
  line-height: 1.6;
}

.checkout-footer-premium svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checkout-sidebar {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .checkout-container {
    padding: 20px 16px;
  }

  .checkout-intro {
    margin-bottom: 24px;
    text-align: center;
  }

  .checkout-intro h1 {
    font-size: 1.4rem;
  }

  .checkout-intro .subtitle {
    font-size: 0.95rem;
  }

  /* Compact Timeline */
  .trial-timeline-premium {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 24px;
  }

  .timeline-item {
    padding: 8px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    flex: 1;
  }

  .timeline-marker {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .timeline-label strong {
    font-size: 0.7rem;
  }

  .timeline-label span {
    display: none; /* Hide sub-labels on mobile */
  }

  /* Compact Trust Signals */
  .sidebar-trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }

  .sidebar-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .trust-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    margin: 0;
  }

  .sidebar-trust-item strong {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .sidebar-trust-item span {
    display: none;
  }

  /* Compact Order Summary */
  .order-summary-premium {
    padding: 16px;
    margin-bottom: 24px;
  }

  .summary-header {
    margin-bottom: 12px;
  }

  .summary-product {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .product-info strong {
    font-size: 0.95rem;
  }

  .price-current {
    font-size: 1.1rem;
  }

  .trial-info-box {
    padding: 10px;
    margin-bottom: 12px;
    font-size: 0.75rem;
  }

  .pay-box-premium {
    padding: 20px;
  }

  .pay-box-header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .pay-lock-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .pay-lock-icon svg {
    width: 18px;
    height: 18px;
  }

  .payment-guarantees {
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
  }

  .summary-total strong {
    font-size: 1.25rem;
  }

  .secure-setup-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-signup-card {
    padding: 24px 16px;
  }

  .progress-labels {
    padding: 16px 16px 0;
  }

  .progress-labels span {
    font-size: 0.6rem;
  }

  .home-hero h1 {
    font-size: 1.8rem;
  }

  .home-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .authority-logos {
    gap: 16px;
  }

  .auth-logo {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .checkout-header .logo {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Homepage layout                                                            */
/* -------------------------------------------------------------------------- */

.home-hero{
  padding: 100px 0 80px;
  background-color: #0f172a;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 40px 40px;
  color: #fff;
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.home-hero .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.home-hero .hero-checklist li {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.home-hero .hero-check {
  color: var(--figma-cta);
}

.home-hero .hero-stats {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-top: 40px;
  gap: 56px;
}

.home-hero .hero-stat-value {
  color: #fff !important;
  font-size: 1.75rem;
  font-weight: 800;
}

.home-hero .hero-stat-label {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-authority {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-authority p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 700;
}

.authority-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
}

.auth-logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.hero-signup-card{
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.form-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin: -32px -32px 24px -32px;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--figma-cta);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px 0;
  margin-bottom: 24px;
  width: 100%;
  position: relative;
}

.progress-labels span {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
  width: auto;
}

.progress-labels span:first-child {
  text-align: left;
}

.progress-labels span:last-child {
  text-align: right;
}

.progress-labels span.active {
  color: var(--figma-cta);
}

.hero-signup-card h3{
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}

.hero-signup-card .form-group{
  margin-bottom: 20px;
}

.hero-signup-card label{
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.hero-signup-card input,
.hero-signup-card select{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  border-radius: 8px;
}

.hero-signup-card input::placeholder {
  color: rgba(255,255,255,0.3);
}

.hero-signup-card select option {
  background: #0f172a;
  color: #fff;
}

.hero-signup-card .form-submit{
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1.05rem;
  background: var(--figma-cta);
  color: #111827;
  font-weight: 800;
  border: none;
  width: 100%;
  cursor: pointer;
}

.hero-signup-card .form-submit:hover{
  background: #fbbf24;
}

/* Primary CTA Pulse Effect */
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.form-submit, .header-cta, .btn-primary {
  animation: cta-pulse 2s infinite;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-submit:hover, .header-cta:hover, .btn-primary:hover {
  transform: scale(1.05);
}

.hero-signup-trust{
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-signup-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Testimonials strip */
.home-strip{
  background: var(--figma-surface-muted);
  padding: 44px 0;
}

.home-strip .section-header{
  text-align: center;
  margin-bottom: 24px;
}

.home-strip .section-title{
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.home-strip .testimonials-grid{
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-strip .testimonial{
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--figma-border);
}

.home-strip .testimonial-stars{
  display: block;
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.home-strip .testimonial-text{
  font-size: .95rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

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

.home-strip .testimonial-avatar{
  display: none;
}

.home-strip .testimonial-role{
  font-size: .75rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-content .hero-checklist, 
.hero-content .hero-stats,
.hero-content .hero-authority {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-signup {
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

/* Dashboard Preview Premium Styling */
.dashboard-preview {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--figma-border);
  min-height: 400px;
}

.dashboard-sidebar {
  width: 180px;
  background: #f8fafc;
  border-right: 1px solid var(--figma-border);
  padding: 24px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
  cursor: pointer;
}

.sidebar-item svg {
  width: 18px;
  height: 18px;
}

.sidebar-item.active {
  background: #fff;
  color: var(--primary);
  border-right: 3px solid var(--figma-cta);
}

.badge-new {
  background: var(--figma-cta);
  color: #111827;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: auto;
}

.dashboard-main {
  flex: 1;
  padding: 32px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header h3 {
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
}

.status-active {
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  background: #ecfdf5;
  padding: 4px 12px;
  border-radius: 100px;
}

.listing-card-premium {
  background: var(--figma-header-bg);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  margin-bottom: 24px;
}

.listing-header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  opacity: 0.9;
}

.listing-type {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.listing-id {
  font-size: 0.75rem;
  font-family: monospace;
}

.listing-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--figma-muted-fg);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--figma-cta);
}

.metric-trend {
  font-size: 0.7rem;
  color: #4ade80;
  margin-top: 2px;
}

.inbox-section h4 {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inbox-vetted-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--figma-border);
  border-radius: 8px;
  margin-bottom: 12px;
}

.vetted-avatar {
  width: 36px;
  height: 36px;
  background: #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.8rem;
}

.vetted-info {
  display: flex;
  flex-direction: column;
}

.vetted-info strong {
  font-size: 0.9rem;
  color: var(--dark);
}

.vetted-info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.vetted-time {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--gray-400);
}

@media (max-width: 600px) {
  .dashboard-sidebar {
    display: none;
  }
  .listing-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Listing preview section */
.listing-preview-section{
  padding: 64px 0;
  background: #fff;
}

.listing-preview-section .section-header{
  text-align: center;
  margin-bottom: 26px;
}

.listing-preview-section .section-title{
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  font-weight: 800;
  font-size: 1.15rem;
}

.listing-preview-section .section-subtitle{
  font-size: .9rem;
  color: var(--gray-500);
  margin-top: 6px;
}

.listing-preview-frame{
  max-width: 720px;
  margin: 0 auto;
}

/* Benefits section */
.benefits-section{
  padding: 64px 0;
  background: #fff;
}

.benefits-section .section-header{
  text-align: center;
  margin-bottom: 30px;
}

.benefits-section .section-label{
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefits-section .section-title{
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-600);
}

.benefits-grid{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 46px;
  align-items: start;
}

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

.benefit-num{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}

.benefit-item h3{
  margin: 0 0 4px;
  font-size: .95rem;
  color: var(--dark);
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
}

.benefit-item p{
  margin: 0;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.benefits-cta{
  text-align: center;
  margin-top: 24px;
}

.benefits-cta .btn{
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--figma-cta);
  border: 2px solid var(--figma-cta);
  color: #111827;
  font-weight: 800;
}

/* FAQ teaser blocks */
.faq-teasers{
  padding: 54px 0 70px;
  background: #fff;
}

.faq-teaser-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-teaser{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.faq-teaser.reverse{
  grid-template-columns: 1fr 1fr;
}

.faq-teaser.reverse .faq-teaser-media{
  order: 2;
}

.faq-teaser.reverse .faq-teaser-body{
  order: 1;
}

.faq-teaser-media{
  border-radius: 8px;
  border: 1px solid var(--figma-border);
  overflow: hidden;
  height: 170px;
  background:
    linear-gradient(135deg, rgba(15,41,66,.15), rgba(245,158,11,.10)),
    linear-gradient(0deg, #e5e7eb, #f9fafb);
}

.faq-teaser-body h3{
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  font-weight: 900;
  font-size: 1rem;
  margin: 0 0 8px;
}

.faq-teaser-body p{
  color: var(--gray-600);
  font-size: .9rem;
  margin: 0 0 14px;
}

.faq-teaser-body .btn{
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--figma-cta);
  border: 2px solid var(--figma-cta);
  color: #111827;
  font-weight: 800;
}

/* -------------------------------------------------------------------------- */
/* Footer tweaks: match screenshot (no trust badges row)                       */
/* -------------------------------------------------------------------------- */

.site-footer .footer-trust{
  display: none;
}

.site-footer{
  padding-top: 46px;
}

.site-footer .footer-title{
  text-transform: none;
  letter-spacing: 0;
  font-size: .95rem;
}

.site-footer .footer-brand p{
  margin-top: 6px;
  color: rgba(255,255,255,.75);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 900px){
  .home-hero .hero-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .home-hero {
    padding: 60px 0;
  }

  .home-hero h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .home-hero .hero-subtitle {
    text-align: center;
    font-size: 1.1rem;
  }

  .home-hero .hero-checklist {
    max-width: 400px;
    margin: 0 auto 32px;
  }

  .home-hero .hero-stats {
    justify-content: center;
    gap: 32px;
    text-align: center;
  }

  .authority-logos {
    justify-content: center;
    gap: 20px;
  }

  .hero-authority p {
    text-align: center;
  }

  .checkout-container {
    padding: 40px 20px;
  }
  .faq-teaser{
    grid-template-columns: 1fr;
  }
  .faq-teaser.reverse .faq-teaser-media,
  .faq-teaser.reverse .faq-teaser-body{
    order: initial;
  }
  .home-strip .testimonials-grid{
    grid-template-columns: 1fr;
  }
  .benefits-grid{
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Premium Footer                                                             */
/* -------------------------------------------------------------------------- */

.site-footer {
  background: #020617;
  color: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
}

.footer-brand p {
  color: var(--figma-muted-fg);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
  margin-top: 12px;
}

.footer-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--figma-muted-fg);
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--figma-cta);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-contact-info {
  margin-top: 24px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-weight: 600;
}

.footer-email svg {
  width: 18px;
  height: 18px;
  color: var(--figma-cta);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


