:root {
  --black: #020711;
  --navy: #061222;
  --navy-2: #081b32;
  --blue: #38d5ff;
  --blue-soft: rgba(56, 213, 255, 0.18);
  --blue-glow: rgba(56, 213, 255, 0.7);
  --gold: #f2c66d;
  --gold-soft: rgba(242, 198, 109, 0.18);
  --gold-glow: rgba(242, 198, 109, 0.6);
  --white: #ffffff;
  --muted: #aeb9c8;
  --glass: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(56, 213, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #020711, #061222 55%, #020711);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  box-shadow:
    0 0 30px rgba(56, 213, 255, 0.35),
    0 0 70px rgba(242, 198, 109, 0.15);
}

.loader-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border-top: 2px solid var(--blue);
  border-right: 2px solid transparent;
  animation: spin 1.1s linear infinite;
}

.loader-ring span {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.page {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 213, 255, 0.22), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(242, 198, 109, 0.16), transparent 28%),
    radial-gradient(circle at 52% 85%, rgba(56, 213, 255, 0.14), transparent 36%),
    linear-gradient(135deg, #01040b, #061222 48%, #01040b);
  overflow: hidden;
}

.background-system {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.gradient-field {
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(115deg, transparent 20%, rgba(56, 213, 255, 0.09), transparent 45%),
    linear-gradient(300deg, transparent 25%, rgba(242, 198, 109, 0.08), transparent 54%);
  filter: blur(14px);
  animation: gradientMove 16s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes gradientMove {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(3%, 2%, 0) rotate(4deg);
  }
}

.grid-field {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.light-line {
  position: absolute;
  width: 44vw;
  height: 1px;
  left: -25%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold), transparent);
  box-shadow:
    0 0 24px rgba(56, 213, 255, 0.7),
    0 0 54px rgba(242, 198, 109, 0.35);
  opacity: 0;
  transform: rotate(-18deg);
  animation: lightTravel 7.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.line-one {
  top: 22%;
}

.line-two {
  top: 68%;
  animation-delay: 2.6s;
}

@keyframes lightTravel {
  0% {
    transform: translate3d(-20vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  70% {
    opacity: 0.85;
  }

  100% {
    transform: translate3d(150vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 12px rgba(56, 213, 255, 0.95),
    0 0 24px rgba(242, 198, 109, 0.35);
  animation: starFloat linear infinite;
  will-change: transform, opacity;
}

.star.gold {
  background: rgba(242, 198, 109, 0.9);
  box-shadow:
    0 0 10px rgba(242, 198, 109, 0.95),
    0 0 28px rgba(56, 213, 255, 0.25);
}

@keyframes starFloat {
  0% {
    transform: translate3d(0, 35px, 0) scale(0.8);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate3d(0, -110vh, 0) scale(1.08);
    opacity: 0;
  }
}

.floating-logo {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 24vw, 430px);
  opacity: 0.19;
  filter:
    drop-shadow(0 0 10px rgba(56, 213, 255, 0.58))
    drop-shadow(0 0 28px rgba(56, 213, 255, 0.42))
    drop-shadow(0 0 56px rgba(242, 198, 109, 0.24));
  animation:
    logoDrift 34s linear infinite,
    logoPulse 6s ease-in-out infinite,
    logoShimmer 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.floating-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.logo-one {
  left: 1%;
  top: 18%;
}

.logo-two {
  right: -8%;
  top: 8%;
  width: clamp(230px, 38vw, 620px);
  animation-delay: -10s, -2s, -3s;
}

.logo-three {
  left: -9%;
  bottom: 10%;
  width: clamp(200px, 32vw, 540px);
  opacity: 0.15;
  animation-delay: -18s, -3s, -5s;
}

.logo-blue {
  fill: none;
  stroke: rgba(56, 213, 255, 0.78);
  stroke-width: 5.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-gold {
  fill: none;
  stroke: rgba(242, 198, 109, 0.82);
  stroke-width: 5.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  fill: rgba(255, 255, 255, 0.76);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 800;
}

@keyframes logoDrift {
  0% {
    transform: translate3d(-10px, 18px, 0) rotate(-7deg) scale(0.96);
  }

  25% {
    transform: translate3d(34px, -24px, 0) rotate(4deg) scale(1.03);
  }

  50% {
    transform: translate3d(72px, 16px, 0) rotate(-2deg) scale(1.08);
  }

  75% {
    transform: translate3d(28px, 44px, 0) rotate(6deg) scale(1.01);
  }

  100% {
    transform: translate3d(-10px, 18px, 0) rotate(-7deg) scale(0.96);
  }
}

@keyframes logoPulse {
  50% {
    scale: 1.04;
  }
}

@keyframes logoShimmer {
  0%, 100% {
    opacity: 0.14;
  }

  50% {
    opacity: 0.25;
  }
}

.container {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 5;
  padding: 34px 0 44px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  animation: revealDown 0.9s ease forwards;
  opacity: 0;
  transform: translate3d(0, -18px, 0);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 72px;
  height: 72px;
  filter:
    drop-shadow(0 0 12px rgba(56, 213, 255, 0.45))
    drop-shadow(0 0 24px rgba(242, 198, 109, 0.25));
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.operation-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(20px);
  color: #dfefff;
  font-size: 0.87rem;
  font-weight: 600;
}

.operation-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  50% {
    transform: scale(1.5);
    opacity: 0.45;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 68px;
  padding: 90px 0 48px;
}

.hero-content {
  max-width: 610px;
}

.eyebrow {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 22px;
  animation: revealUp 0.9s ease 0.4s forwards;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.05em;
  animation: revealUp 1s ease 0.55s forwards;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.hero h1 span {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(242, 198, 109, 0.18);
}

.gold-line {
  width: 72px;
  height: 2px;
  margin: 30px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(242, 198, 109, 0.5);
  animation: revealLine 0.9s ease 0.85s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-text {
  max-width: 540px;
  color: #d6deeb;
  line-height: 1.85;
  font-size: 1rem;
  animation: revealUp 1s ease 0.95s forwards;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.upgrade-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding: 15px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.73rem;
  font-weight: 800;
  animation: revealUp 1s ease 1.1s forwards;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.upgrade-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(56, 213, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 35% 25%, rgba(56, 213, 255, 0.24), transparent 35%);
  box-shadow:
    0 0 40px rgba(56, 213, 255, 0.28),
    0 0 100px rgba(56, 213, 255, 0.18),
    inset 0 0 50px rgba(56, 213, 255, 0.09);
  backdrop-filter: blur(22px);
  overflow: hidden;
  animation: panelReveal 1.1s ease 0.8s forwards;
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.96);
  will-change: transform;
}

.panel-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 55%, rgba(56, 213, 255, 0.24), transparent 34%),
    radial-gradient(circle at 72% 75%, rgba(242, 198, 109, 0.18), transparent 30%);
}

.panel-logo {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 142px;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 12px rgba(56, 213, 255, 0.45))
    drop-shadow(0 0 24px rgba(242, 198, 109, 0.18));
}

.panel-logo svg {
  width: 100%;
}

.chart-bars {
  position: absolute;
  right: 74px;
  bottom: 175px;
  display: flex;
  gap: 24px;
  align-items: end;
}

.chart-bars span {
  width: 58px;
  border: 1px solid rgba(56, 213, 255, 0.75);
  background:
    linear-gradient(rgba(56, 213, 255, 0.22), rgba(56, 213, 255, 0.04)),
    repeating-linear-gradient(45deg, rgba(56, 213, 255, 0.22) 0 1px, transparent 1px 10px);
  box-shadow:
    0 0 18px rgba(56, 213, 255, 0.55),
    inset 0 0 18px rgba(56, 213, 255, 0.18);
  animation: barGlow 3s ease-in-out infinite;
}

.chart-bars span:nth-child(1) {
  height: 120px;
}

.chart-bars span:nth-child(2) {
  height: 190px;
  animation-delay: 0.4s;
}

.chart-bars span:nth-child(3) {
  height: 280px;
  animation-delay: 0.8s;
}

@keyframes barGlow {
  50% {
    box-shadow:
      0 0 32px rgba(56, 213, 255, 0.85),
      inset 0 0 26px rgba(56, 213, 255, 0.28);
  }
}

.globe {
  position: absolute;
  width: 210px;
  height: 210px;
  left: 105px;
  bottom: 95px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.75), transparent 12%),
    radial-gradient(circle at 35% 35%, rgba(56, 213, 255, 0.5), transparent 32%),
    radial-gradient(circle at 70% 80%, rgba(2, 7, 17, 0.8), rgba(56, 213, 255, 0.18));
  box-shadow:
    inset -30px -35px 60px rgba(0, 0, 0, 0.5),
    0 0 45px rgba(56, 213, 255, 0.55);
}

.orbit {
  position: absolute;
  width: 410px;
  height: 90px;
  left: 58px;
  bottom: 160px;
  border-bottom: 3px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 0 10px 24px rgba(242, 198, 109, 0.45);
  animation: orbitGlow 3.8s ease-in-out infinite;
}

@keyframes orbitGlow {
  50% {
    filter: brightness(1.45);
  }
}

.arrow-growth {
  position: absolute;
  width: 260px;
  height: 4px;
  right: 80px;
  top: 225px;
  background: linear-gradient(90deg, transparent, var(--blue));
  transform: rotate(-34deg);
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.8);
}

.arrow-growth::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -9px;
  width: 20px;
  height: 20px;
  border-top: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
  transform: rotate(45deg);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: revealUp 1s ease 1.25s forwards;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  min-height: 116px;
  border-right: 1px solid var(--border);
}

