html {
  scroll-behavior: smooth;
}

/* Base Theme
   -------------------------------------------------- */

:root {
  --primary: #00b5e2;            /* bright aqua from logo */
  --primary-deep: #0089c0;       /* deeper teal */
  --primary-soft: #d5f6ff;

  --ink: #071021;
  --muted: #6b7280;

  --bg: #f4fbff;                 /* light aqua */
  --bg-mint: #dffaf3;            /* spa mint */
  --bg-aqua: #d3f3ff;            /* pastel blue */

  --card-bg: #ffffff;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);

  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* Reset & Body
   -------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  /* Smooth aqua–mint gradient, no harsh lines or pure white */
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.15) 0, transparent 55%),
    radial-gradient(circle at 80% 110%, rgba(0, 181, 226, 0.18) 0, transparent 60%),
    linear-gradient(
      180deg,
      #e4f7ff 0%,
      #d6f4ff 35%,
      #cff7f2 70%,
      #b7efe5 100%
    );
  background-attachment: fixed;
  line-height: 1.6;
  opacity: 0;
  animation: page-fade 0.45s ease-out forwards;
}

/* Global page fade-in */
@keyframes page-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Utilities
   -------------------------------------------------- */

.shell {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0 4.5rem;
}

.section-alt {
  background: transparent; /* use the same gradient as the rest of the page */
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 0.98rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  color: var(--primary-deep);
  font-weight: 600;
}

/* Testimonial section */
.section-testimonial {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(0, 181, 226, 0.12) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.14) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.testimonial-rating {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: #facc15;
  margin-bottom: 0.4rem;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #111827;
  margin-bottom: 0.9rem;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Top Bar & Header
   -------------------------------------------------- */

.top-bar {
  background: #020617;
  color: #e5e7eb;
  font-size: 0.78rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 1.5rem;
  max-width: 1120px;
  margin-inline: auto;
}

.top-bar a {
  color: #e5e7eb;
  text-decoration: none;
}

.top-bar-contact {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.dot-separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  opacity: 0.6;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(245, 247, 251, 0.96),
    rgba(245, 247, 251, 0.85),
    rgba(245, 247, 251, 0.75)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

/* Header shadow when scrolled */
.site-header--scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  border-bottom-color: rgba(148, 163, 184, 0.45);
}

/* Scroll progress bar at top */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-deep),
    #ffffff
  );
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.12s linear, opacity 0.25s ease-out;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  height: clamp(68px, 7vw, 96px);
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.2));
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  animation: logo-float-in 0.9s ease-out 0.1s forwards;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

@keyframes logo-float-in {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #4b5563;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
  transition: width 0.22s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons
   -------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, border-color 0.16s ease-out, color 0.16s ease-out;
  white-space: nowrap;
}

.btn-primary {
  position: relative;            /* needed for shimmer overlay */
  overflow: hidden;              /* hide the shine edges */
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-deep)
  );
  color: #f9fafb;
  box-shadow: 0 16px 35px rgba(0, 181, 226, 0.45);
}

/* Shimmer line */
.btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.35) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: btn-shimmer 4s infinite;
}

/* Hover: tiny lift, keep your existing feel */
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 181, 226, 0.6);
}

@keyframes btn-shimmer {
  0% {
    left: -130%;
  }
  20% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.6);
  color: #111827;
}

.btn-outline:hover {
  border-color: var(--primary-deep);
  color: var(--primary-deep);
  background: #f9fafb;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: #111827;
  border-color: transparent;
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.btn-full {
  width: 100%;
}

/* Floating quote CTA button */
.floating-quote-btn {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #f9fafb;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 55;
}

.floating-quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
}

@media (max-width: 640px) {
  .floating-quote-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.78rem;
  }
}

/* Visually hidden content (honeypot field, etc.) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HERO
   -------------------------------------------------- */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 3.5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.2rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-badge {
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
}

/* Hero side panel */

.hero-panel {
  position: relative;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #00b5e2 0, #0284c7 42%, #020617 100%);
  color: #f9fafb;
  padding: 0.18rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.55);
  overflow: hidden;
}

.hero-panel-inner {
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.9));
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-inner::before {
  content: "";
  position: absolute;
  inset: -60%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.32) 0, transparent 32%),
    radial-gradient(circle at 80% 0, rgba(56, 189, 248, 0.5) 0, transparent 35%),
    radial-gradient(circle at 0 100%, rgba(59, 130, 246, 0.5) 0, transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.4;
}

.hero-metric {
  position: relative;
  z-index: 1;
}

