@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap");
:root {
  --clr-bg: #F7F5F2;
  --clr-cream: #EDE8E0;
  --clr-white: #FFFFFF;
  --clr-teal: #4ABCB0;
  --clr-teal-dk: #2E9B90;
  --clr-blue: #3B7FBF;
  --clr-ink: #1C2630;
  --clr-muted: #6B7A85;
  --clr-border: #D9D3CA;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 60px;
  --shadow-card: 0 4px 32px rgba(28,38,48,.07), 0 1px 6px rgba(28,38,48,.05);
  --shadow-teal: 0 8px 40px rgba(74,188,176,.25);
  --transition: .35s cubic-bezier(.25,.46,.45,.94);
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn--primary {
  background: var(--clr-teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--clr-teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(74, 188, 176, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-teal);
  border: 1.5px solid var(--clr-teal);
}
.btn--outline:hover {
  background: var(--clr-teal);
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 60px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(74, 188, 176, 0.12);
  color: var(--clr-teal-dk);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(28, 38, 48, 0.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__menu a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--clr-ink);
  letter-spacing: 0.03em;
  position: relative;
}
.navbar__menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-teal);
  transition: width var(--transition);
}
.navbar__menu a:hover::after {
  width: 100%;
}
.navbar__cta {
  margin-left: 16px;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  box-shadow: 0 2px 10px rgba(28, 38, 48, 0.08);
  transition: var(--transition);
}
.navbar__hamburger:hover {
  border-color: var(--clr-teal);
  box-shadow: 0 4px 16px rgba(74, 188, 176, 0.2);
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-teal);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.active {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
}
.navbar__hamburger.active span {
  background: #fff;
}
.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.navbar__mobile.open {
  display: flex;
}
.navbar__mobile a {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--clr-ink);
  transition: color var(--transition);
}
.navbar__mobile a:hover {
  color: var(--clr-teal);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100svh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EDE8E0 0%, #F7F5F2 60%, rgba(74, 188, 176, 0.06) 100%);
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(74, 188, 176, 0.2);
  top: -100px;
  right: 200px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 127, 191, 0.15);
  bottom: 100px;
  left: 60px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--clr-teal);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--clr-ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-teal);
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 2px solid var(--clr-teal);
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero__stats-item {
  position: relative;
}
.hero__stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--clr-border);
}
.hero__stats-item strong {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 8px;
}
.hero__stats-item strong [data-count] {
  font-family: var(--ff-display);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--clr-teal);
  line-height: 1;
}
.hero__stats-item strong em {
  font-style: normal;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-teal);
  line-height: 1;
}
.hero__stats-item span {
  font-size: 0.78rem;
  color: var(--clr-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 120px 0 80px;
}
.hero__card-wrap {
  position: relative;
  width: 420px;
  opacity: 0;
  animation: fadeScale 0.9s 0.4s forwards;
}
.hero__main-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.hero__main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-blue));
}
.hero__icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(74, 188, 176, 0.15), rgba(74, 188, 176, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hero__icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--clr-teal);
}
.hero__icon-wrap--logo {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
}
.hero__card-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 4px;
}
.hero__card-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-ink);
  margin-bottom: 8px;
}
.hero__card-text {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}
.hero__rating-stars {
  color: #F5A623;
  font-size: 1rem;
}
.hero__rating-num {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.hero__rating-text {
  font-size: 0.78rem;
  color: var(--clr-muted);
}
.hero__float {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  animation: floatCard 6s ease-in-out infinite;
}
.hero__float--hours {
  top: -24px;
  right: -24px;
  font-size: 0.8rem;
  color: var(--clr-ink);
}
.hero__float--hours strong {
  display: block;
  font-size: 1rem;
  color: var(--clr-teal);
}
.hero__float--loc {
  bottom: -20px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-muted);
  animation-delay: -3s;
}
.hero__float--loc svg {
  width: 16px;
  color: var(--clr-teal);
  flex-shrink: 0;
}

