/**
 * TenderPipe Landing Page Styles
 *
 * @package TenderPipe
 * @since   1.0.0
 */

/* ==========================================================================
   Landing Page Layout
   ========================================================================== */
/* ==========================================================================
   Navigation Header
   ========================================================================== */

/* Header styles now handled by unified header component (header-unified.css)
   These old styles are commented out to prevent conflicts */

/*
.tp-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tp-border-light);
  z-index: 1000;
  transition: all var(--tp-transition-base);
}

.tp-header.scrolled {
  box-shadow: var(--tp-shadow-md);
}

.tp-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--tp-spacing-lg) 0;
}

.tp-header-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.tp-header-nav {
  display: flex;
  align-items: center;
  gap: var(--tp-spacing-xl);
}

.tp-nav-link {
  font-size: var(--tp-font-size-base);
  color: var(--tp-gray-700);
  font-weight: var(--tp-font-weight-medium);
  transition: color var(--tp-transition-fast);
  text-decoration: none;
  padding: var(--tp-spacing-sm) var(--tp-spacing-md);
}

.tp-nav-link:hover {
  color: var(--tp-primary);
}

.tp-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--tp-font-size-base);
}

.tp-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--tp-spacing-sm);
}

.tp-mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--tp-gray-700);
  transition: all var(--tp-transition-fast);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .tp-header-nav {
    display: none;
  }

  .tp-mobile-menu-toggle {
    display: flex;
  }

  .tp-header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--tp-spacing-lg);
    box-shadow: var(--tp-shadow-lg);
    border-top: 1px solid var(--tp-border-light);
  }

  .tp-header-nav.active .tp-nav-link {
    width: 100%;
    padding: var(--tp-spacing-md);
  }

  .tp-header-nav.active .tp-btn {
    width: 100%;
    margin-top: var(--tp-spacing-sm);
  }
}
*/


.tp-landing-page {
  margin: 0;
  padding: 0;
}

.tp-landing-page .site-content {
  padding: 0;
}

.tp-landing-page .entry-content {
  margin: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.tp-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  padding: var(--tp-spacing-2xl) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.tp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tp-spacing-2xl);
  align-items: center;
}

.tp-hero-content {
  text-align: left;
}

.tp-hero-title {
  font-size: var(--tp-font-size-5xl);
  font-weight: var(--tp-font-weight-bold);
  margin-bottom: var(--tp-spacing-lg);
  color: var(--tp-gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tp-hero-subtitle {
  font-size: var(--tp-font-size-xl);
  font-weight: var(--tp-font-weight-normal);
  margin-bottom: var(--tp-spacing-2xl);
  color: var(--tp-gray-600);
  line-height: var(--tp-line-height-relaxed);
}

.tp-hero-cta {
  margin-bottom: var(--tp-spacing-md);
}

.tp-hero-note {
  font-size: var(--tp-font-size-sm);
  color: var(--tp-gray-600);
  font-weight: var(--tp-font-weight-normal);
  display: flex;
  align-items: center;
  gap: var(--tp-spacing-md);
}

.tp-hero-visual {
  position: relative;
}

.tp-hero-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: white;
  border-radius: var(--tp-radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--tp-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-gray-400);
  transition: transform var(--tp-transition-slow);
}

.tp-hero-image-placeholder:hover {
  transform: scale(1.02);
}

.tp-placeholder-content {
  text-align: center;
}

/* Dashboard Preview Styles */
.tp-hero-dashboard-preview {
  width: 100%;
  position: relative;
  border-radius: var(--tp-radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all var(--tp-transition-slow);
}

.tp-hero-dashboard-preview:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.tp-dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--tp-transition-slow);
}

.tp-hero-dashboard-preview:hover .tp-dashboard-image {
  transform: scale(1.02);
}

.tp-hero-visual-badge {
  position: absolute;
  bottom: var(--tp-spacing-xl);
  right: var(--tp-spacing-xl);
  background: white;
  padding: var(--tp-spacing-md) var(--tp-spacing-lg);
  border-radius: var(--tp-radius-full);
  box-shadow: var(--tp-shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--tp-spacing-sm);
  animation: float 3s ease-in-out infinite;
}

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