.metric-number {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-metric + .hero-metric {
  margin-top: 1.3rem;
}

.hero-checklist {
  position: relative;
  z-index: 1;
  margin: 1.4rem 0 0.8rem;
  padding-left: 1rem;
  list-style: none;
}

.hero-checklist li {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  position: relative;
}

.hero-checklist li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 2px solid #a5f3fc;
  position: absolute;
  left: -1rem;
  top: 0.33rem;
}

.hero-note {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-top: 0.8rem;
}

/* Cards & Grid
   -------------------------------------------------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.card.skinny {
  padding-block: 1.3rem 1.4rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-list {
  margin: 0.9rem 0 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-list li {
  margin-bottom: 0.3rem;
}

.card-footnote {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Step circle */

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 15%, #f0f9ff, #0ea5e9);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* About
   -------------------------------------------------- */

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 1.4rem;
}

.about-point h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.about-point p {
  margin: 0;
  font-size: 0.86rem;
  color: #4b5563;
}

.about-highlight {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.6rem 1.6rem 1.8rem;
}

/* About trust pills */
.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.about-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.3);
  color: #111827;
}

/* Contact
   -------------------------------------------------- */

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.7rem;
  align-items: flex-start;
}

.contact-direct {
  margin-top: 1.2rem;
}

.contact-line {
  margin: 0.2rem 0;
}

.contact-line a {
  color: var(--primary-deep);
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Contact form */

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem 1.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  font-weight: 500;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.6rem 0.75rem;
  font: inherit;
  color: #111827;
  background: #f9fafb;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-deep);
  box-shadow: 0 0 0 1px rgba(0, 181, 226, 0.4);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.form-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Background bubble layer (carbonated effect)
   -------------------------------------------------- */

.bubble-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; /* sit behind all content */
}

/* Individual bubble */
.bubble {
  position: absolute;
  bottom: -12vh; /* start below bottom */
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95) 0,
    rgba(255, 255, 255, 0.5) 25%,
    rgba(0, 181, 226, 0.25) 55%,
    rgba(0, 181, 226, 0) 70%
  );
  box-shadow: 0 0 12px rgba(148, 197, 255, 0.6);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.7);
  animation-name: bubble-rise;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

/* Use CSS variable --drift for sideways movement */
@keyframes bubble-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  10% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 0px), -120vh, 0) scale(1.1);
  }
}

/* CTA band – let the main page gradient show through */
.cta-ribbon {
  padding: 3rem 0 2.8rem;
  background: transparent; /* let the main page gradient show through */
}

/* Optional: subtle divider that fades out instead of a hard line */
.cta-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, 100% - 3rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0) 0%,
    rgba(148, 163, 184, 0.4) 50%,
    rgba(148, 163, 184, 0) 100%
  );
  opacity: 0.6;
}

.cta-ribbon-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.cta-ribbon-text h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.cta-ribbon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .cta-ribbon-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer
   -------------------------------------------------- */

.site-footer {
  border-top: 1px solid rgba(0, 181, 226, 0.22);
  background: linear-gradient(
    180deg,
    rgba(223, 247, 255, 0.85) 0%,
    rgba(209, 245, 238, 0.92) 100%
  );
  color: #0b2c33; /* soft teal text */
  padding: 0.6rem 0 0.6rem;
  font-size: 0.8rem;
  backdrop-filter: blur(6px);
}

.footer-shell {
  text-align: center;
  font-size: 0.8rem;
}

.footer-sub {
  margin-top: 0.05rem;
  color: rgba(33, 71, 77, 0.75);
}

/* Card reveal animation (slide-up + hover tilt up)
   -------------------------------------------------- */

.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition:
    opacity 0.45s ease-out,
    transform 0.25s ease-out,
    filter 0.45s ease-out,
    box-shadow 0.25s ease-out;
  will-change: transform;
  transform-origin: center bottom; /* tilt from the bottom edge */
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Hover: gently lift and tilt "up" toward the viewer */
.reveal-card.is-visible:hover {
  transform: translateY(-8px) rotateX(6deg) scale(1.01);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

/* Simple hero fade-in so it feels cohesive */
.hero-content {
  animation: hero-fade 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(18px);
}

@keyframes hero-fade {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive
   -------------------------------------------------- */

@media (max-width: 960px) {
  .hero-shell,
  .about-shell,
  .contact-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shell {
    gap: 2.7rem;
  }

  .hero-panel {
    max-width: 400px;
    margin: 0 auto;
  }

  .nav {
    display: none; /* simple: hide nav links on small tablets/phones */
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0 3rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Add extra space between the first services grid and the add-ons grid on mobile */
  .service-addons {
    margin-top: 1.4rem; /* tweak to taste: 1.2–1.8rem */
  }

  .hero {
    padding-top: 3.2rem;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 2rem, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
