:root {
  --bg: #040b17;
  --bg-soft: #09162b;
  --panel: rgba(11, 27, 52, 0.74);
  --panel-strong: rgba(13, 30, 58, 0.92);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #f8fbff;
  --muted: #b4c4da;
  --accent: #6ed6ff;
  --accent-strong: #2daeff;
  --accent-soft: rgba(110, 214, 255, 0.1);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 40px rgba(6, 12, 28, 0.26);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(63, 156, 255, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(110, 214, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #07142d 0%, #040b17 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.38;
  pointer-events: none;
}

.orb-one {
  top: 110px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(48, 168, 255, 0.3);
  animation: floatY 8s ease-in-out infinite;
}

.orb-two {
  top: 880px;
  right: -70px;
  width: 230px;
  height: 230px;
  background: rgba(110, 214, 255, 0.16);
  animation: floatX 10s ease-in-out infinite;
}

.orb-three {
  bottom: 260px;
  left: 12%;
  width: 180px;
  height: 180px;
  background: rgba(45, 174, 255, 0.18);
  animation: floatY 11s ease-in-out infinite reverse;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(4, 11, 23, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #dff4ff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 214, 255, 0.28);
  background: rgba(110, 214, 255, 0.12);
  box-shadow: 0 12px 30px rgba(14, 53, 89, 0.25);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link-wide {
  width: auto;
  min-width: 44px;
  gap: 10px;
  padding: 0 16px;
}

.social-link-wide span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #edf8ff;
}

.social-links-contact {
  margin-top: 20px;
}

.nav-cta,
.primary-btn,
.secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-cta::after,
.primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.nav-cta:hover::after,
.primary-btn:hover::after {
  transform: translateX(130%);
}

.nav-cta,
.primary-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #02101e;
  box-shadow: var(--shadow);
}

.nav-cta {
  padding: 14px 22px;
}

.primary-btn,
.secondary-btn {
  min-width: 180px;
  padding: 15px 24px;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(45, 174, 255, 0.18);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

section {
  position: relative;
  padding: 96px 0;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 86px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(110, 214, 255, 0.22);
  background: rgba(110, 214, 255, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #7bd8ff 0%, #ffffff 48%, #99defc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.trust-item strong,
.hero-highlights strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.trust-item span,
.hero-highlights span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hero-highlights article,
.service-card,
.info-card,
.process-card,
.portfolio-card,
.contact-card,
.faq-card,
.whatsapp-form,
.feature-list article {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-highlights article {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.hero-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(165deg, rgba(45, 174, 255, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(8, 21, 41, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  animation: floatY 7s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-card-top p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-card-top span,
.hero-card-top small {
  color: var(--muted);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badge-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9eaff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card img,
.split-media img,
.portfolio-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
}

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

.info-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card,
.process-card,
.faq-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.process-card h3,
.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.info-card p,
.process-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(110, 214, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
}

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

.service-card {
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card h3,
.portfolio-card h3,
.feature-list h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.service-card p,
.portfolio-card p,
.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-media img {
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(110, 214, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 8, 16, 0.72) 100%);
  pointer-events: none;
}

.portfolio-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(4, 11, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.portfolio-logo img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
}

.portfolio-logo span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #edf7ff;
}

.portfolio-tag {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110, 214, 255, 0.14);
  border: 1px solid rgba(110, 214, 255, 0.24);
  color: #dff6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card img {
  height: 370px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.portfolio-copy {
  position: relative;
  z-index: 2;
  padding: 24px;
  margin-top: -6px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card span {
  display: block;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.7rem;
}

.contact-points {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.whatsapp-form {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.form-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.form-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label span {
  color: #dff3ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #93aac4;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(110, 214, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(45, 174, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-grid select option {
  color: #02101e;
}

.full-field {
  grid-column: 1 / -1;
}

.form-submit {
  margin-top: 18px;
  border: 0;
}

.tilt-card:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(110, 214, 255, 0.22);
  box-shadow: 0 22px 48px rgba(3, 11, 26, 0.4);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(110, 214, 255, 0.22);
  box-shadow: 0 26px 60px rgba(3, 11, 26, 0.44);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.social-links-footer {
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(16px);
  }
}

@media (max-width: 1100px) {
  .info-grid,
  .process-grid,
  .faq-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta,
  .social-links-header {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(6, 16, 31, 0.96);
  }

  .site-nav.open {
    display: flex;
    animation: menuDrop 0.26s ease;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero-highlights,
  .portfolio-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .portfolio-logo,
  .portfolio-tag {
    position: static;
    width: fit-content;
    margin: 18px 18px 0;
  }

  .portfolio-card img {
    height: 320px;
  }

  .social-links-footer {
    justify-content: flex-start;
  }
}

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

  .nav-wrap {
    min-height: 78px;
  }

  section {
    padding: 74px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    line-height: 1;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-text,
  .section-heading p,
  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-highlights,
  .services-grid,
  .info-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .service-card,
  .portfolio-card,
  .contact-card,
  .feature-list article {
    border-radius: 22px;
  }

  .hero-card-top {
    flex-direction: column;
  }

  .portfolio-logo {
    gap: 8px;
  }

  .portfolio-logo span {
    font-size: 0.76rem;
  }

  .contact-card strong {
    font-size: 1.35rem;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
