/* ============================================
   MoDroneView — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0d1b2a;
  --navy-light: #1a2e42;
  --navy-card:  #162033;
  --blue:       #00b4d8;
  --blue-dark:  #0096b7;
  --gold:       #f4a261;
  --error:      #e74c3c;
  --white:      #ffffff;
  --off-white:  #e8edf2;
  --muted:      #8fa3b8;
  --border:     rgba(0, 180, 216, 0.15);
  --glass:      rgba(22, 32, 51, 0.75);
  --shadow:     0 8px 32px rgba(0, 0, 0, 0.4);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
  --font-head:  'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:  'Inter', 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* --- Accessibility: keyboard focus --- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--muted); }

/* --- Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* Offset for fixed nav when anchor-jumping */
section[id] {
  scroll-margin-top: 80px;
}
@media (max-width: 900px) {
  section[id] { scroll-margin-top: 68px; }
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 56px;
}

.section-header {
  text-align: center;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #e8924e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#header.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

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

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

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* PNG has transparency so no background needed */
}

.footer-logo-img {
  height: 52px;
}

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

@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.83rem; }
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off-white);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .nav-cta .btn { display: none; }
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center 40%/cover no-repeat;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.7) 0%,
    rgba(0, 180, 216, 0.08) 50%,
    rgba(13, 27, 42, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--blue);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(232, 237, 242, 0.8);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.5rem; }
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--blue);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATS BAR
   ============================================ */
#stats-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,216,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  background: var(--navy);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: var(--shadow);
}


.about-badge-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-card.bottom-left {
  bottom: -24px;
  left: -24px;
}

.about-badge-card.top-right {
  top: -24px;
  right: -24px;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
}

.about-badge-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-text {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}


@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrapper { order: -1; padding: 20px 16px 24px; }
  .about-image { aspect-ratio: 3 / 2; }
  .about-badge-card.bottom-left { bottom: 0; left: 0; }
  .about-badge-card.top-right { top: 0; right: 0; }
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  background: var(--navy-light);
}

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

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before { opacity: 1; }

/* .service-icon styles consolidated below in "SERVICE ICON — SVG" block */

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; margin-bottom: 24px; line-height: 1.7; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: var(--navy);
}

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

.why-card {
  display: flex;
  gap: 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(0, 180, 216, 0.35);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--blue);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
}

.why-text h3 { margin-bottom: 8px; font-size: 1.1rem; }
.why-text p { font-size: 0.9rem; }

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

/* ============================================
   PORTFOLIO
   ============================================ */
#portfolio {
  background: var(--navy-light);
}

.portfolio-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--navy);
  font-weight: 600;
}

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

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.portfolio-info span {
  font-size: 0.8rem;
  color: var(--blue);
}

.portfolio-item.large { grid-column: span 2; }

.portfolio-item.filter-hidden {
  display: none;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-column: span 2; }
}

@media (max-width: 500px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: span 1; }
}

/* ============================================
   PROCESS
   ============================================ */
#process {
  background: var(--navy);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--blue), var(--border), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 16px;
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--navy-card);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step h3 { margin-bottom: 10px; font-size: 1rem; }
.process-step p { font-size: 0.88rem; line-height: 1.6; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#first-client {
  background: var(--navy-light);
}

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

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--off-white);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

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

/* ============================================
   SERVICES GRID — 4 columns
   ============================================ */
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 600px) {
  .services-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.3);
}

.pricing-card--featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #162033 0%, #0f2237 100%);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0, 180, 216, 0.15);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.pricing-name {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  padding-top: 8px;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.pricing-feature.included {
  color: var(--off-white);
}

.pricing-feature.excluded {
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-feature.included::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}

