:root {
  --kareh-primary: #6BC4B5;
  --kareh-secondary: #A8E6CF;
  --kareh-info: #4D6774;
  --kareh-white: #FFFFFF;
  --kareh-bg: #F4F7F8;
  --kareh-text: #2E3A3F;
  --kareh-text-muted: #5E707B;
  --kareh-accent: #F4A6A0;
  --kareh-border: rgba(95, 124, 138, 0.14);
  --kareh-shadow: 0 24px 60px rgba(46, 58, 63, 0.12);
  --kareh-shadow-soft: 0 16px 40px rgba(46, 58, 63, 0.08);
  --kareh-radius: 28px;
  --container-width: 1180px;
  --header-height: 86px;
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(168, 230, 207, 0.7), transparent 28%),
    radial-gradient(circle at right 20%, rgba(244, 166, 160, 0.24), transparent 18%),
    linear-gradient(180deg, #f9fbfb 0%, var(--kareh-bg) 46%, #eef4f5 100%);
  color: var(--kareh-text);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: calc(var(--scroll-progress) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--kareh-primary), var(--kareh-accent));
  box-shadow: 0 10px 24px rgba(107, 196, 181, 0.24);
  pointer-events: none;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 1.75rem 0;
  border-top: 1px solid rgba(95, 124, 138, 0.08);
  border-bottom: 1px solid rgba(95, 124, 138, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(244, 247, 248, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(46, 58, 63, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 3.2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy small {
  color: var(--kareh-text-muted);
  font-size: 0.82rem;
  line-height: 1.3;
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-height) + 0.75rem) 1rem auto 1rem;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid var(--kareh-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--kareh-shadow-soft);
  transform: scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  font-weight: 600;
  color: var(--kareh-info);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--kareh-text);
}

.site-nav a.is-active {
  color: var(--kareh-text);
}

.nav-cta {
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--kareh-text);
  color: var(--kareh-white) !important;
}

.nav-toggle {
  display: inline-grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--kareh-shadow-soft);
}

.nav-toggle span {
  width: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: var(--kareh-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: 2rem;
  overflow: clip;
}

.hero-grid,
.about-grid,
.location-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 39rem;
  position: relative;
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
  animation: orbDrift 16s ease-in-out infinite;
}

.orb-one {
  top: 4rem;
  right: 8%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(107, 196, 181, 0.34), transparent 68%);
}

.orb-two {
  left: -6rem;
  bottom: 2rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(244, 166, 160, 0.24), transparent 66%);
  animation-delay: -7s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--kareh-info);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kareh-primary), var(--kareh-secondary));
  box-shadow: 0 0 0 0.25rem rgba(107, 196, 181, 0.14);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 4.2rem);
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.hero-text,
.about-copy p,
.section-heading p:last-child,
.info-card p,
.service-card p,
.badge-card p,
.location-copy,
.transport-card p,
.footer-copy {
  color: var(--kareh-info);
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero-text,
.about-copy p,
.info-card p,
.location-copy,
.transport-card p,
.footer-copy {
  max-width: 62ch;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--kareh-primary), #4f9fa2);
  color: var(--kareh-white);
  box-shadow: 0 18px 36px rgba(107, 196, 181, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(95, 124, 138, 0.16);
  color: var(--kareh-text);
}

.hero-trust {
  display: grid;
  gap: 0.9rem;
}

.trust-pill,
.badge-card,
.info-card,
.service-card,
.transport-card,
.location-card {
  border: 1px solid var(--kareh-border);
  border-radius: var(--kareh-radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--kareh-shadow-soft);
  backdrop-filter: blur(10px);
}

.trust-pill {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-pill strong {
  color: var(--kareh-text);
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.trust-pill span {
  color: var(--kareh-text-muted);
  font-size: 0.88rem;
  text-align: left;
}

.trust-pill:hover,
.trust-pill:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--kareh-shadow);
  border-color: rgba(107, 196, 181, 0.28);
}

.trust-pill-link {
  display: inline-flex;
  color: #2d7f78;
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(45, 127, 120, 0.3);
}

.trust-pill-link:hover {
  color: var(--kareh-text);
  text-decoration-color: rgba(45, 127, 120, 0.6);
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  padding: 1.5rem 0 4.5rem;
}

.hero-motion {
  position: relative;
  min-height: 28rem;
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.hero-glow {
  position: absolute;
  inset: 10% 4% auto auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 196, 181, 0.3), transparent 68%);
  filter: blur(22px);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.glass-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(107, 196, 181, 0.16), rgba(95, 124, 138, 0.04));
  box-shadow: var(--kareh-shadow);
}