.marquee-bar {
  background: var(--clr-ink);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-bar__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-bar__item svg {
  width: 14px;
  color: var(--clr-teal);
  flex-shrink: 0;
}

.services {
  padding: 100px 0;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.services__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-ink);
}
.services__title em {
  font-style: italic;
  color: var(--clr-teal);
}
.services__lead {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.75;
  align-self: end;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.services__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 188, 176, 0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(28, 38, 48, 0.1);
  border-color: rgba(74, 188, 176, 0.2);
}
.services__card:hover::before {
  opacity: 1;
}
.services__card:hover .services__card-icon {
  background: var(--clr-teal);
}
.services__card:hover .services__card-icon svg {
  color: #fff;
}
.services__card--featured {
  background: linear-gradient(135deg, var(--clr-teal) 0%, var(--clr-teal-dk) 100%);
  color: #fff;
}
.services__card--featured .services__card-name,
.services__card--featured .services__card-desc {
  color: rgba(255, 255, 255, 0.85);
}
.services__card--featured .services__card-name {
  color: #fff;
}
.services__card--featured .services__card-icon {
  background: rgba(255, 255, 255, 0.15);
}
.services__card--featured .services__card-icon svg {
  color: #fff;
}
.services__card--featured .services__card-num {
  color: rgba(255, 255, 255, 0.3);
}
.services__card-num {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--clr-border);
  font-weight: 300;
  margin-bottom: 20px;
}
.services__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 188, 176, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.services__card-icon svg {
  width: 26px;
  color: var(--clr-teal);
  transition: color var(--transition);
}
.services__card-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-ink);
  margin-bottom: 10px;
}
.services__card-desc {
  font-size: 0.87rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.why {
  padding: 100px 0;
  background: var(--clr-cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 188, 176, 0.08) 0%, transparent 70%);
  right: -200px;
  top: -100px;
  pointer-events: none;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why__label {
  margin-bottom: 20px;
}
.why__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-ink);
  margin-bottom: 24px;
}
.why__title em {
  font-style: italic;
  color: var(--clr-teal);
}
.why__text {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.why__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-ink);
}
.why__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--clr-teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why__item {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.why__item:hover {
  transform: translateY(-4px);
}
.why__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 188, 176, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why__item-icon svg {
  width: 22px;
  color: var(--clr-teal);
}
.why__item-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-ink);
  margin-bottom: 6px;
}
.why__item-text {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.testimonials {
  padding: 100px 0;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__header .tag {
  margin-bottom: 16px;
}
.testimonials__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--clr-ink);
  margin-bottom: 12px;
}
.testimonials__title em {
  font-style: italic;
  color: var(--clr-teal);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials__card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition);
}
.testimonials__card:hover {
  transform: translateY(-4px);
}
.testimonials__card-stars {
  color: #F5A623;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.testimonials__card-text {
  font-size: 0.92rem;
  color: var(--clr-ink);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
}
.testimonials__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials__card-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
}
.testimonials__card-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--clr-ink);
}
.testimonials__card-date {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.info {
  padding: 80px 0 0;
  background: var(--clr-ink);
  color: #fff;
  overflow: hidden;
}
.info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}
.info__label {
  margin-bottom: 20px;
}
.info__label .tag {
  background: rgba(74, 188, 176, 0.18);
}
.info__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 40px;
}
.info__title em {
  font-style: italic;
  color: var(--clr-teal);
}
.info__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__detail {
  display: flex;
  gap: 16px;
}
.info__detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 188, 176, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info__detail-icon svg {
  width: 20px;
  color: var(--clr-teal);
}
.info__detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.info__detail-text p, .info__detail-text a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.info__detail-text a:hover {
  color: var(--clr-teal);
}
.info__hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  margin-top: 6px;
}
.info__hours-grid span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.info__hours-grid span:nth-child(odd) {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.info__social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.info__social a {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}
.info__social a svg {
  width: 18px;
}
.info__social a:hover {
  border-color: var(--clr-teal);
  background: rgba(74, 188, 176, 0.1);
  color: var(--clr-teal);
}
.info__map {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 440px;
}
.info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clr-teal) 0%, var(--clr-teal-dk) 50%, var(--clr-blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-banner::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}
.cta-banner::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -80px;
}
.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 6px 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-banner__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 20px;
}
.cta-banner__phone svg {
  width: 18px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-banner__phone a {
  color: #fff;
}
.cta-banner__phone a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: #111820;
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 32px;
}
.footer__brand svg {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}
.footer__brand-logo {
  height: 56px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  mix-blend-mode: screen;
  opacity: 0.95;
}
.footer__brand-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.footer__col-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer__col ul a:hover {
  color: var(--clr-teal);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.04);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: none;
  }
  .hero__content {
    padding-top: 140px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .why__inner {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .info__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .navbar__menu, .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .hero__stats {
    gap: 24px;
  }
  .services__header {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=styles.css.map */
