@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0D1B33;      /* Replaces Snabbit Pink */
  --secondary: #fdb73e;    /* Yellow for Buttons */
  --white: #ffffff;
  --bg-light: #F7F9FC;
  --text-dark: #111827;
  --text-gray: #6B7280;
  --border-light: #E5E7EB;
  
  --font-main: 'Inter', sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
ul { list-style: none; }

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

/* Typography */
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 {
  font-family: 'Inter', sans-serif;
  color: var(--primary); /* #0D1B33 - exact hero section heading color */
  font-size: 2.25rem;
  font-weight: 800; /* Extra bold matching hero heading */
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h3 { font-size: 1.5rem; font-weight: 700; }
.highlight { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-yellow {
  background-color: var(--secondary);
  color: var(--primary);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-navy {
  background-color: var(--primary);
  color: var(--white);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--primary) 0%, #1e3159 100%);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.pill i {
  color: var(--white) !important;
}
.pill-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid rgba(13, 27, 51, 0.2);
}

/* Header */
header {
  padding: 20px 0;
  background: var(--white);
  position: relative;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.btn { color: var(--white); }
.nav-links a.btn:hover { color: var(--white); }

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff7e6 0%, var(--white) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "badge image"
    "heading image"
    "description image"
    "cta image"
    "pills image";
  gap: 20px 40px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-trust-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  align-self: start;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.hero-heading {
  grid-area: heading;
  font-size: 3rem;
  line-height: 1.1;
}
.hero-desc {
  grid-area: description;
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 480px;
}
.hero-cta-wrapper {
  grid-area: cta;
}
.btn-hero {
  width: auto;
  font-size: 1.1rem;
  padding: 16px 32px;
}
.hero-pills-container {
  grid-area: pills;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.hero-pills-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: slide-marquee 15s linear infinite;
}
@keyframes slide-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 6px)); }
}
.hero-right {
  grid-area: image;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.floating-card.top-right { top: 24px; right: 24px; }
.floating-card.bottom-left { bottom: 40px; left: -20px; }
.floating-card h5 { font-size: 0.9rem; font-weight: 700; margin: 0; }
.floating-card p { font-size: 0.75rem; color: var(--text-gray); margin: 0; }

/* Services Section */
.services-section {
  margin: 60px auto;
  max-width: 1200px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.services-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.services-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(13, 27, 51, 0.9) 0%, rgba(13, 27, 51, 0.5) 55%, rgba(13, 27, 51, 0.1) 100%);
}
.services-content {
  position: relative;
  z-index: 3;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.services-tag {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  opacity: 0.95;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.services-header-left h2 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  max-width: 250px;
  letter-spacing: -0.02em;
}
.services-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: #0D1B33;
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none;
}
.services-view-all:hover {
  transform: translateY(-2px);
  background: #ffffff;
}
.services-view-all i {
  color: #0D1B33;
  font-size: 0.9rem;
}

.services-carousel {
  margin-top: auto;
  overflow: hidden;
  padding-bottom: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.services-carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.services-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.service-card {
  min-width: 130px;
  width: 130px;
  height: 130px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
  padding: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.service-card-title {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 75px;
}
.service-card-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #0D1B33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* 3 Steps Section - Sequential Pair Layout */
.steps-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FAF9F6;
}
.steps-flow-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.step-card-pair .step-item {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card-pair .phone-card {
  margin-top: 12px;
}
/* Phone Shell Base */
.phone-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #EAEAEA;
}
/* Outer Side Cards */
.phone-side {
  width: 240px;
  padding: 16px;
  opacity: 0.98;
}
/* Center Card */
.phone-center {
  width: 250px;
  padding: 16px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 12px 35px rgba(13, 27, 51, 0.12);
  z-index: 2;
}
.phone-header {
  color: var(--primary);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 18px;
}
.phone-side .phone-header { font-size: 18px; }
.phone-center .phone-header { font-size: 20px; }

/* UI Content Mockups */
.ui-mockup {
  width: 100%;
  flex: 1;
  background: #FAFAFA;
  border-radius: 16px;
  border: 1px solid #F0F0F0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.field-label {
  font-size: 11px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 4px;
}
.field-input {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  height: 28px;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 12px;
  color: #333;
}
.btn-submit {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-top: auto;
}
/* Assessment Grid */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  font-size: 11px;
  font-weight: 600;
  color: #333;
}
.check-icon {
  width: 16px;
  height: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
/* Proposal Card */
.quote-card {
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.quote-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 6px 0;
}
.badge-fast {
  display: inline-block;
  background: rgba(13, 27, 51, 0.1);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  margin-top: 4px;
}
/* Steps Section Navigation */
.steps-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 850px;
  margin: 0 auto;
}
.steps-line {
  position: absolute;
  top: 15px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-color: var(--primary);
  opacity: 0.25;
  z-index: 1;
}
.step-item {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(13, 27, 51, 0.18);
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: #334155;
  max-width: 280px;
}
/* Quote Section */
.quote-section {
  padding: 80px 0;
  background-color: var(--primary);
}
.quote-form-container {
  background-color: var(--white);
  border-radius: 24px;
  padding: 60px 48px;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.quote-form-container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.form-control::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}