.hero-panel {
  display: grid;
  gap: 1.25rem;
  animation: softFloat 8s ease-in-out infinite;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.34), transparent 60%);
  transform: translateX(-130%);
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-panel h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.05rem);
}

.panel-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(107, 196, 181, 0.16);
  color: #2d7f78;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-panel p {
  color: var(--kareh-info);
  max-width: 34ch;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.panel-grid--three {
  grid-template-columns: 1fr;
}

.panel-grid article {
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(95, 124, 138, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.panel-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 196, 181, 0.24);
  box-shadow: 0 16px 30px rgba(46, 58, 63, 0.08);
}

.panel-grid strong,
.profile-highlights strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.panel-grid span,
.profile-highlights span {
  color: var(--kareh-text-muted);
  font-size: 0.92rem;
}

.floating-note {
  position: absolute;
  right: 0;
  display: grid;
  gap: 0.3rem;
  width: min(100%, 18rem);
  padding: 1.05rem 1.15rem;
  border-radius: 1.5rem;
  box-shadow: var(--kareh-shadow-soft);
  animation: softFloat 7s ease-in-out infinite;
}

.note-primary {
  top: 1rem;
  background: linear-gradient(135deg, rgba(107, 196, 181, 0.96), rgba(168, 230, 207, 0.9));
}

.note-accent {
  bottom: 0;
  left: 1.5rem;
  right: auto;
  background: linear-gradient(135deg, rgba(244, 166, 160, 0.96), rgba(255, 227, 224, 0.9));
}

.note-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong {
  line-height: 1.35;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: 38rem;
}

.about-copy,
.about-points {
  position: relative;
  z-index: 1;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.about-points {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.info-card,
.service-card,
.badge-card,
.location-card,
.transport-card {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.service-card:hover,
.badge-card:hover,
.location-card:hover,
.transport-card:hover,
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kareh-shadow);
  border-color: rgba(107, 196, 181, 0.28);
}

.card-kicker,
.profile-role {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: #397d74;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--kareh-border);
  border-radius: calc(var(--kareh-radius) + 0.4rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: var(--kareh-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profile-card--simple .profile-content {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.profile-card--simple h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--kareh-text);
  line-height: 1.3;
}

.profile-image-shell {
  display: grid;
  width: 18rem;
  height: 18rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(107, 196, 181, 0.4);
  box-shadow: 0 0 0 6px rgba(107, 196, 181, 0.1), var(--kareh-shadow-soft);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(180deg, #dcecef, #eef5f6);
  justify-self: center;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-content {
  display: grid;
  gap: 1.25rem;
}

.profile-header {
  display: grid;
  gap: 0.45rem;
}

.profile-copy {
  color: var(--kareh-info);
  max-width: 60ch;
}

.profile-columns,
.profile-highlights,
.cards-grid,
.badge-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.detail-list,
.transport-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--kareh-info);
  font-size: 0.97rem;
  line-height: 1.7;
}

.detail-list li + li,
.transport-list li + li {
  margin-top: 0.5rem;
}

.transport-copy {
  margin-bottom: 0.95rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(107, 196, 181, 0.2);
  border-radius: 999px;
  background: rgba(107, 196, 181, 0.14);
  color: #2d7f78;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.area-tag:hover {
  transform: translateY(-2px);
  background: rgba(107, 196, 181, 0.2);
  border-color: rgba(107, 196, 181, 0.3);
}

.info-card h3,
.faq-card h3 {
  margin-bottom: 0.55rem;
}

.profile-highlights > * {
  height: 100%;
}

.faq-card {
  height: 100%;
}

.profile-highlights > *:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(46, 58, 63, 0.08);
  border-color: rgba(107, 196, 181, 0.22);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(107, 196, 181, 0.18), rgba(95, 124, 138, 0.1));
}

.service-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: var(--kareh-text);
}

