:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --bg-light: #f0f9ff;
  --bg-card: #f8fafc;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

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

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

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

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

.header .nav .btn-primary:hover {
  color: var(--white);
}

.lang-switcher {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.lang-btn {
  padding: 6px 12px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: 0;
}

.lang-btn:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.lang-btn:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

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

.lang-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

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

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

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.hero-benefits svg {
  flex-shrink: 0;
}

.hero-image-placeholder {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder svg,
.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Products catalog */
.products-catalog {
  background: var(--bg-card);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.products-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 24px;
  grid-column: 1 / -1;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), #e0f2fe);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.product-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Pain Points */
.pain-points {
  background: var(--white);
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pain-point-item {
  text-align: center;
}

.pain-point-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.pain-point-icon svg {
  width: 36px;
  height: 36px;
}

.pain-point-item p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Solution */
.solution {
  background: var(--bg-light);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--primary);
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Trusted */
.trusted {
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.stat-stars {
  color: #fbbf24;
  font-size: 1rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Cities */
.cities {
  background: var(--white);
}

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

.city-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}

.city-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.city-btn:hover,
.city-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cities-note {
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
}

.cities-note:empty,
.cities-note[hidden] {
  display: none;
}

/* Pricing */
.pricing {
  background: var(--bg-light);
}

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

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

.price-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-service {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Booking Steps */
.booking-steps {
  background: var(--white);
}

.booking-steps .container {
  text-align: center;
}

.steps-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 32px 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ */
.faq {
  background: var(--bg-light);
}

.accordion {
  max-width: 700px;
  margin: 32px auto 0;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
}

.accordion-item.active .accordion-trigger::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.booking-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px 32px 32px;
  --booking-accent: var(--primary);
  --booking-accent-hover: var(--primary-dark);
  --booking-accent-soft: rgba(37, 99, 235, 0.12);
  --booking-accent-glow: rgba(37, 99, 235, 0.35);
}

.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-modal-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.booking-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.45;
  max-width: 420px;
}

.booking-wizard {
  min-height: 120px;
}

.booking-step--hidden {
  display: none !important;
}

.booking-req {
  color: #dc2626;
  text-decoration: none;
  font-weight: 700;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

@media (max-width: 540px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

.booking-form-grid .booking-field--full {
  grid-column: 1 / -1;
}

.booking-form-grid--contact .booking-field--full {
  grid-column: 1 / -1;
}

.booking-wilayah-heading {
  margin-bottom: 6px;
  font-weight: 600;
}

.booking-field-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 16px;
}

.booking-service-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 8px;
}

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.booking-service-row .booking-service-desc {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.booking-remove-service {
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.booking-remove-service:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.booking-add-service {
  margin-top: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px dashed var(--border);
  background: #f8fafc;
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.booking-add-service:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.booking-wilayah-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-wilayah-section > .booking-wilayah-grid .booking-field {
  margin-bottom: 0;
}

.booking-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius);
}

.booking-modal-close:hover {
  background: var(--bg-card);
  color: var(--text-dark);
}

.booking-field {
  margin-bottom: 4px;
}

.booking-step .booking-field:last-child {
  margin-bottom: 0;
}

.booking-field > label,
.booking-label-with-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.booking-label-with-icon svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

.booking-modal-box .booking-field input,
.booking-modal-box .booking-field select,
.booking-modal-box .booking-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}

.booking-modal-box .booking-field input:focus,
.booking-modal-box .booking-field select:focus,
.booking-modal-box .booking-textarea:focus {
  outline: none;
  border-color: var(--booking-accent);
}

.booking-textarea {
  resize: vertical;
  min-height: 88px;
}

.booking-modal-box .booking-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Inline calendar */
.booking-calendar {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: var(--bg-card);
}

.booking-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.booking-cal-month {
  font-weight: 700;
  font-size: 0.95rem;
}

.booking-cal-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.booking-cal-nav:hover {
  background: var(--bg-light);
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.booking-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-cal-day {
  aspect-ratio: 1;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  cursor: default;
  padding: 0;
  font-family: inherit;
}

.booking-cal-day--btn {
  cursor: pointer;
}

.booking-cal-day--btn:hover:not(.booking-cal-day--selected) {
  background: var(--booking-accent-soft);
}

.booking-cal-day--muted {
  color: #cbd5e1;
  font-size: 0.8rem;
}

.booking-cal-day--disabled {
  color: #e2e8f0;
}

.booking-cal-day--selected {
  background: var(--booking-accent) !important;
  color: var(--white) !important;
  font-weight: 700;
}

.booking-time-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (max-width: 480px) {
  .booking-time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking-time-chip {
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-dark);
}

.booking-time-chip:hover {
  border-color: var(--booking-accent);
}

.booking-time-chip--active {
  border-color: var(--booking-accent);
  background: var(--booking-accent-soft);
  color: var(--booking-accent);
}

.booking-wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.booking-wizard-footer:has(#booking-btn-back[hidden]) {
  justify-content: flex-end;
}

.booking-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.booking-btn-back:hover {
  background: #e2e8f0;
}

.booking-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  background: var(--booking-accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px var(--booking-accent-glow);
}

.booking-btn-next:hover {
  background: var(--booking-accent-hover);
}

.booking-chevron {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.95;
}

/* CTA Block */
.cta-block {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
}

.cta-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .city-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