.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 27, 51, 0.1);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230D1B33%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 12px auto;
  cursor: pointer;
}
select.form-control option, select.form-control optgroup {
  background: var(--white);
  color: var(--text-dark);
}
.quote-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
  letter-spacing: 0.5px;
}
.quote-submit:hover {
  box-shadow: 0 6px 16px rgba(240, 185, 11, 0.4);
}
.quote-footer {
  text-align: center;
}
.quote-submit {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.quote-disclaimer {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Trust Stats Section */
.trust-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FFFFFF;
}
.trust-section h2 { 
  margin-bottom: 48px !important; 
}
.trust-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
.trust-main {
  flex: 0 0 320px;
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
}
.trust-main h3 { font-size: 1.75rem; margin-bottom: 12px; }
.trust-main p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 32px; }
.trust-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border-radius: 12px;
}
.stat-box h4 { 
  font-size: 2.2rem; 
  margin-bottom: 6px; 
  line-height: 1;
  text-align: center;
}
.stat-box p { font-size: 0.75rem; margin: 0; opacity: 0.8; }

.trust-features {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.trust-feature-card {
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(13, 27, 51, 0.03);
}
.tf-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tf-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 27, 51, 0.06);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-feature-card h4 { 
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; 
  font-weight: 700;
  color: var(--primary);
  margin: 0; 
  line-height: 1.25;
}
.trust-feature-card p { 
  font-size: 0.875rem; 
  color: var(--text-gray); 
  line-height: 1.55;
  margin: 0;
}

