:root {
  --teal-900: #063c3d;
  --teal-800: #07585b;
  --teal-700: #087276;
  --teal-500: #10aeb3;
  --teal-100: #dff8f7;
  --mint-50: #f2fbf9;
  --ink: #142023;
  --muted: #5c6a70;
  --line: #dce8e7;
  --white: #ffffff;
  --warm: #b87a41;
  --gold: #e4b35c;
  --shadow-sm: 0 14px 35px rgba(6, 60, 61, 0.08);
  --shadow-md: 0 22px 60px rgba(6, 60, 61, 0.15);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-900);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--warm);
  border-radius: 999px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2,
.process__intro h2,
.about__content h2,
.faq__intro h2,
.contact__content h2,
.cta h2 {
  margin: 12px 0 0;
  color: var(--teal-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.process__intro p,
.about__content p,
.faq__intro p,
.contact__content p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(215, 225, 226, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(6, 60, 61, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--teal-900);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eefaf8;
  overflow: hidden;
  border: 1px solid rgba(16, 174, 179, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #314246;
  font-size: 0.98rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(13, 92, 99, 0.18);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--teal-900);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 56px 0 28px;
  background:
    linear-gradient(90deg, rgba(8, 56, 60, 0.92) 0%, rgba(8, 56, 60, 0.84) 45%, rgba(8, 56, 60, 0.2) 100%),
    linear-gradient(180deg, #edf4f4 0%, #f7fafb 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(32, 184, 198, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
}

.hero__content {
  color: var(--white);
  max-width: 620px;
}

.hero__content .eyebrow {
  color: #9cf7f1;
}

.hero__content h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__content p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  box-shadow: 0 18px 32px rgba(13, 92, 99, 0.24);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.btn--dark {
  color: var(--white);
  background: var(--teal-900);
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
}

.hero-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-image {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 26px;
  background: var(--teal-900);
}

.hero-image img,
.hero-slider__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider__arrow,
.hero-slider__dot {
  position: relative;
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(6, 60, 61, 0.18);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider__arrow--prev {
  left: 16px;
}

.hero-slider__arrow--next {
  right: 16px;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(6, 60, 61, 0.28);
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  opacity: 0.9;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: var(--white);
  opacity: 1;
  transform: scale(1.12);
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-chip {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--teal-700);
  background: rgba(13, 92, 99, 0.09);
  font-weight: 800;
  white-space: nowrap;
}

.trust-strip {
  padding: 18px 0;
  background: var(--mint-50);
  border-block: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--teal-900);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.trust-strip i {
  color: var(--teal-500);
}

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.renewal__grid article,
.testimonials__grid article,
.faq-item,
.contact-cards a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 236px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 174, 179, 0.34);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  font-size: 1.35rem;
}

.service-card h3,
.renewal__grid h3,
.process__steps h3 {
  margin: 20px 0 0;
  color: var(--teal-900);
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.renewal__grid p,
.process__steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process,
.faq {
  background:
    linear-gradient(180deg, rgba(242, 251, 249, 0.98), rgba(255, 255, 255, 0.98));
}

.process__grid,
.about__grid,
.contact__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.process__intro {
  position: sticky;
  top: 132px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-700);
  font-weight: 900;
}

.process__steps {
  display: grid;
  gap: 16px;
}

.process__steps article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(16, 174, 179, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.process__steps span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-900);
  background: var(--teal-100);
  font-weight: 900;
}

.process__steps h3,
.process__steps p {
  grid-column: 2;
}

.process__steps h3 {
  margin-top: 0;
}

.renewal {
  background: var(--teal-900);
  color: var(--white);
}

.renewal .section-heading h2,
.renewal .eyebrow {
  color: var(--white);
}

.renewal .eyebrow::before {
  background: #8ef1eb;
}

.renewal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.renewal__grid article {
  min-height: 290px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.renewal__grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-900);
  background: #8df0ea;
  font-size: 1.25rem;
}

.renewal__grid h3 {
  color: var(--white);
}

.renewal__grid p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.gallery figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 360px;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  justify-self: center;
}

.gallery figure:first-child,
.gallery figure:nth-child(3) {
  grid-column: span 1;
}

.gallery figure:first-child {
  grid-row: span 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.35s ease;
  filter: saturate(1.08) contrast(1.05);
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

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

.about__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.about__media {
  position: relative;
  width: min(100%, 430px);
  border-radius: 24px;
  padding: 12px;
  background: var(--mint-50);
  box-shadow: var(--shadow-md);
  justify-self: center;
}

.about__panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 34px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--teal-800), var(--teal-500)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  text-align: center;
}

