@charset "UTF-8";
@keyframes float-blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes growBorder {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.animate-blob {
  animation: blob 7s infinite alternate;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

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

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: 6rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 4rem;
  }
}

p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.25rem;
  }
}

.text-brand-green {
  color: #4ade80;
}
.text-brand-blue {
  color: #38bdf8;
}

.italic-accent {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.glass-blur {
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.animate-blob {
  animation: float-blob 10s ease-in-out forwards;
}

.animate-float {
  animation: float 5s ease-in-out forwards;
}

.animate-zoom {
  animation: slowZoom 20s ease-in-out alternate infinite;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.21, 0.45, 0.32, 0.9) forwards;
}

.border-animate {
  position: relative;
}
.border-animate::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 8px;
  background-color: #4ade80;
  border-radius: 4px;
  animation: growBorder 1s ease-out forwards;
  animation-delay: 0.5s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 180px;
  width: 100%;
  padding: 1rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 480px) {
  .btn {
    width: 280px;
  }
}
@media screen and (min-width: 600px) {
  .btn {
    width: 45%;
  }
}
.btn--primary {
  background-color: #4ade80;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}
.btn--primary:hover {
  transform: scale(1.05);
  background-color: rgb(95.5677570093, 225.9322429907, 143.1331775701);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-card {
  perspective: 1000px;
}
.service-card__inner {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: 2.5rem;
  background: rgba(56, 189, 248, 0.9);
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
}
.service-card__inner:hover {
  transform: translateY(-1rem) rotateX(6deg);
  background: #38bdf8;
  border-color: rgba(255, 255, 255, 0.4);
}
.service-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 550px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}
.service-card .full-width {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.service-card .btn--white, .service-card__details-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.service-card .btn--white {
  background: #ffffff;
  color: #0f172a;
}
.service-card .btn--white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-card__details-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  backdrop-filter: blur(5px);
}
.service-card__details-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.5px;
}
.service-card__details-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.service-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: all 1s ease;
}
.service-card:hover .service-card__shine {
  left: 100%;
}
.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.service-card__icon-box {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid rgba(74, 222, 128, 0.95);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__icon-box {
  transform: rotateY(360deg);
}
.service-card__price-value {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: right;
  font-size: 12px;
}
.service-card__price-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.service-card__price-value {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
}
.service-card__name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.service-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.faq {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), #f8fafc, rgba(56, 189, 248, 0.1));
}
@media (min-width: 768px) {
  .faq {
    padding: 6rem 0;
  }
}
.faq__blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.5;
}
.faq__blob--1 {
  width: 24rem;
  height: 24rem;
  top: 25%;
  left: -5rem;
  background: rgba(74, 222, 128, 0.15);
}
.faq__blob--2 {
  width: 30rem;
  height: 30rem;
  bottom: 25%;
  right: -5rem;
  background: rgba(56, 189, 248, 0.15);
  animation-delay: 4s;
}
.faq__header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}
.faq__title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
  color: #0f172a;
}
.faq__divider {
  height: 0.4rem;
  width: 6rem;
  background: linear-gradient(to right, #4ade80, #38bdf8);
  margin: 1rem auto 0;
  border-radius: 100px;
}

.faq-item {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 2.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.06), -8px -8px 20px #ffffff;
}
@media (min-width: 768px) {
  .faq-item {
    max-width: 80%;
    margin: 0 auto 1.5rem;
  }
}
.faq-item::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(74, 222, 128, 0.03), rgba(56, 189, 248, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.12);
}
.faq-item:hover::before {
  opacity: 1;
}
.faq-item--active {
  background-color: #f8fafc;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.08);
}
.faq-item--active::before {
  opacity: 1;
}
.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
  border-color: rgba(56, 189, 248, 0.3);
}
.faq-item__trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-item__question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-item__question {
  color: #38bdf8;
}
.faq-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05), -4px -4px 10px #ffffff;
}
.faq-item__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #38bdf8;
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2.5rem;
}
.faq-item--active .faq-item__content {
  max-height: 500px;
  padding-bottom: 2rem;
}
.faq-item__answer {
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  font-size: 1.1rem;
  font-style: italic;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal.hidden .modal__content {
  transform: scale(0.95) translateY(20px);
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 50rem;
  height: 90vh;
  max-height: 90vh;
  background: #ffffff;
  background: #ffffff;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 3rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .modal__content {
    padding: 4rem 4rem 3rem;
  }
}
.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: #f1f5f9;
  border: none;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
}
.modal__close:hover {
  background: #38bdf8;
}
.modal__close:hover svg {
  color: #ffffff;
  transform: rotate(90deg);
}
.modal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.modal__service-tag {
  flex-shrink: 0;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.modal__tabs {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.modal__tabs::-webkit-scrollbar {
  display: none;
}
.modal__tabs {
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0.5rem 1rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
@media (min-width: 768px) {
  .modal__tabs {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
    justify-content: flex-start;
  }
}
.modal__tabs svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2px;
}
.modal__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .modal__tab {
    font-size: 0.85rem;
  }
}
.modal__tab.active {
  background: #38bdf8;
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}
.modal__tab.active svg {
  color: #ffffff;
}
.modal__panes {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 1rem;
}
.modal__panes::-webkit-scrollbar {
  width: 4px;
}
.modal__panes::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.modal__pane {
  display: none;
}
.modal__pane.active {
  display: block;
  animation: modalFadeIn 0.4s ease forwards;
}
.modal__list {
  list-style: none;
  padding: 0;
}
.modal__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 1rem;
}
.modal__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 900;
  font-size: 1.1rem;
}
.modal__footer {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  position: relative;
  padding: 6rem 0 3rem;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
}
.footer__radial {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
}
.footer__blob {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}
.footer__grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__main-title {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-style: italic;
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.footer__title-line-1 {
  color: rgba(255, 255, 255, 0.1);
  display: block;
}
.footer__title-line-2 {
  color: rgba(74, 222, 128, 0.3);
  display: block;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .footer__title-line-2 {
    padding-left: 4rem;
  }
}
.footer__description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  border-left: 2px solid rgba(56, 189, 248, 0.3);
  padding-left: 2rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.footer__description--muted {
  color: rgba(255, 255, 255, 0.8);
}
.footer__social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__social-btn {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.footer__social-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: #ffffff;
  transition: transform 0.5s ease;
}
.footer__social-btn:hover {
  background: #38bdf8;
  transform: translateY(-5px);
}
.footer__social-btn:hover svg {
  transform: scale(1.2);
}
.footer__card-wrapper {
  position: relative;
}
.footer__glow-bg {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, #4ade80, #38bdf8);
  opacity: 0.1;
  filter: blur(40px);
  transition: opacity 0.5s ease;
}
.group:hover .footer__glow-bg {
  opacity: 0.2;
}
.footer__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 2.5rem;
  border-radius: 3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer__card {
    padding: 3.5rem;
  }
}
.footer__contact-block {
  margin-bottom: 2.5rem;
}
.footer__label {
  color: #4ade80;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.footer__phone {
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  transition: color 0.3s ease;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer__phone:hover {
  color: #4ade80;
}
@media (min-width: 768px) {
  .footer__phone {
    font-size: 1.75rem;
  }
}
.footer__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__detail-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.footer__detail-value {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.footer__bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__logo {
  height: 6rem;
  width: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__brand-name {
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}
.footer__brand-sub {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer__copyright {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #475569;
  text-align: center;
}
.footer__copyright-motto {
  color: rgba(255, 255, 255, 0.1);
  margin-left: 0.5rem;
}

.btn--gradient {
  height: 4rem;
  padding: 0 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(to bottom right, #4ade80, #38bdf8);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}
.btn--gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-sizing: border-box;
  background: linear-gradient(to right, rgba(74, 222, 128, 0.6), rgba(56, 189, 248, 0.9));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid transparent;
  border-left: none;
  border-right: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .navbar__inner {
    height: 5rem;
    padding: 0;
  }
}
.navbar__mobile-toggle {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .navbar__mobile-toggle {
    display: none;
  }
}
.navbar__logo-box {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #4ade80;
  padding: 0.4rem;
  border-radius: 0.75rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.navbar__logo-box:hover {
  transform: scale(1.05);
}
.navbar__menu {
  display: none;
}
@media (min-width: 768px) {
  .navbar__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.navbar__link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.navbar__link:hover {
  border-bottom-color: #ffffff;
}
.navbar__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}
.navbar__social-link {
  color: #ffffff;
}
.navbar__social-link i {
  width: 1.1rem;
  height: 1.1rem;
}
.navbar__social-link:hover {
  transform: scale(1.2);
}
.navbar__burger {
  background: transparent;
  border: none;
  padding: 0.5rem;
  margin: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__burger i {
  width: 1.75rem;
  height: 1.75rem;
}
.navbar__mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  background: rgba(56, 189, 248, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
}
.navbar__mobile-menu.hidden {
  display: none;
}
.navbar__mobile-links {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.navbar__mobile-links a {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.section-wrapper {
  position: relative;
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .section-wrapper {
    padding: 8rem 0;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #192a56;
  background-image: url("../../images/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}
@media (min-width: 768px) {
  .hero__overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
  }
}
.hero__card {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  width: 100%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  border-radius: 24px;
  border-left: 6px solid #4ade80;
}
@media (min-width: 768px) {
  .hero__card {
    padding: 50px;
    margin-left: 5%;
  }
}
.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 20px;
}
.hero__title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin: 0;
}
.hero__badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
@media (min-width: 768px) {
  .hero__badge {
    width: 80px;
    height: 80px;
  }
}
.hero__badge-glass {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__rotating-logo {
  width: 70%;
  height: auto;
  animation: rotateY 10s linear infinite;
}
.hero__service-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero__service-title span {
  color: #4ade80;
  display: block;
  font-size: 0.6em;
  margin-top: 10px;
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero__locations {
  color: #4ade80;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
}
.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

@keyframes rotateY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.services {
  position: relative;
  overflow: hidden;
  background-color: rgba(56, 189, 248, 0.05);
}
.services__blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .services__blob {
    width: 600px;
    height: 600px;
    filter: blur(150px);
  }
}
.services__blob--1 {
  top: 10%;
  left: -10%;
  background-color: rgba(74, 222, 128, 0.1);
}
.services__blob--2 {
  bottom: 10%;
  right: -10%;
  background-color: rgba(56, 189, 248, 0.1);
  animation-delay: 2s;
}
.services__header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .services__header {
    margin-bottom: 5rem;
  }
}
.services__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.services__title--italic {
  color: #38bdf8;
  font-style: italic;
}
.services__divider {
  height: 0.5rem;
  width: 12rem;
  margin: 0 auto;
  border-radius: 100px;
  background: linear-gradient(to right, #4ade80, #38bdf8);
}
.services__grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  perspective: 2000px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.details {
  position: relative;
  overflow: hidden;
  background-color: rgba(74, 222, 128, 0.05);
}
.details__blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}
.details__blob--1 {
  top: 10%;
  left: -10%;
  background: #4ade80;
}
.details__blob--2 {
  bottom: 10%;
  right: -10%;
  background: #38bdf8;
  animation-delay: 2s;
}
.details__header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 10;
}
.details__title {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 2rem;
}
.details__title--italic {
  color: #4ade80;
  font-style: italic;
}
.details__subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 45rem;
  margin: 0 auto 2.5rem;
  font-style: italic;
  font-weight: 500;
}
.details__divider {
  height: 0.5rem;
  width: 12rem;
  background: linear-gradient(to right, #4ade80, #38bdf8);
  margin: 0 auto;
  border-radius: 100px;
}
.details__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (min-width: 1024px) {
  .details__list {
    gap: 12rem;
  }
}
.details__item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .details__item {
    flex-direction: row;
    gap: 5rem;
  }
  .details__item--reverse {
    flex-direction: row-reverse;
  }
}
.details__media {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .details__media {
    width: 50%;
  }
}
.details__img-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .details__img-wrapper {
    border-radius: 3.5rem;
  }
}
.details__img-wrapper img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .details__img-wrapper img {
    height: 500px;
  }
}
.group:hover .details__img-wrapper {
  transform: scale(1.02);
}
.details__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 20;
  animation: badgeFloat 4s ease-in-out infinite;
  will-change: transform;
}
.details__badge--left {
  right: auto;
  left: -1rem;
}
@media (min-width: 768px) {
  .details__badge {
    padding: 1.5rem;
    border-radius: 2rem;
    bottom: -2rem;
  }
}
.details__badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.details__badge-icon--green {
  background: #4ade80;
  box-shadow: 0 10px 15px rgba(74, 222, 128, 0.2);
}
.details__badge-icon--blue {
  background: #38bdf8;
  box-shadow: 0 10px 15px rgba(56, 189, 248, 0.2);
}
.details__badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}
.details__badge-text {
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.1;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .details__badge-text {
    font-size: 1.1rem;
  }
}
.details__content {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .details__content {
    width: 50%;
  }
}
.details__number {
  position: absolute;
  top: -4rem;
  left: -1rem;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(241, 245, 249, 0.6);
  z-index: -1;
  line-height: 1;
}
@media (min-width: 768px) {
  .details__number {
    font-size: 12rem;
    top: -6rem;
    left: -2.5rem;
  }
}
@media (min-width: 1024px) {
  .details__number--right {
    left: auto;
    right: -2.5rem;
  }
}
.details__item-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.details__item-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid rgba(74, 222, 128, 0.2);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .details__item-desc {
    font-size: 1.25rem;
  }
}
.details__checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .details__checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.details__check-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #334155;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.details__check-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #4ade80;
  stroke-width: 3px;
}
.details__check-item--blue svg {
  stroke: #38bdf8;
}
.details__check-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */