:root {
  --navy: #0f2942;
  --blue: #1d6fa5;
  --blue-light: #2f8fce;
  --sky: #eaf4fb;
  --text: #1c2a35;
  --text-muted: #55697a;
  --white: #ffffff;
  --border: #dbe6ee;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 41, 66, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

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

h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; font-weight: 700; color: var(--navy); }

h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  animation: btn-glow 5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(29, 111, 165, 0.3);
  animation-play-state: paused;
}

@keyframes btn-glow {
  0%, 80%, 100% { box-shadow: 0 0 0 0 rgba(29, 111, 165, 0); }
  90% { box-shadow: 0 0 0 7px rgba(29, 111, 165, 0.22), 0 0 22px 5px rgba(47, 143, 206, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.icon-phone {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  white-space: nowrap;
}
.logo span { color: var(--blue); font-weight: 600; }
.logo-icon {
  height: 40px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 2px 4px;
}

.main-nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.nav-cta { color: var(--blue); font-weight: 700; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-cta { white-space: nowrap; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  flex-shrink: 0;
}
.icon-btn svg { width: 20px; height: 20px; fill: currentColor; }
.icon-btn:hover { transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding: 130px 0 100px;
  overflow: hidden;
}
.hero-bg-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg-layer.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,41,66,0.75), rgba(15,41,66,0.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.hero h1 { color: var(--white); }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.hero-cta-text { color: var(--white); font-size: 1.15rem; font-weight: 600; margin-bottom: 24px; }

/* Service page hero */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 110px 0 80px;
}
.page-hero-content { position: relative; max-width: 700px; }
.page-hero h1 { color: var(--white); }
.page-hero-sub { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; }
.page-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.window-hero { background-image: url('images/window-cleaning.jpg'); }
.gutter-hero { background-image: url('images/gutter-cleaning.jpg'); }
.driveway-hero { background-image: url('images/driveway-cleaning.jpg'); }

/* Quote form */
.quote { padding: 80px 0; }
.quote-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-sub { margin-bottom: 32px; }
.quote-form { text-align: left; }
.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.quote-field { display: flex; flex-direction: column; gap: 6px; }
.quote-field-full { margin-bottom: 24px; }
.quote-field label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.quote-field input,
.quote-field select,
.quote-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.quote-form .btn-large { width: 100%; justify-content: center; }
.quote-note { text-align: center; font-size: 0.85rem; margin: 12px 0 0; color: var(--text-muted); }
.quote-note a { color: inherit; text-decoration: underline; }

/* How it works */
.how-it-works { padding: 90px 0; background: var(--sky); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { margin: 0; font-size: 0.95rem; }

/* Features */
.features { padding: 60px 0; background: var(--sky); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  fill: var(--blue);
  margin-bottom: 12px;
}
.feature p { color: var(--navy); font-weight: 600; font-size: 1.05rem; margin: 0; }

/* About */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text a.btn { margin-top: 8px; }
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Services */
.services { padding: 90px 0; background: var(--sky); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-card-body p { flex: 1; }
.service-card-body .btn { align-self: flex-start; margin-top: 8px; }

/* Gallery carousel */
.gallery { padding: 90px 0; }
.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.carousel-viewport {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  flex: 0 0 100%;
}
.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 41, 66, 0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carousel-arrow:hover { background: rgba(15, 41, 66, 0.8); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.active { background: var(--blue); }

/* About Us (personal statement) */
.about-us {
  padding: 90px 0;
  background: var(--sky);
  text-align: center;
}
.about-us-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-us-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}
.about-us-quote {
  margin: 0 0 24px;
  padding: 0;
  border: none;
}
.about-us-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.about-us-quote p::before { content: "\201C"; }
.about-us-quote p::after { content: "\201D"; }
.about-us-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0;
}
.about-us-author span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Why us */
.why-us { padding: 90px 0; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Testimonial */
.testimonial {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.testimonial-inner { max-width: 720px; margin: 0 auto; }
.testimonial-heading { color: var(--white); margin-bottom: 8px; }
.quote-icon { width: 56px; height: 56px; margin-bottom: 16px; opacity: 0.9; }
.stars { color: #f5b942; font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
}
.testimonial-author { color: rgba(255,255,255,0.7); margin: 0; }
.testimonial-author a { text-decoration: underline; }
.trustpilot-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Reviews photo carousel (auto-scrolling marquee) */
.reviews-section .testimonial-text { margin-bottom: 0; }
.review-scroll-wrap {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.review-scroll-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  animation: review-scroll 70s linear infinite;
}
.review-scroll-track img {
  display: block;
  height: 320px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.review-scroll-wrap:hover .review-scroll-track { animation-play-state: paused; }
@keyframes review-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .review-scroll-track { animation: none; }
  .review-scroll-wrap { overflow-x: auto; }
}

/* Property care */
.property-care { padding: 90px 0; }
.property-care-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.property-care-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* FAQs */
.faqs { padding: 90px 0; background: var(--sky); }
.accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.accordion-icon {
  transition: transform 0.2s ease;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}
.accordion-content p { margin: 0 0 20px; }
.accordion-item.open .accordion-content {
  max-height: 400px;
}

/* Corporate / commercial */
.corporate { padding: 70px 0; background: var(--navy); color: var(--white); text-align: center; }
.corporate-inner { max-width: 700px; margin: 0 auto; }
.corporate h2 { color: var(--white); }
.corporate p { color: rgba(255,255,255,0.85); }

/* CTA */
.cta { padding: 90px 0; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}
.cta-phone .icon-phone { width: 22px; height: 22px; }
.cta-address { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.cta-address a { text-decoration: underline; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Policy page */
.policy { padding: 80px 0; }
.policy-inner { max-width: 760px; margin: 0 auto; }
.policy-section { margin-bottom: 32px; }
.policy-section h2 { font-size: 1.3rem; }
.policy-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}
.site-footer a { color: var(--white); text-decoration: underline; }

.footer-credit {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-credit a:hover { color: var(--white); }
.footer-credit-logo { height: 18px; width: auto; }

/* Chat widget */
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  animation: btn-glow 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .chat-toggle { animation: none; }
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 320px;
  max-width: calc(100vw - 40px);
  height: 420px;
  max-height: 70vh;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-panel-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 85%;
}
.chat-bubble.bot {
  background: var(--sky);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble.typing { opacity: 0.6; font-style: italic; }
.chat-bubble.bot p { margin: 0 0 8px; }
.chat-bubble.bot p:last-child { margin-bottom: 0; }
.chat-bubble.bot ul { margin: 0 0 8px; padding-left: 18px; }
.chat-bubble.bot ul:last-child { margin-bottom: 0; }
.chat-bubble.bot li { margin-bottom: 2px; }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}
.chat-input-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}
.chat-input-row .btn { padding: 10px 16px; animation: none; }

@media (max-width: 480px) {
  .chat-widget { right: 12px; bottom: 12px; }
  .chat-toggle { width: 48px; height: 48px; font-size: 1.3rem; }
  .chat-panel { width: calc(100vw - 24px); bottom: 58px; }
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .about-grid,
  .why-us-grid,
  .property-care-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .property-care-image { order: -1; }
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 90px 0 70px; }
  .quote-form-row { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide img, .carousel-slide video { height: 320px; }
}

@media (max-width: 480px) {
  :root { font-size: 15px; }
  .container { padding: 0 16px; }
  .header-inner { gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .logo { font-size: 0.95rem; gap: 6px; }
  .logo-icon { height: 30px; }
  .logo-text { display: none; }
  .header-cta { padding: 10px 16px; font-size: 0.85rem; }
  .icon-btn { width: 32px; height: 32px; }
  .icon-btn svg { width: 16px; height: 16px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  .review-scroll-track img { height: 220px; }
  .review-scroll-track { animation-duration: 45s; }
  .hero { padding: 70px 0 50px; }
  .page-hero { padding: 70px 0 50px; }
  .quote,
  .how-it-works,
  .features,
  .about,
  .services,
  .gallery,
  .why-us,
  .testimonial,
  .property-care,
  .faqs,
  .cta,
  .corporate {
    padding: 50px 0;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .carousel-slide img, .carousel-slide video { height: 220px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .about-image img,
  .why-us-image img,
  .property-care-image img,
  .cta-image img {
    height: 260px;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.cookie-banner a { color: var(--blue-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn { padding: 8px 16px; font-size: 0.9rem; }
.cookie-banner-actions .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-banner-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 13px 14px;
    gap: 10px;
    border-radius: 12px;
  }
  .cookie-banner p { flex: none; font-size: 0.8rem; line-height: 1.4; }
  .cookie-banner-actions { justify-content: flex-end; gap: 8px; }
  .cookie-banner-actions .btn { padding: 7px 13px; font-size: 0.8rem; }
}

@media (prefers-color-scheme: dark) {
  body { background: #0b1620; }
  :root { --text: #e7edf3; --text-muted: #a9b8c4; --sky: #101f2d; }
  .site-header { background: #0f2131; border-color: #1c3244; }
  .logo { color: #f2f6fa; }
  .service-card, .accordion-item { background: #142839; }
  h1, h2, h3, .accordion-header, .feature p, .about-us-author, .quote-field label { color: #f2f6fa; }
  .btn-outline { border-color: var(--blue-light); color: var(--blue-light); }
  .quote-field input,
  .quote-field select,
  .quote-field textarea {
    background: #142839;
    border-color: #1c3244;
    color: #e7edf3;
  }
}
