/* =======================================================
   Urban Spark YYC — Stylesheet
   Professional cleaning services in Calgary
   ======================================================= */

:root {
  --primary: #0369a1;          /* Ocean blue - trust */
  --primary-dark: #0c4a6e;     /* Deep navy */
  --primary-light: #38bdf8;    /* Sky blue */
  --accent: #f97316;           /* Vibrant orange - CTA / conversion */
  --accent-dark: #ea580c;      /* Deep orange (hover) */
  --accent-light: #fed7aa;     /* Peach */
  --accent-soft: #e0f2fe;      /* Pale sky */
  --success: #10b981;          /* Emerald - guarantees */
  --success-dark: #047857;
  --success-soft: #d1fae5;
  --gold: #f59e0b;             /* Golden - stars / urgency */
  --gold-soft: #fef3c7;
  --teal: #14b8a6;             /* Teal - fresh */
  --teal-soft: #ccfbf1;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-highlight: #f0f9ff;
  --bg-warm: #fffbeb;
  --bg-mint: #f0fdfa;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 40px rgba(15,23,42,0.12);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(249,115,22,0.35);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249,115,22,0.45);
}
.btn-navy {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(3,105,161,0.3);
  font-weight: 700;
}
.btn-navy:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(3,105,161,0.4);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(14,165,233,0.3);
}
.btn-accent:hover {
  background: #0284c7;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg-highlight);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== Header / Nav ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--primary-dark); }
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(30,58,138,0.25);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
}
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: var(--white);
}
.nav-links a.nav-cta {
  padding: 0.7rem 1.5rem;
  font-size: 0.92rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border: 0;
  box-shadow: 0 6px 16px rgba(249,115,22,0.4);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(249,115,22,0.5);
}
.nav-links a.nav-cta .cta-arrow { transition: transform 0.2s ease; display: inline-block; margin-left: 0.25rem; }
.nav-links a.nav-cta:hover .cta-arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(253,186,116,0.25) 0%, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(56,189,248,0.25) 0%, transparent 45%),
    linear-gradient(135deg, #f0f9ff 0%, #fffbeb 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(20,184,166,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  background: var(--white);
  border: 1.5px solid var(--success-soft);
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400e;
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #78350f;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-left: 0.5rem;
  border: 1px solid #fde68a;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
}
.hero-trust-icon {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* ===== Hero Form Card (compact quote form in hero) ===== */
.hero-form-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(15,23,42,0.25), 0 0 0 1px rgba(14,165,233,0.08);
  border-top: 5px solid var(--accent);
  margin-top: 1.5rem;
  max-width: 460px;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: -5px; left: -1px; right: -1px; height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.hero-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.hero-form .form-group { margin-bottom: 0.85rem; }
.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.hero-form .form-row .form-group { margin-bottom: 0; }
.hero-form .form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
}
.hero-form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.hero-form .btn-submit {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  box-shadow: 0 10px 22px rgba(14,165,233,0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14,165,233,0.45);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}
.hero-form .btn-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }
.hero-form-fineprint {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.hero-form-fineprint strong { color: var(--success); font-weight: 700; }
.hero-form-success {
  display: none;
  padding: 1.25rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1.5px solid var(--success);
  border-radius: 12px;
  color: #065f46;
  text-align: center;
  font-weight: 600;
}
.hero-form-success.visible { display: block; }
.hero-form-card.submitted .hero-form { display: none; }
.hero-form-card.submitted .hero-form-success { display: block; }
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.hero-visual-placeholder svg {
  width: 100px; height: 100px;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--success);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-text strong { display: block; color: var(--text); font-size: 1rem; }
.hero-card-text span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}
.section-alt { background: var(--bg-soft); }
.section-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.section-accent h2, .section-accent p { color: var(--white); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-accent .section-eyebrow { color: #7dd3fc; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #dbeafe 100%);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price small { font-weight: 500; font-size: 0.85rem; color: var(--text-muted); }

/* ===== Trust / Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
}
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.section-accent .feature-icon { background: rgba(255,255,255,0.1); color: var(--white); }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.95rem; color: var(--text-soft); }
.section-accent .feature p { color: rgba(255,255,255,0.85); }

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-label .req { color: #ef4444; }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-footer { margin-top: 1rem; }
.btn-block { width: 100%; }

/* ===== Pricing cards ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card:hover:not(.featured) {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.pricing-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.pricing-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0 0.25rem;
  line-height: 1;
}
.pricing-amount small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 20px; height: 20px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-label {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--primary);
  background: linear-gradient(135deg, var(--accent-soft) 0%, #dbeafe 100%);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder svg { width: 48px; height: 48px; opacity: 0.6; margin-bottom: 0.5rem; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(-20deg);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; }

/* ===== Footer ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Inner page hero (non-home pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7dd3fc;
  margin-bottom: 0.75rem;
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  animation: float-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overflow-y: auto;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  padding: 2rem 2rem 0.5rem;
  position: sticky;
  top: 0;
  background: var(--white);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  z-index: 2;
}
.modal-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: var(--bg-soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}
.modal-close:hover { background: var(--border); transform: rotate(90deg); }
.modal-body {
  padding: 1.25rem 2rem 2rem;
}
.modal-body .form-card {
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
}
.modal-success {
  padding: 3rem 2rem;
  text-align: center;
}
.modal-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}
body.modal-open { overflow: hidden; }

/* ===== Trust Strip (below hero) ===== */
.trust-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1.5rem 0;
  color: var(--white);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-strip-item .emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 16.66%; right: 16.66%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 50%, var(--success) 100%);
  opacity: 0.35;
  border-radius: 2px;
  z-index: 0;
}
.step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.step-number {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 14px 28px rgba(249,115,22,0.35);
  border: 4px solid var(--white);
}
.step:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 14px 28px rgba(3,105,161,0.35);
}
.step:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  box-shadow: 0 14px 28px rgba(16,185,129,0.35);
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.step p { color: var(--text-soft); max-width: 280px; margin: 0 auto; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text); line-height: 1.3; }
.testimonial-location { font-size: 0.85rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] { border-color: var(--accent); box-shadow: 0 8px 20px rgba(249,115,22,0.12); }
.faq-summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  width: 28px; height: 28px;
  background: var(--bg-highlight);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-summary::after { content: '−'; background: var(--accent); color: var(--white); transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--text-soft); line-height: 1.7; }