.contact-item:last-child {
  border-right: none;
}

.contact-item i {
  color: var(--gold);
  font-size: 1.9rem;
  filter: drop-shadow(0 0 12px rgba(242, 198, 109, 0.32));
}

.contact-item span {
  color: #dbe5f2;
  display: block;
  font-size: 0.92rem;
  margin-bottom: 7px;
}

.contact-item strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

.services {
  padding: 30px 0 34px;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-top: 8px;
  font-weight: 600;
}

.section-title div {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
  box-shadow: 0 0 18px rgba(242, 198, 109, 0.55);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  perspective: 1500px;
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 34px 22px;
  border-radius: 22px;
  text-align: center;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 50% 0%, rgba(56, 213, 255, 0.16), transparent 45%);
  border: 1px solid rgba(56, 213, 255, 0.4);
  box-shadow:
    0 0 24px rgba(56, 213, 255, 0.22),
    inset 0 0 26px rgba(56, 213, 255, 0.08);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  opacity: 0;
  animation:
    cardEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    cardFloat 5s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, opacity;
}

.card-left {
  transform: rotateZ(-7deg);
  animation-delay: 1.35s, 2.4s;
}

.card-mid-left {
  transform: rotateZ(-3deg);
  animation-delay: 1.48s, 2.7s;
}

