/* SoftWash Pros Cayman — premium website system */

:root {
  --ocean-blue: #006da8;
  --ocean-blue-bright: #0096d6;
  --ocean-blue-dark: #004f7a;
  --soft-navy: #17324d;
  --soft-navy-deep: #0e2438;
  --island-green: #20b86b;
  --island-green-dark: #159a57;
  --sand: #f3efe8;
  --sand-light: #faf7f1;
  --aqua: #d9f3fb;
  --aqua-deep: #b8e6f5;
  --slate-grey: #64748b;
  --text: #172033;
  --text-muted: #64748b;
  --background: #EAF5FA;
  --surface: #ffffff;
  --surface-muted: #DFF0F7;
  --surface-deep: #e9e4db;
  --outline: rgba(100, 116, 139, 0.24);
  --white: #ffffff;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.16);
  --shadow-blue: 0 18px 45px rgba(0, 109, 168, 0.2);

  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4.5rem, 8vw, 7.75rem);
  --section-y-sm: clamp(3rem, 6vw, 5rem);
  --header-h: 5rem;

  --radius-xs: 0.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.35rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.25rem;
  --radius-full: 9999px;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --font-label: "Public Sans", "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 243, 251, 0.42), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 42rem);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(184, 230, 245, 0.9);
  outline-offset: 3px;
}

/* Layout */

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - var(--gutter) * 2, var(--container-wide));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section-sm {
  padding-block: var(--section-y-sm);
}

.section-header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header .lead {
  margin-inline: auto;
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

@media (min-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Typography */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: var(--radius-full);
  background: currentColor;
  opacity: 0.55;
}

.section-header .eyebrow {
  justify-content: center;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  color: var(--soft-navy);
  margin-top: 0;
  text-wrap: balance;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.4vw, 4.5rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 1.15rem;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  font-weight: 830;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

h3,
.h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
}

h4,
.h4 {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

p {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  font-weight: 450;
  line-height: 1.72;
  max-width: 43rem;
}

.text-muted {
  color: var(--text-muted);
}

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

.text-white {
  color: var(--white);
}

/* Material icons */

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 430, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  line-height: 1;
}

.icon-fill {
  font-variation-settings: "FILL" 1, "wght" 430, "GRAD" 0, "opsz" 24;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(195, 198, 213, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding-inline: var(--gutter);
  max-width: var(--container-wide);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  font-weight: 850;
  color: var(--soft-navy);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand-text span {
  color: var(--ocean-blue);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(1.35rem, 2vw, 2.15rem);
}

.nav-desktop a {
  position: relative;
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-grey);
  transition: color 0.25s var(--ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--ocean-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ocean-blue);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(195, 198, 213, 0.5);
  background: rgba(255, 255, 255, 0.7);
  color: var(--soft-navy);
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.menu-toggle:hover {
  background: var(--surface);
  border-color: rgba(0, 109, 168, 0.22);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(14, 36, 56, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-panel {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem var(--gutter) 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  border-radius: 0 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--surface-deep);
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  font-weight: 750;
  color: var(--soft-navy);
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: rgba(0, 109, 168, 0.08);
  color: var(--ocean-blue);
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.875rem 1.65rem;
  font-family: var(--font-label);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.1;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-blue-bright));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 109, 168, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 109, 168, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--soft-navy);
  border-color: rgba(23, 50, 77, 0.8);
}

.btn-outline:hover {
  background: var(--soft-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  background: transparent;
  color: var(--ocean-blue);
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--ocean-blue-dark);
  transform: translateX(2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--island-green), #34d47c);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(32, 184, 107, 0.24);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(32, 184, 107, 0.32);
}

.btn-sm {
  min-height: 2.55rem;
  padding: 0.64rem 1.2rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 2rem) var(--section-y);
  overflow: hidden;
  isolation: isolate;
}

.hero > .hero-bg,
.hero > .hero-bg.parallax-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero > .hero-bg img,
.hero > .hero-bg.parallax-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.03);
}

.hero-overlay,
.hero > .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 36%, rgba(0, 150, 214, 0.28), transparent 24rem),
    linear-gradient(
      105deg,
      rgba(14, 36, 56, 0.94) 0%,
      rgba(23, 50, 77, 0.72) 50%,
      rgba(23, 50, 77, 0.24) 100%
    );
}

