:root {
  --primary: #087f8c;
  --primary-dark: #055e68;
  --primary-light: #eaf8f9;
  --secondary: #d99b2b;
  --secondary-dark: #b67a11;
  --dark: #15313a;
  --text: #53656b;
  --muted: #75868b;
  --white: #ffffff;
  --light: #f7fafb;
  --border: #dfe9eb;
  --success: #198754;
  --shadow: 0 16px 45px rgba(18, 55, 64, 0.11);
  --radius: 20px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section--light {
  background: var(--light);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.content-block h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.section-heading p,
.content-block > p {
  color: var(--text);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: #f4c96d;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.button--primary {
  color: var(--white);
  background: var(--primary);
}

.button--primary:hover {
  background: var(--primary-dark);
}

.button--secondary {
  color: var(--dark);
  background: var(--secondary);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--secondary-dark);
}

.button--outline {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--primary);
}

.button--light-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

.button--light-outline:hover {
  color: var(--primary-dark);
  background: var(--white);
}

.button--full {
  width: 100%;
}

.topbar {
  padding: 9px 0;
  color: var(--white);
  background: var(--primary-dark);
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.language-switcher {
  display: flex;
  gap: 7px;
}

.language-switcher__link {
  padding: 4px 8px;
  border-radius: 6px;
}

.language-switcher__link--active {
  background: rgba(255, 255, 255, 0.17);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(223, 233, 235, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.navbar {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1.02rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-navigation a {
  font-size: 0.93rem;
  font-weight: 700;
  transition: color var(--transition);
}

.main-navigation a:hover {
  color: var(--primary);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 11px;
  color: var(--dark);
  background: var(--light);
  cursor: pointer;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 82% 14%, rgba(8, 127, 140, 0.15), transparent 30%),
    linear-gradient(135deg, #f6fbfc 0%, #ffffff 55%, #eef9fa 100%);
}

.hero::before {
  position: absolute;
  top: -165px;
  right: -135px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(8, 127, 140, 0.055);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  color: var(--primary-dark);
  background: var(--primary-light);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--primary);
}

.hero__description {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.13rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 31px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
}

.hero__features li {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero__features li::before {
  margin-right: 8px;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.hero-card {
  padding: 36px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(8, 127, 140, 0.98), rgba(5, 94, 104, 0.99));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero-card > p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-card__steps {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.hero-card__steps > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
}

.hero-card__steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--primary-dark);
  background: var(--white);
  border-radius: 10px;
  font-weight: 900;
}

.hero-card__steps p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-item__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 13px;
  font-size: 1.25rem;
}

.specialty-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:inherit;
    cursor:pointer;
    transition:.3s;
}

.specialty-card:hover{
    text-decoration:none;
    color:inherit;
    transform:translateY(-6px);
}

.specialty-link{
    margin-top:auto;
    color:#0b8b68;
    font-weight:600;
}

.specialty-card:hover .specialty-link{
    text-decoration:underline;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.8rem;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

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

.specialty-card,
.service-card,
.step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.specialty-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 127, 140, 0.35);
  box-shadow: var(--shadow);
}

.specialty-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 16px;
  font-size: 1.55rem;
  font-weight: 800;
}

.specialty-card h3,
.service-card h3,
.step-card h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.specialty-card p,
.service-card p,
.step-card p {
  color: var(--text);
  font-size: 0.92rem;
}

.specialty-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin-top: 27px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
}

.content-block__actions {
  margin-top: 30px;
}

.info-panel {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel > h3 {
  margin-bottom: 22px;
  font-size: 1.5rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.mini-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.45rem;
}

.mini-card h4 {
  margin-bottom: 7px;
  font-size: 1.02rem;
}

.mini-card p {
  color: var(--text);
  font-size: 0.88rem;
}

.service-card {
  padding: 28px;
  background: var(--primary-light);
}

.step-card {
  position: relative;
  padding: 30px;
}

.step-card__number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 14px;
  font-weight: 900;
}

.cost-panel {
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.cost-panel h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.2;
}

.cost-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.cost-panel ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
}

.cost-panel li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  margin-bottom: 13px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--primary);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 21px;
  color: var(--text);
}

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

.contact-box {
  max-width: 960px;
  margin-inline: auto;
  padding: 58px 45px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.contact-box > p {
  max-width: 730px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.83);
}

.contact-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-box__note {
  margin-top: 22px !important;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer {
  padding: 65px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  margin-bottom: 45px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 19px;
  font-size: 0.9rem;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  font-size: 1.55rem;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .main-navigation {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .main-navigation--open {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero__grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 45px;
  }

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

  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .topbar__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__items {
    gap: 7px 14px;
  }

  .navbar__cta {
    display: none;
  }

  .hero {
    padding: 66px 0 68px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-card,
  .info-panel,
  .cost-panel,
  .contact-box {
    padding: 28px 22px;
  }

  .cards-grid--four,
  .cards-grid--three,
  .trust-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-box__actions .button,
  .hero__actions .button {
    width: 100%;
  }
}