.card-center {
  transform: scale(1.06);
  border-color: rgba(56, 213, 255, 0.82);
  box-shadow:
    0 0 34px rgba(56, 213, 255, 0.5),
    inset 0 0 36px rgba(56, 213, 255, 0.16);
  animation-delay: 1.61s, 3s;
}

.card-mid-right {
  transform: rotateZ(3deg);
  animation-delay: 1.74s, 3.3s;
}

.card-right {
  transform: rotateZ(7deg);
  animation-delay: 1.87s, 3.6s;
}

.service-card:hover {
  transform: translate3d(0, -14px, 0) rotateZ(0deg) scale(1.05);
  border-color: rgba(242, 198, 109, 0.7);
  box-shadow:
    0 0 40px rgba(56, 213, 255, 0.42),
    0 0 70px rgba(242, 198, 109, 0.18),
    inset 0 0 36px rgba(56, 213, 255, 0.14);
}

.service-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
}

.service-card i {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  margin: 28px 0 24px;
  filter:
    drop-shadow(0 0 12px rgba(242, 198, 109, 0.5))
    drop-shadow(0 0 22px rgba(56, 213, 255, 0.2));
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-card p {
  color: #d4dfeb;
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 2px;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 14px rgba(242, 198, 109, 0.55);
}

@keyframes cardEnter {
  0% {
    opacity: 0;
    transform: translate3d(-46px, 35px, 0) rotateY(-30deg) rotateZ(-8deg) scale(0.88);
  }

  70% {
    opacity: 1;
    transform: translate3d(8px, -10px, 0) rotateY(8deg) rotateZ(2deg) scale(1.02);
  }

  100% {
    opacity: 1;
  }
}

@keyframes cardFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px 34px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.trust-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-main i {
  color: var(--gold);
  font-size: 3rem;
}

.trust-main h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.trust-main p {
  color: #d3deeb;
  line-height: 1.6;
  font-size: 0.92rem;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-points i {
  color: var(--gold);
  font-size: 1.8rem;
}

.trust-points span {
  color: #edf6ff;
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer {
  text-align: center;
  padding: 36px 0 0;
}

.footer p {
  color: #eef6ff;
  font-size: 1.05rem;
}

.footer strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 26px 0;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(242, 198, 109, 0.45);
  color: var(--gold);
  transition: 0.25s ease;
}

.socials a:hover {
  transform: translateY(-4px);
  background: rgba(242, 198, 109, 0.12);
  box-shadow: 0 0 24px rgba(242, 198, 109, 0.22);
}

.footer small {
  color: rgba(255, 255, 255, 0.45);
}

.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-5px);
}