.pricing-feature.excluded::before {
  content: '✕';
  color: var(--muted);
  flex-shrink: 0;
  width: 16px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* Travel surcharge */
.pricing-travel {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.pricing-travel h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.pricing-travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-travel-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.travel-range {
  font-size: 0.82rem;
  color: var(--muted);
}

.travel-charge {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.travel-free {
  color: var(--blue);
}

.pricing-note {
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
}

.pricing-note a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .pricing-travel-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-travel { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .pricing-travel-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pricing-travel-item { padding: 12px 10px; }
  .travel-charge { font-size: 0.95rem; }
}

/* ============================================
   FIRST CLIENT GRID
   ============================================ */
.first-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.first-client-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.first-client-card:hover {
  border-color: rgba(0, 180, 216, 0.35);
  transform: translateY(-4px);
}

.first-client-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.first-client-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.first-client-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.first-client-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

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

@media (max-width: 500px) {
  .first-client-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CTA BANNER
   ============================================ */
#cta-banner {
  background: linear-gradient(135deg, #0a3a52 0%, #0d1b2a 50%, #1a2e42 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#cta-banner h2 { margin-bottom: 16px; }
#cta-banner p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; font-size: 0.95rem; }

.contact-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 180, 216, 0.07);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 20px 0 32px;
  font-size: 0.88rem;
  color: var(--off-white);
  line-height: 1.5;
}
.contact-guarantee svg { stroke: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-guarantee strong { color: var(--white); }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp { background: rgba(37, 211, 102, 0.15); }
.contact-method-icon.phone    { background: rgba(0, 180, 216, 0.15); }
.contact-method-icon.email    { background: rgba(244, 162, 97, 0.15); }

.contact-method-icon.whatsapp svg { stroke: #25d366; }
.contact-method-icon.phone svg    { stroke: var(--blue); }
.contact-method-icon.email svg    { stroke: var(--gold); }

.contact-method-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-method-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form-wrapper {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 32px; }

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-error-msg {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.form-error-msg.visible { display: block; }

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.consent-group label {
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
}

.consent-group label a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  justify-content: center;
}

.form-success,
.form-error {
  display: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

.form-success {
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #2ecc71;
}

.form-error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--error);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--blue); }

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-contact-item svg {
  flex-shrink: 0;
  stroke: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hide float buttons on mobile — sticky bar handles CTAs there */
@media (max-width: 768px) {
  .float-btns { display: none; }
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  color: var(--white);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.call     { background: var(--blue); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

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

.cookie-text {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-text a { color: var(--blue); }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: 160px 0 80px;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.legal-content {
  padding: 80px 0;
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

.legal-content a { color: var(--blue); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ============================================
   SERVICE ICON — SVG
   ============================================ */
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
}

.service-card:hover .service-icon {
  background: rgba(0, 180, 216, 0.2);
  transform: scale(1.08);
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.compare-wrap {
  position: relative;
  margin-bottom: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
}

.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: col-resize;
  border: 1px solid var(--border);
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-after {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.compare-img--after {
  width: 200%;
  max-width: none;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 10;
  cursor: col-resize;
}

.compare-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
}

.compare-handle-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
  color: var(--navy);
}

.compare-handle-btn svg { display: block; }

.compare-label {
  position: absolute;
  top: 20px;
  z-index: 5;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.compare-label--before { left: 20px; }
.compare-label--after  { right: 20px; }

.compare-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================
   AREAS WE COVER
   ============================================ */
#areas {
  background: var(--navy-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
  align-items: stretch;
}

.areas-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.areas-card--home {
  border-color: var(--blue);
  background: var(--navy-card);
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}

.areas-map-wrap {
  width: 100%;
  flex: 1;
  min-height: 180px;
  position: relative;
}

/* GDPR map consent placeholder */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-card);
  color: var(--muted);
  text-align: center;
  padding: 24px;
  cursor: pointer;
}

.map-consent svg {
  color: var(--blue);
  opacity: 0.7;
}

.map-consent p {
  font-size: 0.95rem;
  color: var(--off-white);
  margin: 0;
}

.map-consent-note {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.4;
}

.areas-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.areas-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.areas-map-label svg { stroke: var(--blue); flex-shrink: 0; }

.areas-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,180,216,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.areas-card-icon svg { width: 24px; height: 24px; stroke: var(--blue); }

.areas-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0;
}

.areas-card p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.areas-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.areas-tag--free {
  background: rgba(0,200,130,0.15);
  color: #00c882;
  border: 1px solid rgba(0,200,130,0.2);
}

.areas-towns {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
}

.areas-region-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.areas-town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  margin-bottom: 16px;
}

.areas-town {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--off-white);
}

.areas-town svg { width: 8px; height: 8px; fill: var(--blue); flex-shrink: 0; }

.areas-town--surcharge svg { fill: var(--gold); }
.areas-town--surcharge { color: var(--muted); }

.areas-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.areas-note a { color: var(--blue); }

.areas-banner {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.areas-banner svg { stroke: var(--blue); flex-shrink: 0; }
.areas-banner strong { color: var(--white); }

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .areas-card--home { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; text-align: left; }
}

@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
  .areas-card--home { grid-column: span 1; flex-direction: column; text-align: center; }
  .areas-town-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FAQ
   ============================================ */
#faq {
  background: var(--navy);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 180, 216, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--blue);
}

.faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 18px;
  color: var(--muted);
}

/* ============================================
   FOOTER — Google Business link
   ============================================ */
.footer-gbp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--blue) !important;
  margin-top: 4px;
}

.footer-gbp-link svg { stroke: var(--blue); flex-shrink: 0; }

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
#mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

#mobile-cta-bar.visible {
  transform: translateY(0);
}

#mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.95rem;
}

.mobile-cta-wa {
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: background var(--transition);
}

.mobile-cta-wa:hover { background: #1ebe5c; }

@media (max-width: 768px) {
  #mobile-cta-bar { display: flex; }
  /* push content above bar when visible */
  body.cta-bar-active { padding-bottom: 80px; }
}

/* ============================================
   CREDENTIALS / TRUST SECTION
   ============================================ */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.cred-card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-3px);
}

.cred-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.cred-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cred-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.creds-google-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  font-size: 0.92rem;
  color: var(--muted);
}

.creds-google-cta a {
  color: var(--blue);
  text-decoration: underline;
}

.creds-google-cta a:hover {
  color: var(--blue-dark);
}

@media (max-width: 768px) {
  .creds-grid { grid-template-columns: 1fr; }
  .cred-card { flex-direction: column; gap: 14px; }
}

/* --- Footer social icons --- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(0,180,216,0.08);
}

/* ============================================
   COMPARE SLIDER — FOCUS VISIBLE
   ============================================ */
.compare-handle:focus-visible .compare-handle-btn {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.25);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in, .fade-in-delay-1, .fade-in-delay-2, .fade-in-delay-3 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-badge-dot { animation: none; }
}
