:root {
  --bg-color: #0a0a0a;
  --bg-surface: #1f1f1f;
  --bg-surface-hover: #2a2a2a;
  --border-color: #333333;
  --text-primary: #ffffff;
  --text-secondary: #d9d9d9;
  --accent-color: #ff2400;
  --accent-hover: #e02000;
  --accent-glow: rgba(255, 36, 0, 0.4);
  --linkedin-color: #0077b5;
  --linkedin-hover: #006097;

  --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Futura', 'Jost', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}



h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: 5rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}


.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-accent {
  color: var(--accent-color);
  display: block;
  font-weight: 700;
  margin: 0.3rem 0;
}

/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  width: 100%;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-color);
}

.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-1px);
}

.linkedin-btn {
  background: var(--linkedin-color);
  color: white;
}

.linkedin-btn:hover {
  background: var(--linkedin-hover);
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem 8rem;
  text-align: center;
}

.hero-cta .btn-search {
  margin-left: 0;
}

.hero-video-title {
  margin: 5rem 0 1.75rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
}

.hero-video {
  width: min(960px, calc(100vw - 2rem));
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Search Container */
.glass-panel {
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.search-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 0.5rem;
  position: relative;
}

.search-inputs {
  display: flex;
  flex: 1;
  align-items: center;
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
  margin: 0 0.5rem;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  position: relative;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.input-group:hover {
  background: rgba(255, 255, 255, 0.03);
}

.input-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.input-wrapper .icon {
  color: var(--text-secondary);
}

.input-wrapper input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  outline: none;
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn-search {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 1rem 2.5rem;
  min-height: 64px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: none;
  margin-left: 0.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
}

.btn-search:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: calc(100% + 20px);
  background: #111113;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  z-index: 20;
}

.autocomplete-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.suggestion:hover,
.suggestion.selected {
  background: rgba(255, 255, 255, 0.05);
}

.suggestion-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.suggestion-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.suggestion.selected .suggestion-tag {
  background: var(--accent-glow);
  color: var(--accent-color);
}

/* Account Button */
.btn-icon {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Sections */
.section {
  padding: 6rem 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #1f1f1f;
  padding: 2.5rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: #cccccc;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: -0.25rem;
}

.card-content {
  flex: 1;
}

.feature-card .feature-proof {
  background: rgba(255, 36, 0, 0.08);
  border-left: 4px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #1f1f1f;
}

.feature-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-card p strong {
  color: #242424;
  font-weight: 800;
}

/* Clients */
.clients-section {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  color: #1f1f1f;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

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

.clients-eyebrow {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.clients-content h2 {
  color: #1f1f1f;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  letter-spacing: -0.035em;
  margin: 0 auto 3.5rem;
}

.clients-content h2 span {
  color: var(--accent-color);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.client-logo-item {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.client-logo-item img {
  display: block;
  width: 260px;
  height: auto;
  max-width: 100%;
}

/* Testimonial */
.testimonial-section {
  background: #f5f5f3;
  border-bottom: 1px solid #e5e5e5;
  color: #1f1f1f;
}

.testimonial-content {
  max-width: 900px;
}

.testimonial-eyebrow {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.testimonial-photo {
  border-radius: 50%;
  display: block;
  height: clamp(112px, 15vw, 160px);
  max-width: 160px;
  object-fit: cover;
  width: clamp(112px, 15vw, 160px);
}

.testimonial-copy blockquote {
  color: #1f1f1f;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 0 0 1.5rem;
}

.testimonial-name {
  color: #1f1f1f;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.testimonial-role {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  text-align: center;
  padding: 2.5rem 1.5rem;
  width: 100%;
  margin-top: auto;
  z-index: 5;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin: 0 0.35rem;
  vertical-align: middle;
}

.footer-logo {
  display: block;
  width: auto;
  height: 22px;
}

/* Brand Sub */
.brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.brand-sub a {
  color: var(--accent-color);
  text-decoration: none;
}

.brand-sub a:hover {
  text-decoration: underline;
}

/* New Buttons */
.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-huge {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.cta-container {
  margin-top: 2rem;
}

.support-offer {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 0.75rem;
}

.support-offer a {
  color: inherit;
  text-decoration: underline;
}

/* Wizard Specifics */
.wizard-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.wizard-header {
  text-align: center;
  margin-bottom: 2rem;
}

.wizard-header h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.step {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.step.active {
  color: var(--bg-color);
  background: var(--accent-color);
}

.step-line {
  height: 2px;
  width: 50px;
  background: var(--border-color);
}

.wizard-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.context-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.or-divider {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
  margin: 0 1rem;
}


.upload-zone {
  width: 100%;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.upload-zone:hover {
  border-color: var(--accent-color);
  background: rgba(255, 77, 51, 0.05);
}

.upload-zone .icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.upload-zone p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.upload-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.wizard-inputs {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* Dashboard Specifics */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  width: 100%;
}

.search-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.search-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.status-pill.active {
  background: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
}

.status-pill.completed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.search-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.search-roles {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.results-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  background: var(--accent-glow);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .hero-section {
    padding-top: 4rem;
  }

  .search-container {
    flex-direction: column;
    padding: 1rem;
  }

  .divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }

  .search-inputs {
    flex-direction: column;
    width: 100%;
  }

  .btn-search {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }

  .top-nav {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

}

/* Pain Points Section */
.bg-light {
  background: #ffffff;
  color: #1f1f1f;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.bg-light .section-title {
  color: #1f1f1f;
}

.bg-light p {
  color: #666666 !important;
}



.bg-darker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.text-accent {
  color: var(--text-primary);
  text-shadow: none;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.pain-card {
  background: #ffffff;
  border: 1px solid #cccccc; /* Slightly darker/more visible border */
  padding: 2.5rem 2rem;
  border-radius: 4px; /* Subtle radius */
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer, tighter drop shadow */
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pain-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pain-card h3 {
  color: #1f1f1f;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pain-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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


/* Top Banner */
.top-banner {
  background-color: #ffffff;
  color: #1f1f1f;
  width: 100%;
  padding: 14px 3rem;
  z-index: 1000;
  position: relative;
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  border-bottom: 1px solid #e5e5e5;
}

.top-banner-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 1.25rem;
}

.banner-brand {
  color: #111111;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.banner-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.banner-brand-sub {
  color: #666666;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-badge {
  font-weight: 300;
  font-size: 1.1rem;
}

.banner-price-box {
  border: 1px solid #666;
  padding: 5px 15px;
  border-radius: 4px;
}

.banner-price {
  font-weight: 700;
  font-size: 1.4rem;
}

.banner-regular {
  text-decoration: line-through;
  font-weight: 300;
  font-size: 1.1rem;
  color: #1f1f1f;
}

.banner-timer-label {
  font-weight: 300;
  font-size: 1.1rem;
  margin-left: 20px;
}

.banner-timer-box {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  background-color: #f0f0f0;
  min-width: 10.5rem;
  padding: 5px 8px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.banner-actions {
  justify-self: end;
}

.banner-actions .btn-primary {
  background: #ffffff;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.85rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.banner-actions .btn-primary:hover {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(255, 36, 0, 0.22);
}

/* Bottom CTA */
.bottom-cta-section {
  background: linear-gradient(135deg, #181818 0%, #080808 68%);
  border-top: 1px solid var(--border-color);
  padding-top: 7rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.bottom-cta-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 36, 0, 0.13);
  filter: blur(90px);
  right: -120px;
  top: -180px;
  pointer-events: none;
}

.bottom-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bottom-cta-eyebrow {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.bottom-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.bottom-cta-copy {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 690px;
  margin: 0 auto 2.25rem;
}

.bottom-cta-button {
  margin-left: 0;
}

.cta-notes {
  color: #e2e8f0;
  margin-top: 1.5rem;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.cta-benefits p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.cta-support-offer {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}

.cta-support-offer strong {
  color: inherit;
  font-weight: 500;
}

.cta-support-offer a {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-cta .cta-support-offer {
  margin-top: 1.25rem;
}

.cta-support-offer a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .top-banner-inner {
    grid-template-columns: 1fr auto;
  }

  .banner-content {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-banner {
    padding: 14px 1.25rem;
  }

  .top-banner-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .banner-brand,
  .banner-actions {
    justify-self: center;
  }

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

  .banner-content {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .banner-timer-label {
    margin-left: 8px;
  }

  .bottom-cta-section {
    padding: 5rem 1.25rem;
  }

  .support-offer,
  .cta-support-offer {
    font-size: 1.15rem;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 0.4rem;
  }

  .clients-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .testimonial-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 480px) {
  .banner-actions {
    width: 100%;
    justify-content: center;
  }

  .banner-actions .btn-primary {
    flex: 1;
  }

  .banner-badge,
  .banner-regular,
  .banner-timer-label {
    font-size: 0.95rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .client-logo-item {
    height: 150px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-photo {
    margin: 0 auto;
  }
}
