/* Professional Design System - Premium Financial Services */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Premium Color Palette */
  --primary-navy: #1e3a5f;
  --primary-blue: #2563eb;
  --accent-emerald: #059669;
  --accent-gold: #d97706;

  /* Sophisticated Neutrals */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Professional Gradients */
  --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  --gradient-subtle: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

  /* Shadows & Effects */
  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Typography Scale */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
}

/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* Header */
.main-header {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.header-nav {
  position: relative;
  z-index: 10;
  padding: var(--space-6) 0;
}

.header-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 5;
  padding: var(--space-16) 0 var(--space-20);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: white;
  color: var(--primary-navy);
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-large);
  background: var(--neutral-50);
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(2px);
}

.trial-info {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Credit Score Dashboard */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-dashboard {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 360px;
}

.dashboard-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.dashboard-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: var(--space-2);
}

.dashboard-subtitle {
  font-size: var(--font-size-sm);
  color: var(--neutral-500);
  font-weight: 500;
}

/* Credit Score Circle */
.score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--gradient-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
}

.score-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-3);
}

.score-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    var(--accent-emerald) 0deg,
    var(--primary-blue) 180deg,
    var(--neutral-200) 260deg,
    var(--neutral-200) 360deg
  );
  animation: scoreReveal 2s ease-out;
}

.score-ring::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: white;
  border-radius: 50%;
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.score-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.score-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-trend {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent-emerald);
}

/* Status Items */
.status-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  transition: all 0.2s ease;
}

.status-item:hover {
  background: white;
  border-color: var(--primary-blue);
  transform: translateX(2px);
}

.status-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  color: var(--neutral-700);
}

.status-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: white;
  font-size: var(--font-size-xs);
}

.status-badge {
  padding: var(--space-1) var(--space-3);
  background: var(--accent-emerald);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Main Content */
.main-content {
  padding: var(--space-20) 0;
}

/* Services Section */
.services-section {
  margin-bottom: var(--space-20);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--neutral-800);
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--neutral-600);
  font-weight: 400;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.service-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-large);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 2;
}

.service-description {
  color: var(--neutral-600);
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Why Choose Section */
.why-section {
  background: var(--gradient-subtle);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
}

.why-content {
  text-align: center;
  margin-bottom: var(--space-12);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  transition: all 0.2s ease;
}

.feature-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--font-size-xl);
  flex-shrink: 0;
}

.feature-text {
  color: var(--neutral-700);
  font-weight: 500;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--neutral-100);
  border-top: 1px solid var(--neutral-200);
  padding: var(--space-12) 0;
  text-align: center;
}

.disclaimer {
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Animations */
@keyframes scoreReveal {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .hero-text {
    max-width: none;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .score-dashboard {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .header-nav {
    padding: var(--space-4) 0;
  }

  .hero-section {
    padding: var(--space-12) 0 var(--space-16);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .score-circle {
    width: 120px;
    height: 120px;
  }

  .score-number {
    font-size: var(--font-size-3xl);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .service-card {
    padding: var(--space-6);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  .why-section {
    padding: var(--space-12);
  }

  .main-content {
    padding: var(--space-16) 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .score-circle {
    width: 100px;
    height: 100px;
  }

  .score-number {
    font-size: var(--font-size-2xl);
  }

  .score-dashboard {
    padding: var(--space-6);
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}