.hero .container,
.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-glass {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 36, 56, 0.68), rgba(23, 50, 77, 0.48));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 5vw, 3.6rem);
  max-width: 54rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(184, 230, 245, 0.12), transparent 18rem);
  pointer-events: none;
}

.hero-glass > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 750;
  margin-bottom: 1.45rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--island-green);
  box-shadow: 0 0 0 6px rgba(32, 184, 107, 0.18);
  animation: pulse 2.2s ease infinite;
}

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

  50% {
    opacity: 0.65;
    transform: scale(0.88);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-float {
  position: absolute;
  right: var(--gutter);
  bottom: 3rem;
  z-index: 3;
  display: none;
}

@media (min-width: 1100px) {
  .hero-float {
    display: block;
  }
}

.trust-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.45rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 290px;
}

.trust-card .icon-circle {
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--island-green), #35d982);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Page hero */

.page-hero {
  padding-block: calc(var(--header-h) + 3.5rem) 4rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(184, 230, 245, 0.5), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(32, 184, 107, 0.1), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
  border-bottom: 1px solid rgba(195, 198, 213, 0.28);
}

.page-hero .lead {
  margin-inline: auto;
}

.page-hero--image {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-block: calc(var(--header-h) + 4rem) 4.5rem;
  isolation: isolate;
  background: var(--soft-navy);
}

.page-hero--image .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--image .hero-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.05) contrast(1.05);
}

.page-hero--image .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 36, 56, 0.72), rgba(14, 36, 56, 0.46)),
    linear-gradient(to top, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0) 42%);
}

.page-hero--image .container {
  position: relative;
  z-index: 2;
}

.page-hero--image h1 {
  color: var(--white);
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.2);
}

.page-hero--image .lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--image .eyebrow {
  color: var(--aqua-deep) !important;
}

/* Trust strip */

.trust-strip {
  background: rgba(255, 255, 255, 0.88);
  border-block: 1px solid rgba(195, 198, 213, 0.34);
  padding-block: 1.35rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-strip .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
}

.trust-item .material-symbols-outlined {
  color: var(--ocean-blue);
  font-size: 1.6rem;
  margin-top: 0.1rem;
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--soft-navy);
  line-height: 1.25;
}

.trust-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .trust-strip .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */

.card,
.preview-card,
.value-card,
.contact-card,
.form-card,
.testimonial,
.legal-card,
.result-card {
  border: 1px solid rgba(195, 198, 213, 0.45);
}

.card,
.preview-card,
.value-card,
.result-card,
.contact-card,
.form-card,
.legal-card {
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.card,
.preview-card,
.value-card,
.result-card,
.contact-card,
.form-card {
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card:hover,
.preview-card:hover,
.value-card:hover,
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 109, 168, 0.18);
}

.card-body {
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
}

.card-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 25%, rgba(184, 230, 245, 0.7), transparent 65%),
    rgba(0, 109, 168, 0.09);
  color: var(--ocean-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  border: 1px solid rgba(0, 109, 168, 0.08);
}

.card-icon .material-symbols-outlined {
  font-size: 1.72rem;
}

/* Service preview cards */

.service-preview-grid {
  display: grid;
  gap: 1.5rem;
}

.preview-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--ocean-blue), var(--aqua-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.preview-card:hover::after {
  transform: scaleX(1);
}

.preview-card h3 {
  margin-bottom: 0.5rem;
}

.preview-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .service-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .service-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Image service cards / bento */

.services-bento {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--soft-navy);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 150, 214, 0.22), transparent 20rem),
    linear-gradient(to top, rgba(14, 36, 56, 0.94) 0%, rgba(14, 36, 56, 0.46) 62%, rgba(14, 36, 56, 0.08) 100%);
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
}

.service-card-content h3 {
  color: var(--white);
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.service-card-content a {
  color: var(--aqua-deep);
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .services-bento {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }

  .services-bento .service-card--featured {
    grid-row: span 2;
    min-height: 500px;
  }

  .services-bento .service-card--sm {
    min-height: 240px;
  }
}

/* Split images */

.split-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--surface-muted);
  isolation: isolate;
}

.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 36, 56, 0.12));
  pointer-events: none;
}

.split-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.split-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 2;
}

@media (min-width: 900px) {
  .split-badge {
    right: -1.5rem;
    left: auto;
    bottom: 1.5rem;
  }
}

