/* statement2xlsx Website Styles */

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --dark: #1f2937;
  --light: #f9fafb;
  --gray: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Navigation */
.navbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-link:hover {
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--primary);
}

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

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.btn-cta {
  background: #047857;
  color: white;
}

.btn-cta:hover {
  background: #065f46;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features {
  background: white;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--light);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card p {
  color: var(--gray);
}

.feature-card p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feature-icon {
  font-size: 1.5rem;
}

/* Benefits */
.benefits {
  background: var(--light);
}

.benefits-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing {
  background: white;
}

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

.pricing-card {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-card .description {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

/* Feature Icon SVG */
.feature-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Social Proof / Testimonials */
.social-proof {
  background: white;
}

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

.testimonial-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 2rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.25rem;
}

.testimonial-card blockquote::after {
  content: close-quote;
  font-size: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--dark);
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Risk Reversal */
.risk-reversal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ecfdf5;
  color: #065f46;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.risk-icon {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* Pricing Badge */
.pricing-card .badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* How It Works */
.how-it-works {
  background: var(--light);
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--gray);
}

/* CTA Section */
.cta {
  background: var(--dark);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 3rem 2rem 2rem;
}

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

.footer h4,
.footer-heading {
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
}

.footer a:hover {
  color: white;
}

.footer-about {
  max-width: 280px;
}

.footer-about .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: white;
}

.footer-about .logo span {
  color: #60a5fa;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* Page Header */
.page-header {
  background: var(--primary);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
}

/* Content Page */
.content-page {
  background: white;
  padding: 3rem 2rem;
}

.content-page .container {
  max-width: 800px;
  padding-top: 0;
}

.content-page h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.content-page h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.content-page h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.content-page p {
  margin-bottom: 1rem;
}

.content-page ul, .content-page ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.content-page th, .content-page td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.content-page th {
  background: var(--light);
  font-weight: 600;
}

.content-page code {
  background: var(--light);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: monospace;
}

.content-page pre {
  background: var(--dark);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.content-page pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Alert/Notice Box */
.notice {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.notice-info {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
}

.notice-warning {
  background: #fffbeb;
  border-left: 4px solid var(--warning);
}

.notice-success {
  background: #ecfdf5;
  border-left: 4px solid var(--success);
}

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

  .hero .subtitle {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .trust-strip {
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1.5rem;
  }

  .trust-item {
    font-size: 0.8125rem;
  }

  .trust-link {
    margin-top: 0.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .pricing-card:hover {
    transform: none;
  }
}
