/* Troy Davies Fitness - Smart Landing Page Styles
 * Version: 1.3.0
 * Author: Sean Shepley
 * Last Updated: November 25, 2025
 * Purpose: Modern responsive landing page with membership benefits and free tier signup
 *
 * Changelog:
 * v1.3.0 (2025-11-25) - Replaced 3-tier pricing with benefits showcase and free tier signup box
 * v1.2.3 (2025-10-01) - Fixed pricing card button alignment using flexbox
 * v1.2.2 (2025-09-29) - Swapped hero layout and improved header integration
 */

/* Reset and base styles */
.tdf-smart-landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

.tdf-smart-landing * {
  box-sizing: border-box;
}

/* Container - Responsive Width Strategy */
.tdf-smart-landing .tdf-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  width: 100% !important;
}

@media (min-width: 1440px) {
  .tdf-smart-landing .tdf-container {
    max-width: 1600px !important;
    padding: 0 2rem !important;
  }
}

/* HEADER STYLING - Improved Integration */
.site-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo-compact {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.brand-compact {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.brand-initials {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu a:hover {
  color: #ffffff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.welcome-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

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

.login-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #ffffff;
}

.logout-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.logout-link:hover {
  color: #ffffff;
}

.register-link,
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.register-link:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Membership Status Bar */
.membership-status-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  text-align: center;
}

.membership-status-bar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.membership-level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.level-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.upgrade-link {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.upgrade-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section - SWAPPED LAYOUT */
.tdf-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.tdf-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* SWAPPED: Logo first, then text */
.tdf-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Logo goes first (left side) */
.tdf-hero-visual {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Text goes second (right side) */
.tdf-hero-text {
  order: 2;
  max-width: 600px;
}

.tdf-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tdf-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.tdf-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tdf-hero-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Logo Showcase - Clean Display */
.tdf-logo-showcase {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.tdf-main-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.tdf-logo-tagline {
  margin-top: 2rem;
}

.tdf-logo-tagline p {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */
.tdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 160px;
  text-align: center;
}

.tdf-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.tdf-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
  color: white !important;
  text-decoration: none;
}

.tdf-btn-secondary {
  background: transparent;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.tdf-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white !important;
  text-decoration: none;
}

.tdf-btn-outline {
  background: transparent;
  color: #2563eb !important;
  border-color: #2563eb;
}

.tdf-btn-outline:hover {
  background: #2563eb;
  color: white !important;
  text-decoration: none;
}

.tdf-btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  min-width: 220px;
}

/* Section Titles */
.tdf-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1rem 0;
  text-align: center;
}

.tdf-section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0 0 3rem 0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.tdf-features {
  padding: 5rem 0;
  background: white;
}

.tdf-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tdf-feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  background: white;
}

.tdf-feature-card:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.tdf-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.tdf-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem 0;
}

.tdf-feature-card p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Benefits Section */
.tdf-benefits {
  padding: 5rem 0;
  background: white;
}

.tdf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tdf-benefit-card {
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tdf-benefit-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.tdf-benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.tdf-benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1rem 0;
}

.tdf-benefit-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Free Signup Section */
.tdf-free-signup {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tdf-free-signup-box {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
}

.tdf-free-signup-content {
  padding: 4rem;
  position: relative;
}

.tdf-free-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.tdf-free-signup-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.tdf-free-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.tdf-free-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tdf-free-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #374151;
}

.tdf-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.tdf-btn-free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

.tdf-btn-free:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.tdf-btn-block {
  width: 100%;
  display: block;
}

.tdf-upgrade-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #64748b;
}

.tdf-upgrade-note strong {
  color: #2563eb;
  font-weight: 700;
}

.tdf-free-visual {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tdf-pricing-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 380px;
}

.tdf-pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.tdf-pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
}

.tdf-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.tdf-price-large {
  font-size: 3.5rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
}

.tdf-price-period {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 600;
}