/* Features */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}

.feature-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.feature-icon {
  width: 3.65rem;
  height: 3.65rem;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(195, 198, 213, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-blue);
  box-shadow: var(--shadow-xs);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.feature-item:hover .feature-icon {
  background: var(--ocean-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.feature-item p {
  margin-bottom: 0;
}

/* Process */

.process-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, #ffffff, var(--surface-muted));
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 850;
  color: var(--ocean-blue);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.process-step:hover .process-num {
  transform: translateY(-4px);
}

.process-step.is-last .process-num {
  background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-blue-bright));
  color: var(--white);
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 109, 168, 0.28), transparent);
    z-index: 0;
  }
}

/* Results / gallery */

.result-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}

.result-card .img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.result-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.result-card:hover img {
  transform: scale(1.05);
}

.result-card .card-body {
  padding: 1.35rem 1.5rem 1.55rem;
}

.result-card .location,
.project-card .location {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.26rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(0, 109, 168, 0.08);
  color: var(--ocean-blue) !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

/* Portfolio filters and project cards */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.filter-btn {
  padding: 0.66rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(100, 116, 139, 0.26);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--ocean-blue);
  border-color: var(--ocean-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.project-card[data-hidden="true"] {
  display: none;
}

.project-card {
  overflow: hidden;
}

.project-card .img-wrap,
.project-card > div:first-child {
  background: var(--surface-muted);
}

.project-card img {
  transition: transform 0.65s var(--ease-out);
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card--wide {
  display: grid;
}

@media (min-width: 768px) {
  .project-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Service detail */

.service-detail {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  background: var(--surface);
  border: 1px solid rgba(195, 198, 213, 0.45);
  border-radius: var(--radius-2xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  align-items: center;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

@media (min-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr 1.12fr;
  }

  .service-detail--reverse > div:first-child {
    order: 2;
  }

  .service-detail--reverse > div:last-child {
    order: 1;
  }
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 1.25rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  margin-bottom: 0.68rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefit-list .material-symbols-outlined {
  color: var(--island-green);
  font-size: 1.12rem;
  margin-top: 0.22rem;
}

/* Values */

.value-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border-radius: var(--radius-xl);
  height: 100%;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(184, 230, 245, 0.34), transparent 13rem);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

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

.value-card > * {
  position: relative;
  z-index: 1;
}

/* Testimonials */

.testimonial {
  background:
    radial-gradient(circle at top right, rgba(217, 243, 251, 0.38), transparent 14rem),
    var(--surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.65rem, 3vw, 2.1rem);
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.testimonial .quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 3rem;
  color: rgba(0, 109, 168, 0.12);
}

.testimonial .stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-style: italic;
  color: var(--soft-navy);
  font-size: 1.03rem;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), #eef6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  color: var(--soft-navy);
}

.testimonial--dark {
  background: var(--soft-navy);
  border: none;
  color: var(--white);
}

.testimonial--dark blockquote {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial--dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial--dark .avatar {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 50rem;
  margin-inline: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(195, 198, 213, 0.48);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.faq-item.is-open {
  border-color: rgba(0, 109, 168, 0.35);
  box-shadow: var(--shadow-card);
}

.faq-item.is-open::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ocean-blue), var(--ocean-blue-bright));
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.45rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--soft-navy);
  font-weight: 800;
  font-size: 1.02rem;
}

.faq-trigger .material-symbols-outlined {
  color: var(--ocean-blue);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.is-open .faq-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 1.45rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* CTA */

.cta-band {
  background:
    radial-gradient(circle at 20% 45%, rgba(0, 150, 214, 0.28), transparent 24rem),
    radial-gradient(circle at 84% 30%, rgba(32, 184, 107, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--soft-navy-deep), var(--soft-navy));
  color: var(--white);
  text-align: center;
  padding-block: clamp(3.8rem, 7vw, 5.2rem);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 2rem;
  max-width: 37rem;
}

.cta-band .btn-group {
  justify-content: center;
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.55fr);
  }
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition:
    background 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.contact-link:hover {
  background: var(--surface-muted);
  transform: translateX(2px);
}

.contact-link .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ocean-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link.whatsapp .icon-wrap {
  background: rgba(32, 184, 107, 0.14);
  color: var(--island-green);
}

.form-card {
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 1.35rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 850;
  color: var(--soft-navy);
  margin-bottom: 0.42rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(0, 109, 168, 0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 4px rgba(0, 109, 168, 0.13);
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Legal */

.legal-page {
  padding-block: calc(var(--header-h) + 3.5rem) 4.5rem;
}

.legal-page > .eyebrow,
.legal-page > h1 {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-card {
  border-radius: var(--radius-2xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  max-width: 52rem;
  margin-inline: auto;
}

.legal-card h2 {
  font-size: 1.22rem;
  margin-top: 2rem;
}

.legal-card p {
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(217, 243, 251, 0.34), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(195, 198, 213, 0.45);
  padding-block: 3.25rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 20rem;
  margin: 1rem 0 1.25rem;
}

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-navy);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.2s var(--ease);
}

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

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(195, 198, 213, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-navy);
  box-shadow: var(--shadow-xs);
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.social-btn:hover {
  background: var(--ocean-blue);
  color: var(--white);
  border-color: var(--ocean-blue);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(195, 198, 213, 0.45);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
  }
}

/* Utilities */

.bg-white {
  background: var(--background);
}

.bg-muted {
  background:
    radial-gradient(circle at top left, rgba(217, 243, 251, 0.22), transparent 26rem),
    var(--surface-muted);
}

.bg-surface {
  background: var(--background);
}

.glass {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mx-auto {
  margin-inline: auto;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2.5rem;
}

.section-tight-top {
  padding-top: 0;
}

.max-48 {
  max-width: 48rem;
}

.no-max {
  max-width: none;
}

/* Parallax */

.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.hero > .parallax-wrap.hero-bg {
  position: absolute;
}

[data-parallax] {
  will-change: transform;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.26s;
}

/* Mobile */

@media (max-width: 760px) {
  :root {
    --header-h: 4.5rem;
  }

  body {
    background: var(--background);
  }

  .site-header .inner {
    min-height: var(--header-h);
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-h) + 2.7rem) 4rem;
  }

  .hero-glass {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .page-hero {
    padding-block: calc(var(--header-h) + 2.5rem) 3rem;
  }

  .page-hero--image {
    min-height: 380px;
    padding-block: calc(var(--header-h) + 3rem) 3.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .trust-strip .grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    gap: 0.9rem;
  }

  .feature-icon {
    width: 3.2rem;
    height: 3.2rem;
  }

  .contact-link {
    padding-inline: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* Before / After Slider */

.before-after-feature {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(195, 198, 213, 0.45);
  border-radius: var(--radius-2xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 960px) {
  .before-after-feature {
    grid-template-columns: 0.85fr 1.35fr;
  }
}

.before-after-content {
  padding: clamp(0.5rem, 2vw, 1rem);
}

.project-details {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.project-details div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid rgba(195, 198, 213, 0.35);
}

.project-details strong {
  display: block;
  color: var(--soft-navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.project-details span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  background: var(--surface-muted);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: 3rem;
  height: 100%;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  cursor: ew-resize;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.28);
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.25rem;
  height: 3.25rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(195, 198, 213, 0.65);
  box-shadow: var(--shadow-card);
}

.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid var(--ocean-blue);
  border-left: 2px solid var(--ocean-blue);
}

.ba-handle span::before {
  left: 0.9rem;
  transform: translateY(-50%) rotate(-45deg);
}

.ba-handle span::after {
  right: 0.9rem;
  transform: translateY(-50%) rotate(135deg);
}

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(14, 36, 56, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.ba-label-before {
  left: 1rem;
}

.ba-label-after {
  right: 1rem;
}

@media (max-width: 760px) {
  .before-after-feature {
    padding: 1rem;
  }

  .before-after-slider {
    aspect-ratio: 4 / 3;
  }

  .ba-handle span {
    width: 2.85rem;
    height: 2.85rem;
  }
}

/* Reduced motion */
/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .parallax,
  .parallax-image,
  [data-parallax] {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Premium rectangular CTA buttons */

.btn {
  border-radius: 0.35rem;
  padding: 0.9rem 1.65rem;
  min-height: 3rem;
}

.btn-sm {
  border-radius: 0.3rem;
  padding: 0.65rem 1.2rem;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-green {
  border-radius: 0.35rem;
}
