/* =========================
   Professional Website Styles
   SeanTylerLee.com
   Cache bust: iOS icon fix
   ========================= */

/* CSS Variables for consistent theming */
:root {
  --primary-bg: #0a2347;
  --secondary-bg: #0e2e5f;
  --accent-blue: #2ea8ff;
  --accent-soft: #75c6ff;
  --text-primary: #e8f0ff;
  --text-muted: #a9b8d0;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(180, 200, 255, 0.18);
  --border-radius: 16px;
  --max-width: 1200px;
  --shadow: 0 10px 24px rgba(46, 168, 255, 0.45);
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.25);
}

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

html, body {
  height: 100%;
  color-scheme: dark;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
  background: 
    linear-gradient(rgba(10, 35, 71, 0.95), rgba(14, 46, 95, 0.95)),
    url('images/background.PNG') repeat;
  background-size: auto;
  background-position: center;
  background-attachment: scroll;
  min-height: 100vh;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Hero Section */
.hero {
  text-align: center;
  padding: 40px 0 5px;
  position: relative;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.tagline {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 300px;
  min-width: 300px;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-blue));
  color: #05182e;
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 168, 255, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: transparent;
  border: 3px solid rgba(46, 168, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  font-weight: 700;
  text-shadow: none;
  font-size: 18px;
  letter-spacing: 0.5px;
  background-image: linear-gradient(135deg, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  background-image: linear-gradient(135deg, #ffffff, #666666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 168, 255, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-color: rgba(46, 168, 255, 1);
}

/* CTA Image Links */
.cta-image-link {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(46, 168, 255, 0.8);
  background: rgba(46, 168, 255, 0.1);
  padding: 4px;
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-image-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 168, 255, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-color: rgba(46, 168, 255, 1);
  background: rgba(46, 168, 255, 0.2);
}

.cta-image {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.contact-image-link {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(46, 168, 255, 0.8);
  background: rgba(46, 168, 255, 0.1);
  padding: 4px;
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-image-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 168, 255, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-color: rgba(46, 168, 255, 1);
  background: rgba(46, 168, 255, 0.2);
}

.contact-image {
  width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Services Section */
.services {
  padding: 20px 0;
}

.services h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(180, 200, 255, 0.3);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-soft));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  padding: 12px;
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
}

.service-card:hover .service-icon-img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-primary);
}

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

.feature {
  text-align: center;
  padding: 30px 20px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-soft);
}

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

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.contact-section {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-btn {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}

.contact-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.contact-section p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 30px;
}


.footer-info {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-info p {
  margin-bottom: 5px;
}

/* Quote Page Specific Styles */
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.quote-header {
  text-align: center;
  margin-bottom: 20px;
}

.quote-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.quote-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.pricing-comparison {
  margin-top: 20px;
  text-align: center;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 12px 20px;
  visibility: visible;
  opacity: 1;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-blue)) !important;
  color: #ffffff !important;
  border: 3px solid rgba(46, 168, 255, 0.8);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.4);
  transition: all 0.3s ease;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #4bb8ff, #0d3a6b);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 168, 255, 0.6);
}

.quote-form {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(180, 200, 255, 0.5);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

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

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(180, 200, 255, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(46, 168, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 240, 255, 0.7);
  opacity: 1;
}

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

.feature-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.feature-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(180, 200, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: space-between;
}

.feature-checkbox:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-intro,
.service-intro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.info-icon {
  cursor: pointer;
  font-size: 16px;
  margin-left: 8px;
  opacity: 1;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  color: var(--accent-blue);
  font-weight: bold;
}

.info-icon:hover {
  opacity: 0.8;
  transform: scale(1.15);
}

.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  max-width: 300px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.feature-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-blue);
}

.quote-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.quote-actions .btn {
  width: auto;
  min-width: 200px;
  max-width: 250px;
  flex: 1 1 auto;
}

#calculateQuote {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

.quote-result {
  background: rgba(46, 168, 255, 0.1);
  border: 1px solid var(--accent-blue);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-top: 30px;
  text-align: center;
}

.quote-total {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-soft);
  margin: 20px 0;
}

.quote-breakdown {
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
}

/* Apps Page Specific Styles */
.apps-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.apps-header {
  text-align: center;
  margin-bottom: 20px;
}

.apps-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.apps-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.apps-grid {
  display: grid;
  gap: 40px;
}

.app-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.app-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.app-info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.app-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
}

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent-blue);
  color: #05182e;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.app-link:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.4);
}

.app-link.secondary {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

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

.app-link.website {
  background: linear-gradient(135deg, #2ea8ff, #0b2a52);
  color: #ffffff;
  border: 1px solid rgba(46, 168, 255, 0.8);
}

.app-link.website:hover {
  background: linear-gradient(135deg, #4bb8ff, #0d3a6b);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(46, 168, 255, 0.4);
}

.app-store-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* About Page Styles */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 200, 255, 0.2);
}

.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(180, 200, 255, 0.2);
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-soft);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
}

.cta-section {
  text-align: center;
  background: rgba(46, 168, 255, 0.1);
  border: 1px solid rgba(46, 168, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

.cta-section h2 {
  color: var(--accent-soft);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 30px 0 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .quote-form {
    padding: 20px 15px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-checkboxes {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .app-links {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-image {
    width: 225px;
  }
  
  .contact-image {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .quote-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .app-links {
    flex-direction: column;
  }
  
  .app-link {
    width: 100%;
  }
  
  .cta-image {
    width: 180px;
  }
  
  .contact-image {
    width: 240px;
  }
}

/* Print Styles for Quote PDF */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .quote-form,
  .quote-result {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
  
  .btn {
    display: none !important;
  }
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent-soft);
}

/* App Features Tags */
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.feature-tag {
  background: rgba(46, 168, 255, 0.2);
  color: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(46, 168, 255, 0.3);
}

/* Coming Soon Card */
.app-card.coming-soon {
  opacity: 0.8;
  border-style: dashed;
}

.app-icon.placeholder {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* Development Services Section */
.development-services {
  margin-top: 80px;
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
}

.development-services h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.development-services > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.cta-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

/* Pricing Comparison Page Styles */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-intro h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-section {
  margin-bottom: 60px;
}

.pricing-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.comparison-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: center;
}

.price-comparison {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.our-price,
.industry-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
}

.our-price {
  background: rgba(46, 168, 255, 0.1);
  border: 1px solid var(--accent-blue);
}

.industry-price {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
}

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

.price-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.our-price .price-value {
  color: var(--accent-soft);
}

.savings {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

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

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.feature-name {
  font-size: 16px;
  color: var(--text-primary);
}

.feature-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-soft);
}

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

.service-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 25px;
  backdrop-filter: blur(10px);
}

.service-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-item strong {
  color: var(--accent-soft);
  font-weight: 700;
}

/* Accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

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

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success/Error states */
.success {
  color: #4ade80;
}

.error {
  color: #f87171;
}
