:root {
  /* Classic Black and White Theme */
  --primary: #000000; /* Pure black */
  --primary-light: #333333; /* Dark gray */
  --primary-dark: #000000; /* Pure black */
  --primary-hover: #1a1a1a; /* Slightly lighter black */
  --secondary: #666666; /* Medium gray */
  --accent: #000000; /* Black for CTAs */
  --accent-light: #333333; /* Dark gray */
  --accent-dark: #000000; /* Pure black */
  --success: #000000; /* Black for success */
  --warning: #666666; /* Gray for warnings */
  --error: #000000; /* Black for errors */

  /* Background Colors */
  --bg-primary: #ffffff; /* Pure white */
  --bg-secondary: #f8f8f8; /* Very light gray */
  --bg-tertiary: #f0f0f0; /* Light gray */
  --bg-accent: #f5f5f5; /* Light gray accent */

  /* Text Colors */
  --text-primary: #000000; /* Pure black for headings */
  --text-secondary: #333333; /* Dark gray for body */
  --text-muted: #666666; /* Medium gray for captions */
  --text-inverse: #ffffff; /* White text */

  /* Border Colors */
  --border: #e0e0e0; /* Light gray borders */
  --border-light: #f0f0f0; /* Very light borders */
  --border-medium: #cccccc; /* Medium borders */

  /* Dark mode support - Minimal */
  --bg-dark: #000000;
  --card-dark: #111111;
  --text-dark: #ffffff;
  --text-muted-dark: #cccccc;
  --border-dark: #333333;

  /* Spacing & Layout - Minimal */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px -1px rgba(0, 0, 0, 0.05),
    0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 8px 10px -2px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Typography - Minimal */
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff !important;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  padding: 0;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  /* Ensure fixed positioning works */
  transform: none;
  -webkit-transform: none;
}

/* Clean, modern design - no background images */

/* Force light mode - white background always */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Section */
.hero {
  background: transparent;
  padding: 4rem 0;
  margin-bottom: 4rem;
  text-align: center;
  margin-top: 0;
  z-index: 2;
  position: relative;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: -0.01em;
}

.pricing-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.highlight {
  color: var(--text-primary);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--text-primary);
  opacity: 0.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 0 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  background: var(--primary);
  color: var(--text-inverse);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  min-width: 140px;
}

.cta-primary:hover {
  background: var(--primary-dark);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  min-width: 140px;
}

.cta-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 3rem 2rem;
  }
}

header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  margin-bottom: 3rem;
  position: relative;
}

/* Header gradient removed - now using body-level fade */

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: "Inter", "Roboto", sans-serif;
  position: relative;
}

.company-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--text-primary);
  opacity: 0.1;
}

.tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Header info removed - email now in footer */

@media (max-width: 768px) {
  .header-content {
    padding: 1.5rem 0;
  }

  .company-name {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 0.85rem;
  }
}

/* Logo removed - using typography-focused design */

h1 {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

p.lead {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  p.lead {
    font-size: 0.9rem;
  }
}

.grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
  margin-top: 0;
  z-index: 2;
  position: relative;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1400px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.card {
  background: var(--bg-primary);
  border-radius: 0;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  position: relative;
}

.card:hover {
  border-color: var(--primary);
}

.card.popular {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-inverse);
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 500;
  z-index: 10;
  white-space: nowrap;
}

/* Cards always use light theme */
.card h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .price {
    font-size: 2.5rem;
  }
}

.meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  font-style: italic;
}

ul.features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
}

ul.features li {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 400;
}

ul.features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: none;
  border: 1px solid var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  letter-spacing: 0;
  /* Enhanced mobile touch */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  /* Better touch feedback */
  -webkit-user-select: none;
  user-select: none;
  /* Active state for mobile */
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

.cta:hover {
  background: #ffffff;
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cta:active {
  transform: translateY(0);
  box-shadow: none;
}

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

.addons {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-weight: 400;
}

.addon:hover {
  background: transparent;
  border-bottom-color: var(--text-secondary);
}

.addon strong {
  color: var(--text-primary);
  font-weight: 500;
}

.notes {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border: none;
  border-top: 1px solid var(--border);
  line-height: 1.6;
  font-weight: 400;
}

.notes strong {
  color: var(--text-primary);
  font-weight: 500;
}

.notes ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.notes li {
  margin: 0.25rem 0;
  font-weight: 400;
}

/* Why Choose Us Section */
.why-choose-us {
  margin: 4rem 0;
  padding: 3rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: -0.01em;
}

.why-choose-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 0;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
}

.benefit-card:hover {
  border-color: var(--primary);
}

.benefit-icon {
  margin-bottom: 1rem;
  display: block;
  color: var(--text-muted);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Free Website Audit Section */
.audit-offer {
  margin: 4rem 0;
  padding: 3rem 0;
  background: var(--text-primary);
  color: #ffffff;
}

.audit-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.audit-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: -0.01em;
}

.audit-text p {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.audit-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.audit-benefits li {
  margin: 0.75rem 0;
  font-size: 1rem;
  color: #ffffff;
}

.cta-audit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-audit:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.audit-icon {
  margin-bottom: 1rem;
  display: block;
  color: #ffffff;
}

.audit-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
}

.audit-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  font-style: italic;
}