/* ===== Service cards — colorful variants ===== */
.service-card.c-orange { border-top: 4px solid var(--accent); }
.service-card.c-orange .service-icon { background: linear-gradient(135deg, #ffedd5 0%, #fdba74 100%); }
.service-card.c-blue { border-top: 4px solid var(--primary-light); }
.service-card.c-blue .service-icon { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%); }
.service-card.c-green { border-top: 4px solid var(--success); }
.service-card.c-green .service-icon { background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%); }
.service-card.c-teal { border-top: 4px solid var(--teal); }
.service-card.c-teal .service-icon { background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 100%); }

.service-card {
  position: relative;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-badge-popular {
  position: absolute;
  top: -12px; right: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(249,115,22,0.35);
}

/* ===== Guarantees band (colorful pill row) ===== */
.guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.guarantee {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1.5px solid var(--border);
}
.guarantee:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guarantee-icon {
  width: 56px; height: 56px;
  margin: 0 auto 0.9rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.guarantee:nth-child(1) .guarantee-icon { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.guarantee:nth-child(2) .guarantee-icon { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%); }
.guarantee:nth-child(3) .guarantee-icon { background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%); }
.guarantee:nth-child(4) .guarantee-icon { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%); }
.guarantee h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.guarantee p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== Pricing preview (small) ===== */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.price-tile {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.price-tile:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.price-tile-label { font-family: var(--font-display); font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.price-tile-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-tile-amount small { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.price-tile-note { font-size: 0.82rem; color: var(--text-muted); }

/* ===== CTA Band (more vibrant) ===== */
.cta-band {
  background:
    radial-gradient(circle at 15% 30%, rgba(249,115,22,0.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(56,189,248,0.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ===== Why-us features on navy sections — more vibrant icons ===== */
.section-accent .feature-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }
.section-warm { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%); }
.section-mint { background: linear-gradient(180deg, var(--bg-mint) 0%, var(--white) 100%); }
.section-sky { background: linear-gradient(180deg, var(--bg-highlight) 0%, var(--white) 100%); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-height: 420px; aspect-ratio: 16/10; order: -1; }
  .hero-card { display: none; } /* Redundant info on mobile (already in hero badge + form) */
  .hero-form-card { max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: repeat(2, 1fr); }
  .pricing-preview { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.5rem 0; }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3rem 0 4rem; }
  .hero-trust { gap: 1rem; }
}