.whatsapp strong,
.whatsapp span {
  display: block;
}

.whatsapp strong {
  font-size: 0.95rem;
}

.whatsapp span {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 2px;
}

.whatsapp i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: #25d366;
  font-size: 1.65rem;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.45);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealDown {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes panelReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 480px;
  }

  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-item:nth-child(2) {
    border-right: none;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 520px);
    padding-top: 22px;
    padding-bottom: 96px;
  }

  .header {
    align-items: flex-start;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-mark svg {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .operation-pill {
    display: none;
  }

  .hero {
    padding: 60px 0 34px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .hero-panel {
    min-height: 360px;
    border-radius: 26px;
  }

  .panel-logo {
    width: 100px;
  }

  .chart-bars {
    right: 35px;
    bottom: 100px;
    gap: 13px;
  }

  .chart-bars span {
    width: 34px;
  }

  .chart-bars span:nth-child(1) {
    height: 75px;
  }

  .chart-bars span:nth-child(2) {
    height: 115px;
  }

  .chart-bars span:nth-child(3) {
    height: 160px;
  }

  .globe {
    width: 140px;
    height: 140px;
    left: 42px;
    bottom: 70px;
  }

  .orbit {
    width: 260px;
    left: 20px;
    bottom: 110px;
  }

  .arrow-growth {
    width: 160px;
    right: 50px;
    top: 150px;
  }

  .contact-strip,
  .service-cards,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .contact-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .service-card,
  .card-left,
  .card-mid-left,
  .card-center,
  .card-mid-right,
  .card-right {
    min-height: 290px;
    transform: none;
  }

  .trust-main {
    align-items: flex-start;
  }

  .whatsapp {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
  }

  .floating-logo {
    opacity: 0.13;
  }

  .logo-two {
    right: -46%;
    width: 92vw;
  }

  .logo-three {
    left: -48%;
    width: 85vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   FULL RESPONSIVE SUPPORT
   ========================= */

@media (max-width: 1200px) {
  .container {
    width: min(100% - 32px, 1040px);
  }

  .hero {
    gap: 48px;
  }

  .service-card {
    min-height: 330px;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 680px);
    padding-top: 22px;
    padding-bottom: 96px;
  }

  .header {
    align-items: flex-start;
  }

  .operation-pill {
    display: none;
  }

  .hero {
    padding: 56px 0 34px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-panel {
    min-height: 390px;
    border-radius: 26px;
  }

  .contact-strip,
  .service-cards,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .contact-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .service-card,
  .card-left,
  .card-mid-left,
  .card-center,
  .card-mid-right,
  .card-right {
    min-height: 280px;
    transform: none;
  }

  .trust-main {
    align-items: flex-start;
  }

  .whatsapp {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .brand-mark,
  .brand-mark svg {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .eyebrow {
    font-size: 0.86rem;
  }

  .upgrade-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.66rem;
  }

  .hero-panel {
    min-height: 330px;
  }

  .panel-logo {
    width: 86px;
  }

  .chart-bars {
    right: 28px;
    bottom: 92px;
    gap: 10px;
  }

  .chart-bars span {
    width: 28px;
  }

  .globe {
    width: 120px;
    height: 120px;
    left: 34px;
    bottom: 66px;
  }

  .orbit {
    width: 230px;
    left: 10px;
    bottom: 104px;
  }

  .arrow-growth {
    width: 130px;
    right: 36px;
    top: 140px;
  }

  .contact-item {
    padding: 22px;
  }

  .section-title h2 {
    font-size: 2.15rem;
  }

  .trust-strip {
    padding: 24px;
  }

  .footer p {
    font-size: 0.95rem;
  }
}