.tp-badge-icon {
  font-size: var(--tp-font-size-lg);
}

.tp-badge-text {
  font-size: var(--tp-font-size-sm);
  font-weight: var(--tp-font-weight-semibold);
  color: var(--tp-gray-700);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.tp-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: var(--tp-font-size-lg);
  font-weight: var(--tp-font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border-radius: var(--tp-radius-lg);
  transition: all var(--tp-transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.5;
}

.tp-btn-primary {
  background-color: var(--tp-accent);
  color: var(--tp-white);
  box-shadow: var(--tp-shadow-lg);
}

.tp-btn-primary:hover {
  background-color: var(--tp-accent-dark);
  color: var(--tp-white);
  transform: translateY(-2px);
  box-shadow: var(--tp-shadow-xl);
}

.tp-btn-secondary {
  background-color: var(--tp-white);
  color: var(--tp-primary);
  box-shadow: var(--tp-shadow-md);
}

.tp-btn-secondary:hover {
  background-color: var(--tp-gray-50);
  color: var(--tp-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--tp-shadow-lg);
}

.tp-btn-outline {
  background-color: transparent;
  color: var(--tp-primary);
  border-color: var(--tp-primary);
}

.tp-btn-outline:hover {
  background-color: var(--tp-primary);
  color: var(--tp-white);
}

.tp-btn-large {
  padding: 1.25rem 2.5rem;
  font-size: var(--tp-font-size-xl);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.tp-section {
  padding: var(--tp-spacing-3xl) 0;
  scroll-margin-top: 80px;
}

.tp-section-alt {
  background-color: var(--tp-gray-50);
}

.tp-section-header {
  text-align: center;
  margin-bottom: var(--tp-spacing-2xl);
}

.tp-section-title {
  font-size: var(--tp-font-size-4xl);
  font-weight: var(--tp-font-weight-bold);
  color: var(--tp-gray-900);
  margin-bottom: var(--tp-spacing-md);
}

.tp-section-subtitle {
  font-size: var(--tp-font-size-xl);
  color: var(--tp-gray-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.tp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--tp-spacing-2xl);
  margin-top: var(--tp-spacing-xl);
}

.tp-step {
  text-align: center;
  padding: var(--tp-spacing-xl);
  background: var(--tp-white);
  border-radius: var(--tp-radius-xl);
  box-shadow: var(--tp-shadow-md);
  transition: transform var(--tp-transition-base), box-shadow var(--tp-transition-base);
}

.tp-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--tp-shadow-xl);
}

.tp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: var(--tp-white);
  font-size: var(--tp-font-size-2xl);
  font-weight: var(--tp-font-weight-bold);
  border-radius: var(--tp-radius-full);
  margin: 0 auto var(--tp-spacing-lg);
}

.tp-step-title {
  font-size: var(--tp-font-size-xl);
  font-weight: var(--tp-font-weight-semibold);
  color: var(--tp-gray-900);
  margin-bottom: var(--tp-spacing-sm);
}

.tp-step-description {
  font-size: var(--tp-font-size-base);
  color: var(--tp-gray-600);
  line-height: var(--tp-line-height-relaxed);
}

/* ==========================================================================
   Why TenderPipe Section
   ========================================================================== */

.tp-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--tp-spacing-xl);
  margin-top: var(--tp-spacing-3xl);
}

.tp-benefit {
  padding: var(--tp-spacing-xl);
  background: var(--tp-white);
  border-radius: var(--tp-radius-lg);
  border-left: 4px solid var(--tp-primary);
  transition: all var(--tp-transition-base);
}

.tp-benefit:hover {
  border-left-color: var(--tp-accent);
  box-shadow: var(--tp-shadow-lg);
  transform: translateX(5px);
}

.tp-benefit-icon {
  font-size: var(--tp-font-size-3xl);
  color: var(--tp-primary);
  margin-bottom: var(--tp-spacing-md);
}