@media (min-width: 768px) {
  .audit-content {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .audit-offer {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  .audit-text h2 {
    font-size: 1.5rem;
  }

  .audit-text p {
    font-size: 1rem;
  }

  .audit-icon svg {
    width: 40px;
    height: 40px;
  }

  .cta-audit {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 4rem 0;
  margin: 4rem 0;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-form-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text-primary);
  font-family: "Inter", "Roboto", sans-serif;
  line-height: 1.2;
}

.contact-form-text p {
  font-size: 1rem;
  margin: 0 0 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.contact-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.contact-benefits .benefit-item svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Contact Form Styles */
.contact-form {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", "Roboto", sans-serif;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input:invalid:not(:placeholder-shown),
.form-select:invalid,
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.form-input:valid:not(:placeholder-shown),
.form-select:valid,
.form-textarea:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

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

.form-group .input-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  font-weight: 400;
}

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--text-inverse);
  border: 1px solid var(--primary);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button-loading svg {
  animation: spin 1s linear infinite;
}

.contact-success {
  background: var(--bg-primary);
  border: 1px solid var(--primary);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.contact-success .success-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-success h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
}

.contact-success p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  background: var(--primary);
  color: var(--text-inverse);
  padding: 4rem 0;
  margin: 4rem 0;
  position: relative;
}

.newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text-inverse);
  font-family: "Inter", "Roboto", sans-serif;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1rem;
  margin: 0 0 2rem;
  color: var(--text-inverse);
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 3rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.9;
  justify-content: center;
  padding: 0.5rem 0;
}

.benefit-item svg {
  color: var(--text-inverse);
  opacity: 0.8;
  flex-shrink: 0;
}

.newsletter-form {
  max-width: 450px;
  margin: 0 auto 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: 0;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", "Roboto", sans-serif;
  transition: all 0.2s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-input:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.newsletter-input:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

.input-error {
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: left;
  min-height: 1.2rem;
  font-weight: 400;
}

.newsletter-button {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--text-inverse);
  color: var(--primary);
  border: 1px solid var(--text-inverse);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", "Roboto", sans-serif;
}

.newsletter-button:hover:not(:disabled) {
  background: var(--primary);
  color: var(--text-inverse);
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button-loading svg {
  animation: spin 1s linear infinite;
}

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

.newsletter-success {
  background: var(--bg-primary);
  border: 1px solid var(--primary);
  border-radius: 0;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.success-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.newsletter-success h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
}

.newsletter-success p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form Responsive Styles */
@media (max-width: 768px) {
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form-text h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .newsletter {
    padding: 5rem 0;
  }

  .newsletter-text h2 {
    font-size: 3rem;
  }

  .newsletter-benefits {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 600px;
  }

  .benefit-item {
    flex: 1;
    min-width: 180px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .newsletter {
    padding: 3rem 0;
    margin: 2rem 0;
  }

  .newsletter-text h2 {
    font-size: 2rem;
  }

  .newsletter-text p {
    font-size: 1.1rem;
  }

  .newsletter-benefits {
    gap: 0.75rem;
  }

  .benefit-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 2.5rem 0;
  }

  .newsletter-text h2 {
    font-size: 1.75rem;
  }

  .newsletter-text p {
    font-size: 1rem;
  }

  .newsletter-input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .newsletter-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .benefit-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.faq {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
  letter-spacing: -0.01em;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.faq-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

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

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  font-family: "Inter", "Roboto", sans-serif;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--text-secondary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem 0 0;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .faq-item {
    padding: 2rem 0;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--text-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
  font-family: "Inter", "Roboto", sans-serif;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s ease;
  padding: 0.25rem 0;
}

.contact-link:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.contact-icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.service-area {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.social-links h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  font-family: "Inter", "Roboto", sans-serif;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  color: var(--text-secondary);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--text-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0;
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-methods {
    gap: 0.5rem;
  }
}

/* Footer mobile styles handled above */

/* All elements use light theme */

/* Additional responsive improvements - Enhanced Mobile */
@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .card {
    padding: 1.25rem;
    /* Better touch spacing */
    margin-bottom: 1.5rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .cta {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    /* Enhanced mobile touch */
    min-height: 48px;
    font-size: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  p.lead {
    font-size: 0.85rem;
  }

  /* Better mobile spacing */
  .hero-stats {
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  /* Improved mobile FAQ */
  .faq-item {
    padding: 1.25rem 0;
  }

  .faq-item h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  /* Better mobile contact links */
  .contact-link {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  /* Enhanced mobile touch targets */
  .contact-link,
  .footer-links li {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Better mobile spacing for sections */
  .faq {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  /* Improved mobile grid spacing */
  .grid {
    gap: 2rem;
  }

  /* Mobile-specific fixes */
  .why-choose-us {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  .why-choose-header h2 {
    font-size: 1.5rem;
  }

  .why-choose-header p {
    font-size: 1rem;
  }

  /* Ensure proper mobile layout */
  .hero-content {
    padding: 0 1rem;
  }

  .pricing-header h2 {
    font-size: 1.5rem;
  }

  .pricing-header p {
    font-size: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Performance and Loading Features */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered loading animation */
.card:nth-child(1) {
  transition-delay: 0.1s;
}
.card:nth-child(2) {
  transition-delay: 0.2s;
}
.card:nth-child(3) {
  transition-delay: 0.3s;
}
.card:nth-child(4) {
  transition-delay: 0.4s;
}
.card:nth-child(5) {
  transition-delay: 0.5s;
}
.card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Minimal Global Styles */
body {
  background: var(--bg-primary);
  min-height: 100vh;
}

/* Performance optimizations */
.card,
.hero-content,
.faq-item,
.benefit-card,
.audit-content,
.newsletter-content {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .cta {
    display: none;
  }
}