/* Locations/Industries */
.locations-section {
  padding: 100px 0;
  text-align: center;
  background-color: #F4F7FA;
}
.locations-section h2 { margin-bottom: 8px; }
.locations-section .container > p:last-of-type { color: var(--text-gray); margin-bottom: 40px; font-size: 1rem; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 20px;
}
.location-card {
    color: white;
    background: #17284a;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid var(--border-light);
    text-align: left;
}
.location-card h5 { font-size: 1rem; color: #ffffff; margin-bottom: 4px; }
.location-card p {
    font-size: 0.75rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.loc-img-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}
.loc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-overlay {
  position: absolute;
  inset: 0;
  background-color: #1e3a6e;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

/* Reviews */
.reviews-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FFFDF8;
}
.reviews-section > h2 { margin-bottom: 8px; }
.rating-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.rating-large .stars { font-size: 1.5rem; color: var(--primary); }
.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  text-align: left;
}
.review-card {
  min-width: 320px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
}
.review-card .stars { color: var(--primary); margin-bottom: 16px; font-size: 1.1rem; }
.review-card p { font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.reviewer h5 { font-size: 0.9rem; margin: 0; }
.reviewer span { font-size: 0.8rem; color: var(--text-gray); }

/* CTA Banner */
.cta-banner {
  padding: 80px 16px;
  background: #f4f7fa;
}
.cta-box {
  background-color: var(--primary);
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
                    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  color: var(--white);
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(13, 27, 51, 0.15);
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #FFD166;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 209, 102, 0.3);
}
.cta-box h2 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 24px;
}
.cta-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-perk-item i {
  color: #4ADE80;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-cta-main {
  padding: 15px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
  transition: all 0.3s ease;
}
.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 209, 102, 0.45);
}
.btn-whatsapp {
  color: var(--white);
  font-weight: 600;
  background: transparent;
  padding: 0;
}
.btn-whatsapp:hover {
  text-decoration: underline;
  transform: none;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  text-align: center;
  background-color: #FFFFFF;
}
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 20px;
}
.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i { color: var(--primary); }
.faq-answer {
  display: none;
  margin-top: 12px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Bottom Banner */
.bottom-banner {
  background: var(--bg-light);
  padding: 80px 0 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.bottom-banner-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.bottom-banner h2 { font-size: 2.5rem; margin-bottom: 16px; }
.bottom-banner p { color: var(--text-gray); margin-bottom: 32px; }
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ill-left, .ill-right {
  position: absolute;
  bottom: 0;
  width: 250px;
  z-index: 1;
}
.ill-left { left: 5%; }
.ill-right { right: 5%; }

/* Footer */
footer {
    background: linear-gradient(180deg, #fff7e6 0%, var(--white) 100%);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border-light);
    overflow: hidden;
    max-width: 100%;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer-col { max-width: 300px; }
.footer-col h5 { font-size: 0.9rem; color: var(--primary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--primary); font-size: 0.95rem; font-weight: 500; }
.footer-col ul a:hover { color: #000; text-decoration: underline; }
.social-links { display: flex; gap: 16px; margin-top: 24px; font-size: 1.25rem; color: var(--primary); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  background: var(--primary);
  color: var(--white);
  margin: 0 -24px -24px; /* Stretch to edge */
  padding: 16px 24px;
  font-size: 0.8rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-links a { color: var(--white); margin-left: 24px; opacity: 0.8;}

/* Responsive Adjustments (Mobile Optimization) */

/* Global Mobile Nav Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-cta {
  display: none;
}

@media (max-width: 992px) {
  /* Header */
  header {
    padding: 12px 0;
  }
  .desktop-nav-cta { display: none; }
  .desktop-nav-items { display: none !important; }
  .mobile-menu-toggle { display: block; z-index: 1000; }
  
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 90vh !important;
    background: #FFFFFF !important;
    z-index: 99999 !important;
    display: none;
    flex-direction: column;
    padding: 20px 20px 24px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(13, 27, 51, 0.15);
  }
  .nav-links.nav-active {
    display: flex !important;
    animation: slideDownMenu 0.25s ease-out forwards;
  }

  .mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 16px;
    width: 100%;
  }
  .mobile-menu-top .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.65rem;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
  }

  .mobile-menu-section {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F2F5;
    width: 100%;
  }
  .mobile-menu-section:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
    padding-bottom: 0;
  }
  .mobile-menu-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #8E9B9F;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .mobile-menu-links a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-menu-links a i {
    font-size: 0.95rem;
    color: #A0AEC0;
  }

  .mobile-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    width: 100%;
  }
  .mobile-menu-grid a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-align: left;
  }

  .mobile-menu-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    background: var(--primary);
    color: #FFFFFF !important;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 16px !important;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(13, 27, 51, 0.15);
  }
}