.location-grid {
  align-items: start;
}

.address-block {
  display: grid;
  gap: 0.35rem;
  margin: 1.25rem 0 1.4rem;
}

.address-link {
  display: inline-flex;
  width: fit-content;
  color: var(--kareh-text);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.address-link:hover,
.address-link:focus-visible {
  color: #2d7f78;
  transform: translateX(2px);
}

.address-block strong,
.transport-card h3,
.site-footer h3 {
  margin-bottom: 0.45rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--kareh-radius) + 0.6rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(135deg, #2f5d66, #4f8e91 42%, #6bc4b5 100%);
  color: var(--kareh-white);
  box-shadow: var(--kareh-shadow);
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.22), transparent 48%);
  transform: translateX(-135%);
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.cta-card .eyebrow,
.cta-card h2 {
  color: var(--kareh-white);
}

.cta-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.cta-card .button-primary {
  background: var(--kareh-white);
  color: #2f5d66;
  box-shadow: none;
}

.site-footer {
  position: relative;
  padding: 2.5rem 0 5rem;
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  height: 18rem;
  background:
    radial-gradient(circle at left top, rgba(107, 196, 181, 0.18), transparent 38%),
    radial-gradient(circle at right 20%, rgba(244, 166, 160, 0.2), transparent 22%);
  pointer-events: none;
  animation: orbDrift 18s ease-in-out infinite;
}

.footer-grid {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid rgba(95, 124, 138, 0.12);
  gap: 1.15rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.55rem;
}

.footer-intro,
.footer-card {
  padding: 1.35rem;
  border: 1px solid rgba(95, 124, 138, 0.12);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--kareh-shadow-soft);
  backdrop-filter: blur(12px);
}

.footer-intro {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(107, 196, 181, 0.16), rgba(244, 166, 160, 0.08));
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-brand .brand-logo-shell {
  width: 5rem;
  height: 3.6rem;
}

.footer-link {
  display: inline-flex;
  width: fit-content;
  color: var(--kareh-info);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--kareh-text);
  transform: translateX(2px);
}

.footer-socials {
  display: grid;
  gap: 0.45rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--kareh-info);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--kareh-text);
  transform: translateX(2px);
}

.social-icon,
.social-link svg {
  flex: 0 0 0.85rem;
  width: 0.85rem !important;
  height: 0.85rem !important;
  min-width: 0.85rem;
  min-height: 0.85rem;
  fill: currentColor;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(95, 124, 138, 0.12);
  color: var(--kareh-text-muted);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: #148246;
  color: var(--kareh-white);
  box-shadow: 0 20px 38px rgba(31, 191, 99, 0.34);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(31, 191, 99, 0.4);
}

.whatsapp-float svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

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

@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5rem, -1rem, 0) scale(1.04);
  }
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-135%);
  }
  50%,
  60% {
    transform: translateX(135%);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}

@media (max-width: 359px) {
  .button,
  .whatsapp-float {
    width: 100%;
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .hero-motion {
    min-height: 31rem;
  }
}

@media (min-width: 720px) {
  .hero-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .about-grid > .section-heading {
    grid-column: 1 / -1;
  }

  .about-points {
    grid-column: 2;
  }

  .about-copy {
    max-width: 34rem;
  }

  .section-heading {
    max-width: 40rem;
  }

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

  .profile-card {
    grid-template-columns: 18rem minmax(0, 1fr);
    align-items: center;
  }

  .profile-columns,
  .profile-highlights,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-top: 1.2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    position: relative;
    color: var(--kareh-info);
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--kareh-primary), var(--kareh-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

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

  .nav-cta::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.95fr);
    align-items: center;
    gap: 3rem;
  }

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

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
