:root {
  --thm-font: 'Open Sans', sans-serif;
  --thm-font-2: 'Montserrat', sans-serif;
  --thm-gray: #585858;
  --thm-black: #151515;
  --thm-base: #004da1;
  --thm-base-dark: #003b7a;
  --thm-primary: #65cef5;
  --thm-light: #f4f8fc;
  --thm-white: #ffffff;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 1.7;
  background: var(--thm-white);
}

h1, h2, h3, h4 {
  font-family: var(--thm-font-2);
  color: var(--thm-black);
  font-weight: 800;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--thm-base);
  color: var(--thm-white);
}
.btn--primary:hover { background: var(--thm-base-dark); }
.btn--outline {
  background: transparent;
  color: var(--thm-base);
  border: 2px solid var(--thm-base);
}
.btn--outline:hover { background: var(--thm-base); color: #fff; }
.btn--light {
  background: var(--thm-white);
  color: var(--thm-base);
}
.btn--light:hover { background: var(--thm-primary); color: var(--thm-white); }

.section__tag {
  display: inline-block;
  color: var(--thm-base);
  background: rgba(0,77,161,.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__head { margin-bottom: 40px; max-width: 560px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2, .section__head--center h2 { font-size: 34px; }

/* Topbar */
.topbar {
  background: var(--thm-base);
  color: #fff;
}
.topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 18px;
  text-align: center;
}
.topbar__msg {
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
}
.topbar__sep {
  font-weight: 700;
  opacity: .7;
  color: #fff;
}
.topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--thm-base);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-family: var(--thm-font-2); font-size: 18px; color: var(--thm-black); }
.logo__text small { font-size: 12px; color: var(--thm-base); font-weight: 600; }
.logo--light .logo__text strong { color: #fff; }
.logo--light .logo__text small { color: var(--thm-primary); }

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--thm-black);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--thm-base); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--thm-black);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #eaf4fc 0%, #f7fbfe 100%);
  padding: 108px 0;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.25fr;
  gap: 24px;
  align-items: center;
}
.hero__content { max-width: 560px; order: 1; }
.hero__visual {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero__visual img {
  width: 100%;
  max-width: 850px;
  border: 1px solid #151515;
  border-radius: var(--radius);
  display: block;
}
.hero__title {
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--thm-base);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.hero__subtitle {
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  color: #e8862e;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero__divider {
  display: block;
  width: 100%;
  max-width: 560px;
  height: 2px;
  background: rgba(0,77,161,.35);
  margin-bottom: 24px;
}
.hero__call-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-black);
  margin-bottom: 4px;
}
.hero__number {
  display: block;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 52px;
  color: var(--thm-base);
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* Welcome */
.welcome { padding: 80px 0; }
.welcome__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.welcome__text h2 { font-size: 32px; margin-bottom: 20px; }
.welcome__text p { margin-bottom: 16px; }
.welcome__image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.welcome__image img { width: 100%; height: 320px; object-fit: cover; display: block; }
.welcome__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.welcome__point {
  background: var(--thm-light);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--thm-base);
}
.welcome__point h3 { font-size: 18px; margin-bottom: 8px; color: var(--thm-base); }
.welcome__point p { font-size: 14px; margin: 0; }

/* Services */
.services {
  padding: 80px 0;
  background-color: var(--thm-light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  perspective: 1200px;
}
.service-card {
  background: linear-gradient(160deg, #ffffff 0%, #eef4fb 100%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 2px 0 rgba(255,255,255,.6) inset,
    0 30px 40px -18px rgba(0,42,90,.28),
    0 10px 18px -8px rgba(0,42,90,.15);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-2deg) scale(1.02);
  box-shadow:
    0 2px 0 rgba(255,255,255,.6) inset,
    0 44px 55px -18px rgba(0,42,90,.35),
    0 16px 24px -8px rgba(0,77,161,.25);
}
.service-card__icon {
  font-size: 56px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--thm-base), var(--thm-base-dark));
  box-shadow:
    0 16px 26px -8px rgba(0,77,161,.5),
    inset 0 2px 4px rgba(255,255,255,.35),
    inset 0 -6px 10px rgba(0,0,0,.25);
}
.service-card__icon--svg svg {
  width: 48px;
  height: 48px;
}
.service-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}
.service-card p {
  font-size: 15px;
  margin: 0 0 26px;
  color: var(--thm-gray);
}
.service-card__btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Work */
.work { padding: 80px 0; background: var(--thm-light); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.work__step {
  position: relative;
  padding: 44px 40px;
  background: #fff;
  border: 2px solid #151515;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,40,90,.06);
}
.work__num {
  font-family: var(--thm-font-2);
  font-size: 20px;
  font-weight: 800;
  color: var(--thm-black);
  display: block;
  margin-bottom: 26px;
}
.work__step h3 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.work__step p { font-size: 15px; margin: 0; max-width: 480px; }

/* Reviews */
.reviews { padding: 80px 0; background: var(--thm-light); }
.reviews__rating {
  margin-top: 6px;
  font-size: 15px;
  color: #f5a623;
  letter-spacing: 2px;
}
.reviews__rating strong {
  font-family: var(--thm-font-2);
  color: var(--thm-black);
  letter-spacing: normal;
  margin-right: 6px;
}
.reviews__rating span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--thm-gray);
  letter-spacing: normal;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,40,90,.08);
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--thm-base);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 14px;
}
.review-card__name {
  display: block;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 14px;
  color: var(--thm-black);
  margin-bottom: 2px;
}
.review-card__stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
}
.review-card__text {
  font-size: 14px;
  color: var(--thm-gray);
  margin: 0;
}