@media (min-width: 993px) {
  .mobile-menu-top,
  .mobile-menu-section,
  .mobile-menu-cta {
    display: none !important;
  }
  .desktop-nav-items {
    display: flex !important;
    align-items: center;
    gap: 32px;
  }
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

  /* Hero */
  .hero {
    padding: 8px 0 40px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "heading"
      "image"
      "pills"
      "cta"
      "description";
    gap: 8px;
    text-align: center;
  }
  .hero-trust-badge {
    margin-top: 10px;
    justify-self: center;
    margin-bottom: 0;
  }
  /* Unified Heading System for Mobile / Phone Viewports */
  h1, 
  h2, 
  .hero-heading {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.65rem, 6.5vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
    color: var(--primary);
  }
  .break-mobile {
    display: block;
  }
  .hero-right {
    width: 100%;
    height: 240px;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .hero-pills-container {
    margin-top: 0;
  }
  .floating-card.top-right {
    top: 16px;
    right: 16px;
  }
  .floating-card.bottom-left {
    bottom: 16px;
    left: 16px;
  }

  .hero-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .btn-hero {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 9999px; /* Pill capsule shape matching competitor */
    font-size: 1.05rem; /* ~16.8px crisp button font size */
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 25px -4px rgba(13, 27, 51, 0.35);
  }
  .hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem !important; /* 17px mobile font size */
    font-weight: 400;
    line-height: 1.6 !important; /* Generous 1.6 line-height matching competitor */
    color: #334155 !important; /* Slate 700 text color */
    margin-top: 20px;
    margin-bottom: 0;
    text-align: left;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Services Section (Mobile Optimization matching Competitor) */
  .services-section {
    margin: 32px 16px;
    height: 540px !important;
    border-radius: 24px;
  }
  .services-bg {
    object-position: 85% center !important;
  }
  .services-content {
    padding: 24px 20px !important;
  }
  .services-header-left h2 {
    font-size: 1.45rem !important;
    max-width: 185px !important;
    line-height: 1.18 !important;
  }
  .services-view-all {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .service-card {
    min-width: 120px !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 16px !important;
  }
  .services-carousel-track {
    -webkit-overflow-scrolling: touch;
  }

  /* Quote Form */
  .quote-section {
    padding: 60px 16px;
  }
  .quote-form-container {
    padding: 40px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Steps Section (Sequential Pair Layout) */
  .steps-section {
    padding: 50px 16px;
  }
  .steps-flow-grid {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    width: 100%;
  }
  .step-card-pair {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-card-pair .step-item {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  .step-card-pair .phone-card {
    width: 100%;
    max-width: 280px;
    margin-top: 8px;
  }
  .phone-side, .phone-center {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }
    text-align: center;
    padding-top: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  /* Trust Section */
  .trust-section {
    padding: 60px 16px;
  }
  .trust-section h2 {
    margin-bottom: 40px !important;
  }
  .trust-grid {
    flex-direction: column;
    margin-top: 40px;
  }
  .trust-features {
    grid-template-columns: 1fr;
  }
  .trust-main {
    text-align: center;
  }
  .trust-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Locations */
  .locations-section {
    padding: 60px 16px;
  }
  .locations-section .container > p:last-of-type {
    margin-bottom: 24px !important;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-card {
    min-width: 100%;
  }

  /* Reviews */
  .reviews-section {
    padding: 60px 16px;
  }
  .rating-large {
    flex-direction: column;
    font-size: 2.5rem;
    gap: 8px;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-card {
    min-width: auto;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 40px 16px 20px;
  }
  .cta-box {
    padding: 40px 16px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .footer-bottom-links a {
    margin-left: 0 !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  h1, h2, .hero-heading { 
    font-size: 1.7rem !important; 
    font-weight: 800 !important; 
    letter-spacing: -0.025em !important; 
    line-height: 1.15 !important; 
    font-family: 'Inter', sans-serif !important; 
  }
  .hero-left p { font-size: 1rem !important; }
  .trust-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 24px 120px;
    background-color: var(--bg-light);
    min-height: 70vh;
}
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.pricing-header h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(13, 27, 51, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.pricing-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.pricing-card-header .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}
.pricing-card-header .price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.pricing-features li i {
    color: #25D366;
    font-size: 1.25rem;
    margin-top: 2px;
}
.pricing-features li span {
    color: var(--text-gray);
    font-weight: 600;
}
.pricing-card .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: none;
    }
}
@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Included Services Grid (Strictly 3 in one row across ALL screen sizes) */
.included-services-section {
  padding: 80px 16px;
  background-color: #FAFCFF;
}
.included-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.included-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 14px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(13, 27, 51, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 27, 51, 0.08);
  border-color: var(--primary);
}
.included-card i {
  font-size: 2.5rem;
  color: var(--primary); /* Deep navy for crisp high visibility */
  margin-bottom: 14px;
  display: inline-block;
}
.included-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .included-grid {
    gap: 10px !important;
  }
  .included-card {
    padding: 16px 6px !important;
    border-radius: 14px !important;
  }
  .included-card i {
    font-size: 1.65rem !important;
    margin-bottom: 8px !important;
  }
  .included-card h4 {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }
}

/* ==========================================
   PWA & MOBILE APP BOTTOM NAVIGATION BAR
   ========================================== */
.pwa-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--primary); /* Deep Navy #0D1B33 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 0 4px;
}

.pwa-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  flex: 1;
  height: 100%;
  transition: color 0.2s, transform 0.1s;
}

.pwa-nav-item i {
  font-size: 1.35rem;
}

.pwa-nav-item.active,
.pwa-nav-item:hover {
  color: var(--secondary); /* Vibrant Yellow #fdb73e */
}

/* PWA Install Notification Banner with Close Button */
.pwa-install-banner {
  position: fixed !important;
  bottom: 72px !important;
  left: 12px !important;
  right: 12px !important;
  background: #0D1B33 !important;
  color: #ffffff !important;
  padding: 10px 14px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 99998 !important;
  font-size: 0.82rem !important;
  border: 1px solid rgba(253, 183, 62, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
  gap: 8px !important;
}

.pwa-banner-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pwa-install-btn {
  background: #fdb73e !important;
  color: #0D1B33 !important;
  border: none !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.pwa-close-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border: none !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  line-height: 1 !important;
}
/* Permanent Modal Popup Kill Rule */
#pwaModalOverlay,
.pwa-modal-overlay,
.pwa-modal-card {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 68px !important;
  }
}

@media (min-width: 768px) {
  .pwa-bottom-nav,
  .pwa-install-banner {
    display: none !important;
  }
  body {
    padding-bottom: 0 !important;
  }
}