.about__panel img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about__panel strong {
  margin-top: 12px;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.2;
}

.about__panel span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}

.about__panel-grid small {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--mint-50);
  color: var(--teal-900);
  font-weight: 800;
}

.feature-list i {
  color: var(--teal-500);
}

.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonials__grid article {
  min-height: 220px;
  padding: 28px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.testimonials__grid p {
  margin: 18px 0;
  color: #33464a;
}

.testimonials__grid strong {
  color: var(--teal-900);
}

.faq__grid {
  grid-template-columns: 0.72fr 1.28fr;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--teal-900);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button i {
  transition: transform 0.2s ease;
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item__content p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.cta {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-500));
  color: var(--white);
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

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

.cta .eyebrow::before {
  background: #8df0ea;
}

.cta h2 {
  max-width: 820px;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
}

.cta__actions {
  justify-content: flex-end;
  margin: 0;
}

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

.contact__grid {
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-cards a:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 174, 179, 0.34);
}

.contact-cards i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-700);
}

.contact-cards small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.76rem;
}

.contact-cards span {
  min-width: 0;
  color: var(--teal-900);
  font-weight: 900;
}

.map-card {
  min-height: 380px;
  padding: 12px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(6, 60, 61, 0.12), rgba(16, 174, 179, 0.18)),
    var(--mint-50);
  box-shadow: var(--shadow-md);
}

.map-card__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 356px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--teal-900);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--teal-800), var(--teal-500));
  background-size: 42px 42px, 42px 42px, auto;
  text-align: center;
}

.map-card__visual i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-900);
  background: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.map-card__visual strong,
.map-card__visual span {
  color: var(--white);
}

.map-card__visual strong {
  font-size: 1.35rem;
}

.map-card__visual span {
  color: rgba(255, 255, 255, 0.82);
}

.map-card__visual a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--teal-900);
  background: var(--white);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #052f31;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 56px 0 34px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
}

.footer-brand span {
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.footer__grid p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer__grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer__grid a:not(.footer-brand) {
  display: block;
  margin-top: 10px;
  transition: color 0.2s ease;
}

.footer__grid a:hover,
.footer__bottom a:hover {
  color: #8df0ea;
}

.footer__bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer__bottom a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.fixed-contact a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(6, 60, 61, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(6, 60, 61, 0.32);
}

.fixed-contact__phone {
  background: var(--teal-700);
}

.fixed-contact__whatsapp {
  background: #25d366;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .header-cta {
    display: none;
  }

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

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

}

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

  .gallery figure {
    max-width: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  .nav-wrap {
    min-height: 72px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 49;
    display: grid;
    gap: 2px;
    max-height: calc(100vh - 72px);
    padding: 14px 16px 22px;
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
    color: var(--teal-900);
    font-weight: 900;
  }

  .mobile-menu a:hover {
    background: var(--mint-50);
  }

  .mobile-menu__cta {
    justify-content: center;
    margin-top: 10px;
    color: var(--white) !important;
    background: var(--teal-700);
  }

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
    background:
      linear-gradient(180deg, rgba(8, 56, 60, 0.94) 0%, rgba(8, 56, 60, 0.86) 54%, rgba(8, 56, 60, 0.16) 100%),
      linear-gradient(180deg, #edf4f4 0%, #f7fafb 100%);
  }

  .hero__grid,
  .process__grid,
  .about__grid,
  .contact__grid,
  .faq__grid,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    margin-inline: auto;
    max-width: 520px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__content h1 {
    max-width: 14ch;
  }

  .process__intro {
    position: static;
  }

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

  .cta__actions {
    justify-content: flex-start;
  }

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

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 1.1rem;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .hero__content h1 {
    font-size: 2.35rem;
  }

  .hero__actions,
  .cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-image {
    border-radius: 20px;
  }

  .hero-panel {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .trust-strip__grid,
  .services__grid,
  .renewal__grid,
  .testimonials__grid,
  .contact-cards,
  .footer__grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .process__steps article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process__steps h3,
  .process__steps p {
    grid-column: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .contact-cards a {
    min-height: 82px;
  }

  .map-card {
    min-height: 320px;
  }

  .map-card__visual {
    min-height: 296px;
  }

  .fixed-contact {
    right: 14px;
    bottom: 14px;
  }

  .fixed-contact a {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .brand-text small {
    display: none;
  }

  .hero__content h1 {
    font-size: 2.28rem;
  }

  .section-heading h2,
  .process__intro h2,
  .about__content h2,
  .faq__intro h2,
  .contact__content h2,
  .cta h2 {
    font-size: 1.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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