/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #1a1a2e;
  --color-dark: #0d0d1a;
  --color-charcoal: #2d2d44;
  --color-accent: #e8e8e8;
  --color-grey: #8a8a9a;
  --color-grey-light: #f5f5f7;
  --color-grey-mid: #c8c8d0;
  --color-green: #2ecc71;
  --color-green-dark: #27ae60;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #1a1a2e;
  --color-text-light: #555566;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.35);
}
.btn-primary:hover {
  background: var(--color-green-dark);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: float 2s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp svg { width: 28px; height: 28px; }

/* ===== STICKY MOBILE QUOTE ===== */
.sticky-quote-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-quote-mobile .btn { width: 100%; font-size: 0.8rem; padding: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,26,0.98) 0%, rgba(13,13,26,0.97) 33%, rgba(13,13,26,0.35) 60%, rgba(13,13,26,0.05) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--color-grey-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-badges svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-trust {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--color-green); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-white); }
.nav-links .btn { font-size: 0.7rem; padding: 10px 20px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey-light);
  padding: 60px 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.trust-item {
  text-align: center;
  padding: 24px;
}
.trust-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--color-grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary);
}
.trust-item p {
  font-size: 0.75rem;
  color: var(--color-text-light);
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--color-grey-light);
}
.stat { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--color-grey);
  margin-top: 4px;
}

/* ===== PROBLEM / COMPARISON ===== */
.problem {
  padding: var(--section-padding);
  background: var(--color-grey-light);
}
.problem-header { text-align: center; margin-bottom: 64px; }
.problem-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.compare-card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.compare-card.bad {
  border-left: 4px solid #e74c3c;
}
.compare-card.good {
  border-left: 4px solid var(--color-green);
}
.compare-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.compare-card ul { display: flex; flex-direction: column; gap: 12px; }
.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.compare-card ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-card.bad ul li svg { color: #e74c3c; }
.compare-card.good ul li svg { color: var(--color-green); }

/* ===== VALUE PROPOSITION ===== */
.value-prop {
  padding: var(--section-padding);
  background: var(--color-white);
}
.vp-header { text-align: center; margin-bottom: 64px; }
.vp-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
}
.vp-header p {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 16px auto 0;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.vp-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}
.vp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.vp-icon {
  width: 60px;
  height: 60px;
  background: var(--color-grey-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.vp-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.vp-card .desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.vp-card ul { display: flex; flex-direction: column; gap: 8px; }
.vp-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.vp-card ul li svg { width: 16px; height: 16px; color: var(--color-green); flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-padding);
  background: var(--color-grey-light);
}
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-grey-mid);
  background: transparent;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-grey);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-grey-mid);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-item .badge-before {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(231, 76, 60, 0.9);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-item .badge-after {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(46, 204, 113, 0.9);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== APPLICATIONS ===== */
.applications {
  padding: var(--section-padding);
  background: var(--color-white);
}
.apps-header { text-align: center; margin-bottom: 64px; }
.apps-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.app-card {
  padding: 32px 24px;
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.app-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--color-grey-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.app-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-padding);
  background: var(--color-dark);
  color: var(--color-white);
}
.process-header { text-align: center; margin-bottom: 80px; }
.process-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}
.process-header .section-tag { color: rgba(255,255,255,0.4); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  background: rgba(46, 204, 113, 0.15);
  border: 2px solid var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-green);
  position: relative;
  z-index: 2;
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== QUOTE FORM ===== */
.quote-section {
  padding: var(--section-padding);
  background: var(--color-white);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.quote-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.quote-info p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.quote-benefits li svg { width: 20px; height: 20px; color: var(--color-green); flex-shrink: 0; }
.quote-form {
  background: var(--color-grey-light);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-grey-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-primary);
  background: var(--color-white);
  transition: var(--transition);
  color: var(--color-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555566' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.quote-form .btn { width: 100%; margin-top: 8px; padding: 18px 32px; font-size: 0.9rem; }
.form-footnote {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--color-grey);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 24px;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,204,113,0.05) 0%, transparent 100%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-cta .ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-black);
  padding: 60px 24px 120px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}
.footer-brand h4 span { color: var(--color-green); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer ul li a:hover { color: var(--color-green); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--color-white); }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-content { padding: 80px 20px 60px; }
  .hero-badge { margin-bottom: 16px; font-size: 0.65rem; }
  .hero h1 { font-size: 2rem; margin-bottom: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 8px; }
  .hero-badges span { font-size: 0.7rem; padding: 6px 12px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-stats { flex-direction: column; gap: 24px; }

  .comparison { grid-template-columns: 1fr; gap: 24px; }
  .compare-card { padding: 28px 24px; }
  .vp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 8px; }
  .filter-btn { font-size: 0.7rem; padding: 8px 16px; }
  .apps-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .sticky-quote-mobile { display: block; }
  .footer { padding-bottom: 80px; }
  .final-cta .ctas { flex-direction: column; align-items: stretch; }
  .final-cta .ctas .btn { width: 100%; justify-content: center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