.tdf-pricing-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tdf-pricing-feature {
  font-size: 1rem;
  color: #374151;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}

.tdf-pricing-feature:last-child {
  border-bottom: none;
}

/* Pricing/Membership Tiers */
.tdf-pricing {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tdf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.tdf-tier-card {
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tdf-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tdf-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Tier Specific Styling */
.tdf-tier-free {
  border-color: #22c55e;
}

.tdf-tier-free .tdf-price {
  color: #16a34a;
}

.tdf-tier-silver {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: white;
  border-color: #2563eb;
}

.tdf-tier-silver .tdf-tier-header h3,
.tdf-tier-silver .tdf-tier-features li,
.tdf-tier-silver .tdf-period,
.tdf-tier-silver .tdf-price {
  color: white;
}

.tdf-tier-silver .tdf-tier-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.tdf-tier-silver .tdf-tier-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tdf-tier-gold {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: white;
  border-color: #059669;
}

.tdf-tier-gold .tdf-tier-header h3,
.tdf-tier-gold .tdf-tier-features li,
.tdf-tier-gold .tdf-period {
  color: white;
}

.tdf-tier-gold .tdf-price {
  color: #34d399;
}

.tdf-tier-gold .tdf-tier-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.tdf-tier-gold .tdf-tier-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tdf-tier-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.tdf-tier-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem 0;
}

.tdf-tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.tdf-price {
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.tdf-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.tdf-tier-features {
  flex: 1;
  min-height: 300px;
}

.tdf-tier-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.tdf-tier-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
  color: #374151;
}

.tdf-tier-features li:last-child {
  border-bottom: none;
}

.tdf-tier-cta {
  text-align: center;
  margin-top: auto;
}

/* Tier Button Overrides */
.tdf-tier-free .tdf-btn-outline {
  background: #374151 !important;
  color: white !important;
  border: 2px solid #374151 !important;
}

.tdf-tier-free .tdf-btn-outline:hover {
  background: #10b981 !important;
  border-color: #10b981 !important;
}

.tdf-tier-silver .tdf-btn-primary {
  background: #374151 !important;
  color: white !important;
  border: 2px solid #374151 !important;
}

.tdf-tier-silver .tdf-btn-primary:hover {
  background: #4b5563 !important;
}

.tdf-tier-gold .tdf-btn-gold {
  background: #374151 !important;
  color: white !important;
  border: 2px solid #374151 !important;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.tdf-tier-gold .tdf-btn-gold:hover {
  background: #10b981 !important;
  border-color: #10b981 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Final CTA */
.tdf-final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.tdf-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.tdf-cta-content p {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.tdf-cta-note {
  margin-top: 1rem !important;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 768px) {
  .tdf-hero {
    padding: 3rem 0;
  }
  
  .tdf-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Reset order on mobile - logo on top */
  .tdf-hero-visual {
    order: 1;
  }
  
  .tdf-hero-text {
    order: 2;
    text-align: center;
  }
  
  .tdf-hero-title {
    font-size: 2.25rem;
  }
  
  .tdf-hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  
  .tdf-btn {
    width: 100%;
  }
  
  .tdf-logo-showcase {
    padding: 1rem;
  }
  
  .tdf-main-logo {
    max-width: 300px;
  }
  
  .tdf-logo-tagline {
    margin-top: 1.5rem;
  }
  
  .tdf-logo-tagline p {
    font-size: 1rem;
  }
  
  .tdf-section-title {
    font-size: 2rem;
  }
  
  .tdf-pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .tdf-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tdf-free-signup-box {
    grid-template-columns: 1fr;
  }

  .tdf-free-signup-content {
    padding: 3rem 2rem;
  }

  .tdf-free-signup-content h2 {
    font-size: 2rem;
  }

  .tdf-free-visual {
    padding: 3rem 2rem;
  }

  .tdf-pricing-card {
    padding: 2.5rem 2rem;
  }

  .tdf-cta-content h2 {
    font-size: 2rem;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .welcome-text {
    display: none;
  }
}

/* Accessibility */
.tdf-btn:focus,
.login-link:focus,
.register-link:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Force link color fixes */
.tdf-smart-landing a {
  color: inherit;
  text-decoration: none;
}

.tdf-btn,
.tdf-btn:visited,
.tdf-btn:hover,
.tdf-btn:active {
  text-decoration: none !important;
}

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

.tdf-hero-content,
.tdf-feature-card {
  animation: fadeInUp 0.6s ease-out;
}