/* WhizServe Landing Pages - Shared Styles */
/* Modern, mobile-first, conversion-optimized design */

:root {
  /* Colors - Matching Flutter App Theme */
  --primary-color: #1976D2;
  --primary-dark: #1565C0;
  --secondary-color: #673AB7;
  --danger-color: #D32F2F;
  --warning-color: #FB8C00;
  --text-primary: #212121;
  --text-secondary: #757575;
  --background: #FFFFFF;
  --background-gray: #F5F5F5;
  --border-color: #E0E0E0;

  /* Emergency/Urgent colors */
  --urgent-bg: #fee2e2;
  --urgent-border: #fecaca;
  --urgent-text: #991b1b;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* Header - Matching Flutter App */
.header {
  background: var(--background);
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 max(16px, calc((100vw - 1200px) / 2));
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-color);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.nav a:hover:not(.cta-phone) {
  background: rgba(25, 118, 210, 0.08);
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--background-gray);
}

/* Hide non-CTA nav links on mobile, show hamburger */
@media (max-width: 968px) {
  .nav a:not(.cta-phone) {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav {
    gap: 0.5rem;
  }

  .cta-phone {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

.cta-phone {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

@media (max-width: 768px) {
  .cta-phone {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-emergency {
  background: linear-gradient(135deg, #D32F2F 0%, #C62828 100%);
}

.hero-automation {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  font-size: 2rem;
}

.feature-text {
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-features {
    gap: var(--spacing-md);
  }
}

/* Main Content */
.main-content {
  padding: var(--spacing-xl) 0;
  background: var(--background-gray);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .form-section {
    order: -1; /* Form appears first on mobile */
  }
}

/* Benefits Section */
.benefits-section h2 {
  font-size: 1.875rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
  display: flex;
  gap: var(--spacing-md);
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.benefit-content ul {
  list-style: none;
  padding: 0;
  color: var(--text-secondary);
}

.benefit-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefit-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.platform-list {
  list-style: none !important;
}

.platform-list li {
  padding-left: 0 !important;
}

.platform-list li::before {
  content: "▸" !important;
  color: var(--primary-color) !important;
}

.equipment-types {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-md);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
  margin-top: var(--spacing-md);
}

.equipment-types h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.equipment-types ul {
  list-style: none;
  padding: 0;
}

.equipment-types ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.equipment-types ul li::before {
  content: "⚙️";
  position: absolute;
  left: 0;
}

/* Form Section */
.form-card {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #E0E0E0;
  position: sticky;
  top: 90px;
}

.form-card.urgent {
  border: 3px solid var(--danger-color);
  box-shadow: 0 0 0 4px var(--urgent-bg), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.urgent-badge {
  display: inline-block;
  background: var(--danger-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
}

/* Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 24px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  width: 100%;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-sm);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: var(--spacing-lg);
  background: #E8F5E9;
  border: 1px solid #81C784;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.success-message h3 {
  color: #2E7D32;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.success-message p {
  color: #2E7D32;
  margin-bottom: 0.5rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
}

.badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* Footer - Matching Flutter App */
.footer {
  background: #1E3A8A;
  color: #E5E7EB;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-section a:hover {
  color: #90CAF9;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: background 0.2s;
  font-size: 0.875rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .form-card {
    position: static;
  }

  .hero {
    padding: var(--spacing-lg) 0;
  }

  .main-content {
    padding: var(--spacing-lg) 0;
  }
}

/* Loading State */
.btn-submit:disabled::after {
  content: "...";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}

/* Download App CTA Section */
.download-app-cta {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  padding: 3rem 0;
  margin: 3rem 0 0;
  color: white;
  text-align: center;
}

.download-app-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.download-app-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.download-buttons a {
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 0;
}

.download-buttons a:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.download-buttons img {
  height: 50px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .download-app-cta h2 {
    font-size: 1.5rem;
  }

  .download-app-cta p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .download-buttons img {
    max-width: 200px;
    height: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .form-card,
  .download-app-cta {
    display: none;
  }
}

/* ── ROI Calculator Styles ─────────────────────────────────────────────────── */
.roi-calc-block {
  margin-bottom: 1.25rem;
}

.roi-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  cursor: default;
}

.roi-label strong {
  color: var(--primary-color);
  font-size: 1rem;
  min-width: 4rem;
  text-align: right;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(25, 118, 210, 0.4);
  transition: transform 0.15s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(25, 118, 210, 0.4);
}

.roi-results {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border: 2px solid #a5d6a7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.roi-results h3 {
  font-size: 1rem;
  color: #2e7d32;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roi-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.roi-result-item {
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.roi-result-total {
  grid-column: 1 / -1;
  background: #2e7d32;
}

.roi-result-total .roi-result-label,
.roi-result-total .roi-result-value {
  color: #fff;
}

.roi-result-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.roi-result-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.roi-result-total .roi-result-value {
  font-size: 1.6rem;
}

.roi-disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .roi-results-grid {
    grid-template-columns: 1fr;
  }
  .roi-result-total {
    grid-column: auto;
  }
}
/* ── End ROI Calculator Styles ─────────────────────────────────────────────── */

/* ── Case Study Cards ────────────────────────────────────────────────────────── */
.case-studies-section {
  padding: var(--spacing-xl) 0;
  background: var(--background-gray);
  margin: var(--spacing-xl) 0 0;
}

.case-studies-section h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.case-studies-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--spacing-lg);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.case-study-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e8eaf0;
  display: block;
}

.case-study-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.case-study-body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  background: #e3f2fd;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: var(--spacing-xs);
}

.case-study-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.case-study-quote {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 0.75rem;
  margin: 0.75rem 0;
  flex: 1;
}

.case-study-attribution {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.case-study-results {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.result-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 20px;
  padding: 3px 10px;
}
/* ── End Case Study Cards ────────────────────────────────────────────────────── */

/* ── Testimonials Section ────────────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--background-gray);
  border-radius: 12px;
  padding: var(--spacing-md);
  position: relative;
  border-left: 4px solid var(--primary-color);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
/* ── End Testimonials Section ────────────────────────────────────────────────── */

/* ── Process Transparency Section ───────────────────────────────────────────── */
.process-section {
  padding: var(--spacing-xl) 0;
  background: #f0f7ff;
}

.process-section h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #673AB7);
  z-index: 0;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  .process-steps::before {
    display: none;
  }
}

.process-step {
  text-align: center;
  padding: 0 var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.35);
}

.process-step h3 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-step .step-timing {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-color);
  background: #e3f2fd;
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: var(--spacing-sm);
  }
  .process-step-number {
    flex-shrink: 0;
    margin: 0;
  }
}
/* ── End Process Transparency Section ───────────────────────────────────────── */

/* ── Warranty Section ────────────────────────────────────────────────────────── */
.warranty-strip {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  color: white;
  padding: var(--spacing-lg) 0;
}

.warranty-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.warranty-items {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.warranty-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.warranty-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warranty-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.warranty-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.warranty-item-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.warranty-cta-btn {
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.warranty-cta-btn:hover {
  background: #f0f7ff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .warranty-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .warranty-items {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}
/* ── End Warranty Section ────────────────────────────────────────────────────── */

/* ── Phone CTA Strip ─────────────────────────────────────────────────────────── */
.phone-cta-strip {
  background: var(--background-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
}

.phone-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.phone-cta-strip p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.phone-cta-strip strong {
  color: var(--text-primary);
}

.phone-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.phone-cta-link:hover {
  background: var(--primary-dark);
}

.phone-cta-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ── End Phone CTA Strip ─────────────────────────────────────────────────────── */