/* Choose */
.choose {
  padding: 80px 0;
  background-color: var(--thm-light);
  background-image: repeating-linear-gradient(90deg, rgba(0,77,161,.05) 0px, rgba(0,77,161,.05) 1px, transparent 1px, transparent 14px);
}
.choose__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.choose__title { font-size: 44px; margin-bottom: 8px; }
.choose__subtitle { font-size: 16px; font-weight: 700; color: var(--thm-black); margin-bottom: 24px; }
.choose__list { margin-bottom: 30px; }
.choose__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--thm-black);
}
.choose__drop { font-size: 18px; line-height: 1; }
.choose__about h3 { font-size: 24px; margin-bottom: 12px; }
.choose__about p { font-size: 15px; color: var(--thm-gray); margin-bottom: 20px; }
.choose__areas h4 { font-size: 15px; color: var(--thm-base); margin-bottom: 6px; }
.choose__areas p { font-size: 14px; margin: 0; }
.choose__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,40,90,.15);
}
.choose__image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--thm-base) 0%, var(--thm-base-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.cta h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.cta p { color: var(--thm-primary); margin-bottom: 26px; }
.cta__email {
  display: inline-block;
  margin-top: 16px;
  background: #fff;
  color: var(--thm-black);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
}
.cta__email:hover { background: var(--thm-light); }

/* Footer */
.footer { background: var(--thm-black); color: #b9b9b9; padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; margin-bottom: 10px; color: #b9b9b9; }
.footer__col a:hover { color: var(--thm-primary); }
.footer__col > p { max-width: 300px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer__bottom p { font-size: 12px; color: #7d7d7d; text-align: center; }

/* Floating call + WhatsApp */
.float-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.call-fab {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  animation: pulse 2s infinite;
}
.call-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--thm-base);
  color: #fff;
  flex-shrink: 0;
}
.call-fab__icon svg { width: 26px; height: 26px; }
.call-fab__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  padding: 0 24px 0 16px;
}
.call-fab__text strong { font-size: 17px; font-weight: 800; color: #151515; }
.call-fab__text strong em { font-style: normal; color: #ef4444; }
.call-fab__text span { font-size: 19px; font-weight: 800; color: #151515; letter-spacing: .3px; }
.whatsapp-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
}
.whatsapp-fab svg { width: 32px; height: 32px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,77,161,.5); }
  70% { box-shadow: 0 0 0 14px rgba(0,77,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,77,161,0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__content { order: 2; max-width: none; text-align: center; }
  .hero__visual { order: 1; }
  .hero__visual img { max-width: 520px; }
  .hero__divider { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: 40px; }
  .hero__subtitle { font-size: 24px; }
  .hero__number { font-size: 38px; }
  .choose__inner { grid-template-columns: 1fr; }
  .choose__image { order: -1; }
  .choose__image img { min-height: 280px; }
  .choose__title { font-size: 34px; }
  .footer__inner { grid-template-columns: 1fr; }
  .welcome__inner { grid-template-columns: 1fr; }
  .welcome__image img { height: 260px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: 1fr; }
  .work__step { padding: 36px 28px; }
  .work__step h3 { font-size: 21px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 18px; }
  .hero__number { font-size: 30px; }
  .hero__visual img { max-width: 460px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { padding: 12px 22px; font-size: 14px; }
  .work__step { padding: 28px 20px; }
  .work__step h3 { font-size: 19px; }
  .float-fab { right: 14px; bottom: 14px; gap: 10px; }
  .call-fab__icon, .whatsapp-fab { width: 52px; height: 52px; }
  .call-fab__text { padding: 0 18px 0 12px; }
  .call-fab__text strong { font-size: 13px; }
  .call-fab__text span { font-size: 15px; }
  .welcome__points { grid-template-columns: 1fr; }
  .welcome__image img { height: 220px; }
  .services__grid { grid-template-columns: 1fr; }
  .choose__title { font-size: 28px; }
  .choose__subtitle { font-size: 14px; }
  .choose__list li { font-size: 14px; }
  .choose__image img { min-height: 220px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card { padding: 20px; }
  .topbar__inner { font-size: 12px; gap: 6px; flex-wrap: wrap; padding: 8px 16px; }
  .topbar__phone { font-size: 16px; color: #fff; }
  .header__inner { padding: 12px 16px; gap: 12px; }
  .header__cta { padding: 10px 16px; font-size: 13px; }
  .logo__icon { width: 38px; height: 38px; }
  .logo__text strong { font-size: 15px; }
  .logo__text small { font-size: 10px; }
}