.tp-benefit-title {
  font-size: var(--tp-font-size-xl);
  font-weight: var(--tp-font-weight-semibold);
  color: var(--tp-gray-900);
  margin-bottom: var(--tp-spacing-sm);
}

.tp-benefit-description {
  font-size: var(--tp-font-size-base);
  color: var(--tp-gray-600);
  line-height: var(--tp-line-height-relaxed);
}

/* ==========================================================================
   Plans Section
   ========================================================================== */

.tp-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--tp-spacing-xl);
  margin-top: var(--tp-spacing-3xl);
}

.tp-plan {
  background: var(--tp-white);
  border-radius: var(--tp-radius-xl);
  padding: var(--tp-spacing-2xl);
  box-shadow: var(--tp-shadow-md);
  transition: all var(--tp-transition-base);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.tp-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--tp-shadow-xl);
}

.tp-plan-featured {
  border-color: var(--tp-primary);
  position: relative;
}

.tp-plan-featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tp-primary);
  color: var(--tp-white);
  padding: 0.25rem 1rem;
  border-radius: var(--tp-radius-full);
  font-size: var(--tp-font-size-sm);
  font-weight: var(--tp-font-weight-semibold);
}

.tp-plan-header {
  text-align: center;
  margin-bottom: var(--tp-spacing-xl);
}

.tp-plan-name {
  font-size: var(--tp-font-size-2xl);
  font-weight: var(--tp-font-weight-bold);
  color: var(--tp-gray-900);
  margin-bottom: var(--tp-spacing-sm);
}

.tp-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--tp-spacing-lg);
}

.tp-price-original {
  font-size: var(--tp-font-size-base);
  color: var(--tp-gray-500);
  text-decoration: line-through;
}

.tp-price-current {
  font-size: var(--tp-font-size-3xl);
  font-weight: var(--tp-font-weight-bold);
  color: var(--tp-accent);
  line-height: 1;
}

.tp-price-frequency {
  font-size: var(--tp-font-size-sm);
  color: var(--tp-gray-600);
}

/* ==========================================================================
   Auth Modal
   ========================================================================== */

.tp-auth-modal[hidden] {
  display: none !important;
}

.tp-auth-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.tp-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(4px);
}

body.tp-auth-modal-open {
  overflow: hidden;
}

.tp-auth-modal__content {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 520px;
  background: var(--tp-white);
  border-radius: var(--tp-radius-lg);
  box-shadow: var(--tp-shadow-lg);
  padding: calc(var(--tp-spacing-2xl) + 0.75rem) var(--tp-spacing-2xl) var(--tp-spacing-2xl);
  z-index: 1;
  animation: tp-auth-modal-in 0.2s ease;
  display: flex;
  flex-direction: column;
}

.tp-auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent !important;
  border: none;
  font-size: 1.5rem;
  color: var(--tp-gray-500);
  cursor: pointer;
  transition: background var(--tp-transition-fast), color var(--tp-transition-fast);
  box-shadow: none;
  padding: 0;
}

.tp-auth-modal__close:hover {
  color: var(--tp-gray-700);
  background: rgba(15, 23, 42, 0.05);
}

.tp-auth-modal__header {
  text-align: center;
  margin-bottom: var(--tp-spacing-xl);
  padding-right: 2.75rem;
}

.tp-auth-modal__title {
  font-size: var(--tp-font-size-2xl);
  margin: 0 0 var(--tp-spacing-sm) 0;
  color: var(--tp-gray-900);
}

.tp-auth-modal__subtitle {
  color: var(--tp-gray-600);
  margin: 0;
  font-size: var(--tp-font-size-base);
}

.tp-auth-modal__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--tp-gray-100);
  border-radius: var(--tp-radius-full);
  padding: var(--tp-spacing-xs);
  margin-bottom: var(--tp-spacing-xl);
}

.tp-auth-modal__tab {
  border: none;
  background: transparent;
  border-radius: var(--tp-radius-full);
  padding: var(--tp-spacing-sm) var(--tp-spacing-md);
  font-size: var(--tp-font-size-base);
  font-weight: var(--tp-font-weight-medium);
  color: var(--tp-gray-600);
  cursor: pointer;
  transition: all var(--tp-transition-fast);
}

