@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #2588D1;
  --primary-hover: #1b6da8;
  --primary-light: #F0F7FC;
  --primary-border: #D0E4F5;
  --dark: #0F172A;
  --text-main: #334155;
  --text-muted: #64748B;
  --bg-main: #FAFCFE;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --accent-green: #10B981;
  --accent-green-light: #ECFDF5;
  --accent-green-border: #D1FAE5;
  
  /* Layout */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: 'Outfit', var(--font-sans);
  --max-width: 1140px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(15, 23, 42, 0.03);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-padding {
  padding: 80px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-green {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border-color: var(--accent-green-border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(37, 136, 209, 0.2);
}

.btn:hover {
  background-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 10px -1px rgba(37, 136, 209, 0.3);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  font-family: var(--font-title);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

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

/* Hero Section */
.hero {
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 136, 209, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 136, 209, 0.15);
}

.hero-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Interactive Mockup */
.mockup-container {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 540px;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(37, 136, 209, 0.2), 0 0 0 1px rgba(37, 136, 209, 0.1);
}

.mockup-header {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #EF4444; }
.dot-yellow { background-color: #F59E0B; }
.dot-green { background-color: #10B981; }

.mockup-tab-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-nav {
  display: flex;
  background-color: #F1F5F9;
  padding: 6px 12px;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}

.mockup-tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: none;
  border: none;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.mockup-tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--dark);
}

.mockup-tab-btn.active {
  background-color: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.mockup-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  background-color: var(--bg-card);
}

.mockup-content {
  display: none;
}

.mockup-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.mock-report-header {
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mock-report-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mock-report-title {
  font-size: 26px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.mock-report-summary {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.mock-section-title {
  font-size: 18px;
  color: var(--dark);
  margin: 24px 0 12px 0;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mock-text {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.6;
}

.mock-highlight-box {
  background: linear-gradient(135deg, rgba(37, 136, 209, 0.08) 0%, rgba(37, 136, 209, 0.02) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px;
  margin: 24px 0;
}

.mock-highlight-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-hover);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-list {
  padding-left: 20px;
  margin-bottom: 12px;
}

.mock-list li {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}

.mock-table th {
  background-color: #F8FAFC;
  color: var(--dark);
  font-weight: 700;
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid var(--primary);
}

.mock-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

.mock-table tr:hover td {
  background-color: #F8FAFC;
}

.mock-chart-simulation {
  background-color: #F8FAFC;
  border: 1px dashed var(--border-color);
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin: 16px 0;
}

.mock-chart-bar-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100px;
  margin: 20px 0;
}

.mock-chart-bar {
  width: 32px;
  background: linear-gradient(to top, var(--primary-hover), var(--primary));
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.mock-chart-bar::after {
  content: attr(data-value);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
}

.mock-chart-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Logos Section */
.logos-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: #FFFFFF;
  padding: 40px 0;
}

.logos-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-align: center;
  font-family: var(--font-title);
}

.logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  height: 28px;
  filter: grayscale(100%) opacity(50%);
  transition: all 0.2s ease;
}

.logo-item:hover {
  filter: grayscale(0%) opacity(80%);
}

/* Features Section ("Why Standard?") */
.features {
  background-color: var(--bg-main);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 52px auto;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Pricing / Subscription Section */
.pricing {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
}

.toggle-label {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.toggle-label.active {
  color: var(--dark);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.save-badge {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border: 1px solid var(--accent-green-border);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular::before {
  content: 'RECOMMENDED FOR INDIVIDUALS';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-card-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card-price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 48px;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 24px;
}

.pricing-card-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-card-features li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.feature-check {
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check.disabled {
  color: var(--text-muted);
  opacity: 0.3;
}

.feature-text.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Endorsements Section */
.endorsements {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-color);
}

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

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 40px;
  font-family: var(--font-title);
  color: var(--primary-hover);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-title);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.author-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.faq-question:hover h3 {
  color: var(--primary);
}

.faq-icon {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

/* Bottom CTA */
.bottom-cta {
  background: radial-gradient(circle at center, rgba(37, 136, 209, 0.05) 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 100px 0;
}

.bottom-cta h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.bottom-cta p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px auto;
}

.bottom-cta-form {
  max-width: 480px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 12px;
}

.input-group .form-control {
  flex: 1;
}

.bottom-cta-form .form-note {
  margin-top: 16px;
}

/* Footer */
.site-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 60px 0 40px 0;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #334155;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-links-column h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-column ul {
  list-style: none;
}

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

.footer-links-column ul li a {
  color: #94A3B8;
}

.footer-links-column ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #94A3B8;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 44px;
  }
  
  .hero-form {
    max-width: 480px;
    margin: 0 auto 16px auto;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero {
    padding: 60px 0 40px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .header-nav {
    display: none; /* Can be expanded with mobile menu if requested, keeping simple */
  }
  
  .logos-grid {
    justify-content: center;
    gap: 24px;
  }
  
  .logo-item {
    height: 22px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .input-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .input-group .btn {
    width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}

/* Added Styles from Weekly Euro Brief */
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-fallback-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon-svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.logo-testimonial-section {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  text-align: center !important;
  background-color: transparent;
  overflow: hidden;
  padding-top: 4rem !important;
  padding-bottom: 80px !important;
  border-top: 1px solid var(--border-color);
}

.logo-testimonial-subtitle {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.logo-marquee {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-track img {
  height: 44px;
  width: auto;
  max-width: 180px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: all 0.3s ease;
}

.logo-marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 0.9;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-testimonial-subtitle {
    font-size: 0.8rem;
  }

  .logo-marquee-track img {
    height: 34px;
    margin: 0 25px;
  }
}

@media (max-width: 640px) {
  .logo-testimonial-section {
    padding-top: 2.5rem !important;
    padding-bottom: 50px !important;
    margin-top: 2rem !important;
  }

  .logo-testimonial-subtitle {
    margin-bottom: 1.5rem !important;
  }
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Testimonials Updates */
.q-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .q-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .q-testimonials-grid {
    gap: 1.25rem;
  }
}

.q-testimonial-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.q-testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

@media (max-width: 640px) {
  .q-testimonial-card {
    padding: 1.5rem;
  }
}

.q-verified-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.q-testimonial-content {
  font-style: italic;
  color: #334155;
  font-size: 0.925rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (max-width: 640px) {
  .q-testimonial-content {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.q-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.q-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.q-avatar.av1 {
  background: #fed7aa;
  color: #ea580c;
}

.q-avatar.av2 {
  background: #bbf7d0;
  color: #166534;
}

.q-avatar.av3 {
  background: #bfdbfe;
  color: #1d4ed8;
}

.q-author-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.q-author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Preview Section --- */
.preview-section {
  background-color: var(--light);
}

.preview-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for a cleaner look while maintaining scrollability */
.preview-grid::-webkit-scrollbar {
  height: 8px;
}
.preview-grid::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}
.preview-grid::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

.preview-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 350px;
  scroll-snap-align: start;
}

.preview-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.micro-teasers {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}

.micro-teasers li {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.micro-teasers li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.preview-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-color);
}

.preview-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.preview-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 12px;
}

.preview-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 0;
}

.preview-body {
  padding: 24px;
  position: relative;
  flex-grow: 1;
}

.redacted-content {
  color: transparent;
  text-shadow: 0 0 8px rgba(15, 23, 42, 0.4);
  user-select: none;
  font-size: 14px;
  line-height: 1.6;
  pointer-events: none;
  margin-bottom: 16px;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.lock-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.lock-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.lock-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

@keyframes pulse-hint {
  0% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(37, 136, 209, 0.4); }
  100% { opacity: 0.7; }
}

@keyframes highlight-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 136, 209, 0.4); border-color: var(--border-color); }
  50% { box-shadow: 0 0 0 4px rgba(37, 136, 209, 0.2); border-color: var(--primary); }
  100% { box-shadow: 0 0 0 0 rgba(37, 136, 209, 0); border-color: var(--border-color); }
}

.highlight-pulse {
  animation: highlight-glow 1.5s ease-out;
}

/* --- Weekly Euro Brief Footer --- */
.q-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.q-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.q-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.q-footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-links {
    justify-content: center;
  }
}

.q-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.q-footer-links a:hover {
  color: var(--primary);
}

@media (max-width: 767px) {
  .preview-card {
    flex: 0 0 85vw;
  }
}
