/* =============================================
   SimpliTechPro — Main Stylesheet
   Colors: Navy #1a2332 | Orange #E8641A
   Font: Inter (Google Fonts)
============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a2332;
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #E8641A;
  color: #ffffff;
  border-color: #E8641A;
}

.btn-primary:hover {
  background-color: #cf5715;
  border-color: #cf5715;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 26, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-nav {
  background-color: #E8641A;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
}

.btn-nav:hover {
  background-color: #cf5715;
  transform: translateY(-1px);
}

.btn-white {
  background-color: #ffffff;
  color: #E8641A;
  border-color: #ffffff;
  font-weight: 700;
}

.btn-white:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1a2332;
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
  overflow: visible;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo span {
  color: #E8641A;
}





.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #E8641A;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a2332 0%, #243447 60%, #1a2332 100%);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  background-color: rgba(232, 100, 26, 0.15);
  color: #E8641A;
  border: 1px solid rgba(232, 100, 26, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.accent {
  color: #E8641A;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Hero Graphic Card */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(10px);
}

.graphic-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.graphic-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.graphic-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.g-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.tag {
  background-color: rgba(232, 100, 26, 0.2);
  color: #E8641A;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── SERVICE AREAS STRIP ── */
.areas {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.areas-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.areas-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.areas-list span {
  font-size: 14px;
  font-weight: 600;
  color: #1a2332;
}

/* ── SECTION SHARED STYLES ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  color: #E8641A;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}



.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: unset;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 35, 50, 0.12);
  border-color: transparent;
}

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

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

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: #E8641A;
  transition: gap 0.2s;
}

.card-link:hover {
  color: #cf5715;
}

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

/* ── WHY US ── */
.why {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a2332;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-graphic {
    order: 1;
  }

  .graphic-card {
    max-width: 280px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ==================== SERVICES PAGE ==================== */
.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #243447 60%, #1a2332 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #ffffff; line-height: 1.2; margin: 16px 0 16px; letter-spacing: -1px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.services-detail { padding: 80px 0; }
.svc-block { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: flex-start; padding: 48px 0; }
.svc-block-icon { font-size: 52px; line-height: 1; padding-top: 6px; }
.svc-block-content h2 { font-size: 28px; font-weight: 800; color: #1a2332; margin-bottom: 14px; letter-spacing: -0.5px; }
.svc-block-content > p { font-size: 16px; color: #4b5563; line-height: 1.8; margin-bottom: 28px; max-width: 680px; }
.svc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; background: #f8f9fa; border-radius: 14px; padding: 24px 28px; }
.svc-meta h4 { font-size: 12px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { font-size: 14px; color: #374151; padding-left: 20px; position: relative; line-height: 1.5; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: #E8641A; font-weight: 700; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tags span { background: #ffffff; border: 1px solid #e5e7eb; color: #374151; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.svc-divider { height: 1px; background: #e5e7eb; width: 100%; }

@media (max-width: 768px) {
  .svc-block { grid-template-columns: 1fr; gap: 16px; }
  .svc-block-icon { font-size: 40px; }
  .svc-meta { grid-template-columns: 1fr; gap: 20px; }
}

/* ==================== SERVICES PAGE ==================== */
.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #243447 60%, #1a2332 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #ffffff; line-height: 1.2; margin: 16px 0 16px; letter-spacing: -1px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.services-detail { padding: 80px 0; }
.svc-block { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: flex-start; padding: 48px 0; }
.svc-block-icon { font-size: 52px; line-height: 1; padding-top: 6px; }
.svc-block-content h2 { font-size: 28px; font-weight: 800; color: #1a2332; margin-bottom: 14px; letter-spacing: -0.5px; }
.svc-block-content > p { font-size: 16px; color: #4b5563; line-height: 1.8; margin-bottom: 28px; max-width: 680px; }
.svc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; background: #f8f9fa; border-radius: 14px; padding: 24px 28px; }
.svc-meta h4 { font-size: 12px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { font-size: 14px; color: #374151; padding-left: 20px; position: relative; line-height: 1.5; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: #E8641A; font-weight: 700; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tags span { background: #ffffff; border: 1px solid #e5e7eb; color: #374151; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.svc-divider { height: 1px; background: #e5e7eb; width: 100%; }

@media (max-width: 768px) {
  .svc-block { grid-template-columns: 1fr; gap: 16px; }
  .svc-block-icon { font-size: 40px; }
  .svc-meta { grid-template-columns: 1fr; gap: 20px; }
}
/* ==================== ABOUT PAGE ==================== */
.about-story {
  padding: 80px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #1a2332;
  margin: 12px 0 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #E8641A;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.about-who {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-who-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-who-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #1a2332;
  margin: 12px 0 20px;
  letter-spacing: -0.5px;
}

.about-who-text p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}

.about-who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,35,50,0.08);
}

.who-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.who-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.about-values {
  padding: 80px 0;
  background: #ffffff;
}

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

.value-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,35,50,0.08);
}

.value-num {
  font-size: 32px;
  font-weight: 800;
  color: #E8641A;
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-who-cards {
    grid-template-columns: 1fr;
  }

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

/* ==================== CONTACT / QUOTE WIZARD ==================== */
.quote-section {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 100px 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quote-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 48px;
  width: 100%;
  max-width: 680px;
  margin: 0 24px;
  box-shadow: 0 8px 40px rgba(26,35,50,0.08);
}

/* Progress bar */
.progress-bar-wrap {
  height: 4px;
  background: #e5e7eb;
  border-radius: 100px;
  margin-bottom: 40px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #E8641A, #ff8c42);
  border-radius: 100px;
  width: 10%;
  transition: width 0.5s ease;
}

/* Steps */
.quote-step { display: none; }
.quote-step.active { display: block; }

/* Step header */
.step-header { margin-bottom: 32px; }
.step-tag {
  display: inline-block;
  background: rgba(232,100,26,0.1);
  color: #E8641A;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-header h1 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.step-header h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.step-header p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Form elements */
.quote-form { display: flex; flex-direction: column; gap: 20px; }

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

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #1a2332;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #E8641A;
}

.required { color: #E8641A; }
.optional { color: #9ca3af; font-size: 12px; font-weight: 400; }

/* Contact method */
.contact-method-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.method-option input[type="radio"] { display: none; }
.method-option input[type="checkbox"] { display: none; }

.method-option span {
  background: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.method-option input:checked + span {
  background: rgba(232,100,26,0.08);
  border-color: #E8641A;
  color: #E8641A;
}

/* Full width button */
.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}

/* Skip link */
.skip-link {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 12px;
  transition: color 0.2s;
}

.skip-link:hover { color: #E8641A; }

/* Back button */
.step-nav { margin-top: 16px; }
.btn-back {
  background: none;
  border: none;
  font-size: 14px;
  color: #9ca3af;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
  transition: color 0.2s;
}
.btn-back:hover { color: #1a2332; }

/* Form error */
.form-error {
  font-size: 13px;
  color: #dc2626;
  min-height: 18px;
}

/* Option cards (step 2) */
.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.option-card {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.option-card:hover {
  border-color: #E8641A;
  background: rgba(232,100,26,0.03);
}

.option-card.selected {
  border-color: #E8641A;
  background: rgba(232,100,26,0.06);
}

.option-icon { font-size: 36px; margin-bottom: 12px; }

.option-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
}

.option-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Quick message box */
.quick-message-box {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

/* Service selection grid */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-select-card {
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.service-select-card:hover {
  border-color: #E8641A;
}

.service-select-card.selected {
  border-color: #E8641A;
  background: rgba(232,100,26,0.05);
}

.ss-icon { font-size: 28px; margin-bottom: 8px; }

.service-select-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
}

.service-select-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

.ss-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: #E8641A;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.service-select-card.selected .ss-check { opacity: 1; }

/* Pill selectors */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.pill:hover { border-color: #E8641A; color: #E8641A; }

.pill.active {
  background: rgba(232,100,26,0.08);
  border-color: #E8641A;
  color: #E8641A;
}

/* Checkbox group */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.check-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #E8641A;
  cursor: pointer;
  flex-shrink: 0;
}

/* Thank you page */
.thankyou-wrap {
  text-align: center;
  padding: 20px 0;
}

.thankyou-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.thankyou-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 16px;
}

.thankyou-main {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-box {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.thankyou-box p {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

/* Contact page mobile */
@media (max-width: 768px) {
  .quote-wrap { padding: 32px 24px; margin: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
}

/* ── Upload box ── */
.upload-recommended {
  background: rgba(232,100,26,0.1);
  color: #E8641A;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-hint {
  font-size: 12px;
  color: #9ca3af;
  margin-top: -4px;
  line-height: 1.5;
}

.upload-box {
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #f8f9fa;
}

.upload-box:hover {
  border-color: #E8641A;
  background: rgba(232,100,26,0.03);
}

.upload-icon { font-size: 28px; margin-bottom: 8px; }

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}

.upload-sub { font-size: 12px; color: #9ca3af; }

.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.file-item {
  font-size: 13px;
  color: #374151;
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: fixed;
  bottom: 36px;
  right: 96px;
  background: #1a2332;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 9998;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a2332;
}

.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-tooltip:hover {
  opacity: 1;
  transform: translateX(0);
}

/* ── FOOTER ── */
.footer {
  background-color: #1a2332;
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  max-width: 220px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-areas ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #E8641A;
}

.footer-areas li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #E8641A;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #E8641A 0%, #cf5715 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* ── FOOTER MOBILE ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── MOBILE STICKY QUOTE BAR ── */
.mobile-quote-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2332;
  padding: 12px 20px;
  z-index: 9990;
  border-top: 2px solid #E8641A;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-quote-bar a {
  background: #E8641A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
  line-height: 1.2;
}

.mobile-quote-bar-phone {
  background: #E8641A;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  flex: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9995;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-quote-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 80px;
  }
}

/* ==================== BUSINESS SERVICES PAGE ==================== */

/* ── HERO BUTTONS (inner page) ── */
.biz-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ── PROBLEM / SOLUTION ── */
.problem-solution {
  padding: 100px 0;
  background: #ffffff;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ps-col {
  border-radius: 16px;
  padding: 36px 32px;
}

.ps-col-problem {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
}

.ps-col-solution {
  background: rgba(232, 100, 26, 0.05);
  border: 1px solid rgba(232, 100, 26, 0.2);
}

.ps-col-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.ps-col-problem .ps-col-heading { color: #dc2626; }
.ps-col-solution .ps-col-heading { color: #E8641A; }

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

.ps-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.ps-icon-x {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.ps-icon-check {
  background: rgba(232, 100, 26, 0.12);
  color: #E8641A;
}

/* ── PACKAGES SECTION ── */
.packages-section {
  padding: 100px 0;
  background: #0d1520;
}

.packages-section .section-header h2 { color: #ffffff; }
.packages-section .section-header p  { color: rgba(255,255,255,0.5); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pkg-card {
  background: #152030;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
  border-color: rgba(232,100,26,0.25);
}

.pkg-card-popular {
  border: 2px solid #E8641A;
  box-shadow: 0 12px 40px rgba(232, 100, 26, 0.15);
}

.pkg-card-popular:hover {
  box-shadow: 0 24px 60px rgba(232, 100, 26, 0.22);
}

.pkg-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #E8641A;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.pkg-header {
  padding: 32px 28px 24px;
}

.pkg-header-navy { background: #1a2332; }
.pkg-header-orange { background: #E8641A; }

.pkg-tier-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pkg-name {
  font-size: 32px !important;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 6px;
  line-height: 1.1;
}

.pkg-price {
  font-size: 22px !important;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.pkg-deposit {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.6;
}

.pkg-price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.pkg-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 14px;
}

.pkg-body {
  padding: 24px 28px 32px;
}

.pkg-best-for {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pkg-best-for-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pkg-features-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pkg-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.pkg-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(232, 100, 26, 0.1);
  color: #E8641A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: #E8641A;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-btn:hover {
  background: #cf5715;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 26, 0.35);
}

/* ── COLLAPSIBLE TOGGLE & DRAWER ── */
.pkg-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #E8641A;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.pkg-toggle:hover { color: #cf5715; }

.pkg-toggle-arrow {
  display: inline-block;
  font-size: 11px;
  transition: transform 0.35s ease;
}

.pkg-toggle.open .pkg-toggle-arrow {
  transform: rotate(180deg);
}

.pkg-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.pkg-drawer.open {
  max-height: 1200px;
}

.pkg-drawer-inner .pkg-features {
  margin-bottom: 0;
}

.pkg-body .pkg-btn {
  margin-top: 20px;
}

/* ── COMMERCIAL TECH ── */
.commercial-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.comm-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8641A, #ff8c42);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.comm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 35, 50, 0.12);
  border-color: transparent;
}

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

.comm-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.comm-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.comm-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

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

/* ── BUSINESS SERVICES RESPONSIVE ── */
@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

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

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

  .biz-hero-btns .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ── QUESTIONNAIRE MODAL OVERLAY ── */
.qw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.75);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.qw-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.qw-modal {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  padding: 48px;
  position: relative;
  box-shadow: 0 24px 80px rgba(26, 35, 50, 0.35);
  margin: auto 0;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.qw-overlay.open .qw-modal {
  transform: translateY(0);
}

.qw-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.qw-close:hover {
  background: #e5e7eb;
  color: #1a2332;
}

.qw-package-badge {
  display: inline-block;
  background: #E8641A;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.qw-progress-wrap {
  height: 4px;
  background: #e5e7eb;
  border-radius: 100px;
  margin-bottom: 32px;
  overflow: hidden;
}

.qw-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #E8641A, #ff8c42);
  border-radius: 100px;
  width: 25%;
  transition: width 0.5s ease;
}

.qw-step { display: none; }

.qw-step.active {
  display: block;
  animation: qwFadeIn 0.22s ease forwards;
}

@keyframes qwFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.qw-readonly {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  cursor: default !important;
}

.qw-conditional {
  display: none;
  margin-top: 12px;
}

.qw-conditional.visible { display: block; }

/* ── Plain-language hint (?) button + popup ── */
.qw-hint-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  margin-left: 3px;
  border: none;
  border-radius: 50%;
  background: #E8641A;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, transform 0.15s;
}
.qw-hint-btn:hover { background: #cf560f; transform: scale(1.1); }

.qw-hint-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.qw-hint-overlay.open { opacity: 1; pointer-events: all; }

.qw-hint-pop {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 28px 26px 26px;
  position: relative;
  box-shadow: 0 20px 60px rgba(26, 35, 50, 0.35);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}
.qw-hint-overlay.open .qw-hint-pop { transform: translateY(0); }

.qw-hint-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.qw-hint-close:hover { background: #e5e7eb; color: #1a2332; }

.qw-hint-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 30px 10px 0;
}
.qw-hint-body {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.qw-summary-box {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.qw-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.qw-summary-label {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-width: 110px;
  padding-top: 2px;
}

.qw-summary-value {
  font-size: 14px;
  color: #1a2332;
  font-weight: 500;
  text-align: right;
}

.qw-confirm-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.qw-btn-secondary {
  background: #f8f9fa;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.qw-btn-secondary:hover {
  border-color: #1a2332;
  color: #1a2332;
}

@media (max-width: 768px) {
  .qw-modal {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .qw-overlay {
    padding: 12px;
  }
}

/* ── TABLER ICONS ── */
.ti {
  font-size: 28px;
  color: #E8641A;
  display: block;
  margin-bottom: 12px;
}

.service-icon .ti {
  font-size: 36px;
}

.svc-block-icon .ti {
  font-size: 48px;
}

.why-icon .ti {
  font-size: 32px;
}

.why-us-card-icon .ti {
  font-size: 32px;
}

/* ── HERO BACKGROUND IMAGES ── */
.hero-business {
  background-image: url('images/hero-workspace.png');
  background-size: cover;
  background-position: center top;
  position: relative;
}

.hero-business::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.65);
  z-index: 0;
}

.hero-business .container,
.hero-business .page-hero-inner {
  position: relative;
  z-index: 1;
}

/* ── ALTERNATING SECTION BACKGROUNDS ── */
.alt-bg {
  background-color: #f8f9fb;
}

/* ── TERMS & CONDITIONS ── */
.tc-box {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  height: 300px;
  overflow-y: auto;
  padding: 24px;
  margin-bottom: 16px;
  background: #f8f9fa;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}

.tc-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
}

.tc-version {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.tc-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
  margin: 16px 0 6px;
}

.tc-scroll-note {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}

.tc-accept-wrap {
  margin-bottom: 20px;
}

.tc-checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.tc-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #E8641A;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding: 80px 0 60px;
  background: #f9fafb;
  min-height: 80vh;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f3f4f6;
}
.legal-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}
.legal-intro {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2332;
  margin: 16px 0 8px;
}
.legal-section p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-section ul {
  margin: 8px 0 12px 20px;
  list-style: disc;
}
.legal-section ul li {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-section a {
  color: #E8641A;
  text-decoration: underline;
}
.legal-footer-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .legal-content {
    padding: 28px 20px;
    border-radius: 0;
  }
  .legal-header h1 {
    font-size: 1.5rem;
  }
}