.tp-auth-modal__tab.is-active {
  background: var(--tp-white);
  color: var(--tp-primary);
  box-shadow: var(--tp-shadow-sm);
}

.tp-auth-modal__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tp-auth-panel {
  display: none;
  flex: 1;
}

.tp-auth-panel.is-active {
  display: flex;
  flex-direction: column;
}

.tp-auth-form {
  display: grid;
  gap: var(--tp-spacing-lg);
}

.tp-auth-field {
  display: grid;
  gap: var(--tp-spacing-xs);
}

.tp-auth-field label {
  font-weight: var(--tp-font-weight-medium);
  color: var(--tp-gray-700);
}

.tp-auth-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--tp-radius);
  border: 1px solid var(--tp-border-light);
  font-size: var(--tp-font-size-base);
  transition: border-color var(--tp-transition-fast), box-shadow var(--tp-transition-fast);
}

.tp-auth-field input:focus {
  outline: none;
  border-color: var(--tp-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

.tp-auth-actions {
  display: flex;
  flex-direction: column;
  gap: var(--tp-spacing-sm);
}

.tp-auth-message {
  margin-top: var(--tp-spacing-lg);
  text-align: center;
  font-size: var(--tp-font-size-sm);
  min-height: 3rem;
  color: var(--tp-gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.tp-auth-message.is-error {
  color: var(--tp-error);
}

.tp-auth-message.is-success {
  color: var(--tp-success);
}

/* Forgot Password Styles */
.tp-auth-forgot {
  text-align: right;
  margin-top: calc(-1 * var(--tp-spacing-sm));
}

.tp-auth-forgot-link {
  font-size: var(--tp-font-size-sm);
  color: var(--tp-primary);
  text-decoration: none;
  font-weight: var(--tp-font-weight-medium);
  transition: color var(--tp-transition-fast);
}

.tp-auth-forgot-link:hover {
  color: var(--tp-primary-dark, #0052a3);
  text-decoration: underline;
}

/* Reset Password Steps */
.tp-reset-step {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tp-reset-step.is-hidden {
  display: none !important;
}

/* Auth Form Description */
.tp-auth-description {
  color: var(--tp-gray-600);
  font-size: var(--tp-font-size-sm);
  line-height: 1.5;
  margin: 0 0 var(--tp-spacing-md) 0;
}

/* Auth Field Hint */
.tp-auth-hint {
  font-size: var(--tp-font-size-xs);
  color: var(--tp-gray-500);
  margin-top: calc(-1 * var(--tp-spacing-xs));
}

/* Text-only Button */
.tp-btn-text {
  background: none !important;
  color: var(--tp-gray-600);
  border: none;
  padding: var(--tp-spacing-sm) var(--tp-spacing-md);
  font-size: var(--tp-font-size-sm);
  font-weight: var(--tp-font-weight-medium);
  cursor: pointer;
  transition: color var(--tp-transition-fast);
  box-shadow: none !important;
}

.tp-btn-text:hover {
  color: var(--tp-primary);
  background: none !important;
}

.tp-btn-text:focus {
  outline: 2px solid var(--tp-primary);
  outline-offset: 2px;
}

@keyframes tp-auth-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--tp-spacing-xl) 0;
  flex-grow: 1;
}

.tp-plan-feature {
  padding: var(--tp-spacing-sm) 0;
  color: var(--tp-gray-700);
  display: flex;
  align-items: flex-start;
  gap: var(--tp-spacing-sm);
}

.tp-plan-feature::before {
  content: '✓';
  color: var(--tp-success);
  font-weight: var(--tp-font-weight-bold);
  flex-shrink: 0;
}

.tp-plan-cta {
  margin-top: auto;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.tp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--tp-spacing-xl);
  margin-top: var(--tp-spacing-3xl);
}

.tp-testimonial {
  background: var(--tp-white);
  padding: var(--tp-spacing-2xl);
  border-radius: var(--tp-radius-xl);
  box-shadow: var(--tp-shadow-md);
  position: relative;
}

.tp-testimonial::before {
  content: '"';
  position: absolute;
  top: var(--tp-spacing-lg);
  left: var(--tp-spacing-lg);
  font-size: 4rem;
  color: var(--tp-primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.tp-testimonial-content {
  font-size: var(--tp-font-size-lg);
  color: var(--tp-gray-700);
  line-height: var(--tp-line-height-relaxed);
  margin-bottom: var(--tp-spacing-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.tp-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--tp-spacing-md);
}

.tp-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--tp-radius-full);
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-white);
  font-weight: var(--tp-font-weight-bold);
  font-size: var(--tp-font-size-xl);
}

.tp-testimonial-info {
  flex: 1;
}

.tp-testimonial-name {
  font-weight: var(--tp-font-weight-semibold);
  color: var(--tp-gray-900);
  margin-bottom: 0.25rem;
}

.tp-testimonial-role {
  font-size: var(--tp-font-size-sm);
  color: var(--tp-gray-600);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.tp-cta-section {
  background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
  color: var(--tp-white);
  text-align: center;
  padding: var(--tp-spacing-3xl) 0;
}

.tp-cta-title {
  font-size: var(--tp-font-size-4xl);
  font-weight: var(--tp-font-weight-bold);
  color: var(--tp-white);
  margin-bottom: var(--tp-spacing-lg);
}

.tp-cta-subtitle {
  font-size: var(--tp-font-size-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--tp-spacing-2xl);
}

.tp-cta-buttons {
  display: flex;
  gap: var(--tp-spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.tp-footer {
  background-color: var(--tp-gray-900);
  color: var(--tp-gray-300);
  padding: var(--tp-spacing-3xl) 0 var(--tp-spacing-xl);
  text-align: center;
}

.tp-footer-content {
  margin-bottom: var(--tp-spacing-lg);
}

.tp-footer-title {
  font-size: var(--tp-font-size-lg);
  color: var(--tp-white);
  margin-bottom: var(--tp-spacing-sm);
}

.tp-footer-text {
  font-size: var(--tp-font-size-base);
  margin-bottom: var(--tp-spacing-sm);
}

.tp-footer-link {
  color: var(--tp-secondary);
  text-decoration: none;
  transition: color var(--tp-transition-fast);
}

.tp-footer-link:hover {
  color: var(--tp-secondary-light);
}

.tp-footer-copyright {
  font-size: var(--tp-font-size-sm);
  color: var(--tp-gray-500);
  padding-top: var(--tp-spacing-lg);
  border-top: 1px solid var(--tp-gray-800);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 767px) {
  .tp-hero {
    padding: 2.5rem 0;
  }
  
  .tp-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--tp-spacing-3xl);
  }
  
  .tp-hero-content {
    text-align: center;
  }
  
  .tp-hero-visual {
    order: 1;
  }
  
  .tp-hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
  }
  
  .tp-hero-subtitle {
    font-size: var(--tp-font-size-lg);
  }
  
  .tp-hero-note {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .tp-section {
    padding: 2.5rem 0;
  }
  
  .tp-section-title {
    font-size: var(--tp-font-size-2xl);
  }
  
  .tp-steps,
  .tp-benefits,
  .tp-plans,
  .tp-testimonials {
    grid-template-columns: 1fr;
  }
  
  .tp-btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--tp-font-size-base);
  }

  .tp-auth-modal__content {
    margin: 0 var(--tp-spacing-lg);
    padding: calc(var(--tp-spacing-xl) + 0.5rem) var(--tp-spacing-xl) var(--tp-spacing-xl);
    min-height: 480px;
  }

  .tp-btn-large {
    padding: 1rem 2rem;
    font-size: var(--tp-font-size-lg);
  }
  
  .tp-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tp-cta-buttons .tp-btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tp-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--tp-spacing-3xl);
  }
  
  .tp-hero-content {
    text-align: center;
  }
  
  .tp-hero-visual {
    order: -1;
  }
  
  .tp-steps,
  .tp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tp-plans {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .tp-hero-title {
    font-size: var(--tp-font-size-6xl);
  }
  
  .tp-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tp-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}
