/* Base palette and reusable tokens */
:root {
  --bg: #070b12;
  --bg-soft: #101722;
  --surface: rgba(16, 23, 34, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #aab7cb;
  --accent: #26d6ff;
  --accent-strong: #008dff;
  --success: #1fcb65;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container-width: 1320px;
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.28) 0%, rgba(9, 16, 26, 0.45) 42%, rgba(6, 9, 17, 0.72) 100%),
    url("../img/premium-dark-background.svg") center top / cover fixed no-repeat,
    #05070c;
  color: var(--text);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.055), transparent 26%),
    #000;
  color: #fff;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.9s ease;
  will-change: transform;
}

.site-loader.is-hidden {
  transform: translateY(-100%);
  visibility: hidden;
}

.loader-mark {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 58px rgba(255, 255, 255, 0.08),
    0 0 42px rgba(38, 214, 255, 0.12);
  animation: loaderBreath 1.55s ease-in-out infinite;
}

.loader-mark i {
  font-size: 2.65rem;
}

.loader-title {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 700;
}

.loader-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  animation: loaderLetter 0.55s ease forwards;
}

.loader-title span:nth-child(1) {
  animation-delay: 0.18s;
}

.loader-title span:nth-child(2) {
  animation-delay: 0.26s;
}

.loader-title span:nth-child(3) {
  animation-delay: 0.34s;
}

.loader-title span:nth-child(4) {
  animation-delay: 0.42s;
}

.loader-title span:nth-child(5) {
  animation-delay: 0.5s;
}

.loader-title span:nth-child(6) {
  animation-delay: 0.58s;
}

.loader-title span:nth-child(7) {
  animation-delay: 0.66s;
}

.loader-title span:nth-child(8) {
  animation-delay: 0.74s;
}

.loader-title span:nth-child(9) {
  animation-delay: 0.82s;
}

.loader-title span:nth-child(10) {
  animation-delay: 0.9s;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.site-header,
main,
.site-footer,
.topbar {
  position: relative;
  z-index: 1;
}

@keyframes loaderBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes loaderLetter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

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

p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 1.15;
  margin: 0;
}

.container {
  max-width: var(--container-width);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--accent);
  color: #001018;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.section-space {
  padding: 78px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.5), rgba(5, 8, 13, 0.7));
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 12px 0 14px;
}

.section-heading p {
  font-size: 1.03rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(38, 214, 255, 0.3);
  border-radius: 999px;
  background: rgba(10, 22, 31, 0.7);
  color: #c6f6ff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a3f4ff);
  box-shadow: 0 0 20px rgba(38, 214, 255, 0.8);
}

.btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  border-width: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 80%);
  opacity: 0.72;
  pointer-events: none;
  transition: transform 0.65s ease;
}

.btn-glow:hover::after {
  transform: translateX(130%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  color: #021018;
  box-shadow: 0 14px 34px rgba(0, 141, 255, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #52e5ff 0%, #1d9bff 100%);
  color: #021018;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.btn-outline-accent {
  border-color: rgba(38, 214, 255, 0.4);
  color: #d8fbff;
  background: rgba(38, 214, 255, 0.08);
}

.btn-outline-accent:hover {
  color: #001018;
  background: rgba(38, 214, 255, 0.95);
}

.topbar {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 8, 13, 0.85);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
}

.brand-mini {
  font-weight: 800;
  font-size: 0.98rem;
  color: #eefcff;
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-whatsapp {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 203, 101, 0.16);
  color: #7bffb0;
  border: 1px solid rgba(31, 203, 101, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-navbar {
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-navbar.scrolled {
  padding: 8px 0;
  background: rgba(7, 11, 18, 0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-navbar.scrolled .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

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

.navbar-brand strong {
  display: block;
  font-size: 1rem;
}

.navbar-brand small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(38, 214, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark i {
  font-size: 1.3rem;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  padding: 10px 14px !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  min-height: 76vh;
  padding: 82px 0 36px;
  overflow: clip;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at calc(50% + (var(--mx) * 24px)) calc(35% + (var(--my) * 24px)), rgba(38, 214, 255, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.12) 0%, rgba(3, 7, 12, 0.22) 44%, rgba(3, 7, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(3, 7, 12, 0.62) 0%, rgba(3, 7, 12, 0.16) 46%, rgba(3, 7, 12, 0.34) 100%);
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    conic-gradient(from 90deg, transparent, rgba(38, 214, 255, 0.16), transparent 28%),
    linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.12), transparent 42%);
  animation: heroLightSweep 9s ease-in-out infinite alternate;
  opacity: 0.7;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 980px;
  text-align: left;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.glow-left {
  width: 320px;
  height: 320px;
  background: rgba(38, 214, 255, 0.28);
  left: -80px;
  top: 80px;
}

.glow-right {
  width: 420px;
  height: 420px;
  background: rgba(0, 141, 255, 0.22);
  right: -120px;
  top: 60px;
}

.hero-title {
  font-size: 4.8rem;
  margin-top: 22px;
  max-width: 980px;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.hero-brand-title {
  display: inline-block;
  margin-top: 24px;
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.58);
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
}

.hero-title.is-visible span {
  animation: wordReveal 0.68s ease forwards;
}

.hero-title.is-visible span:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-title.is-visible span:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-title.is-visible span:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-title.is-visible span:nth-child(5) {
  animation-delay: 0.32s;
}

.hero-title.is-visible span:nth-child(6) {
  animation-delay: 0.4s;
}

.hero-title.is-visible span:nth-child(7) {
  animation-delay: 0.48s;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(244, 247, 251, 0.88);
  font-weight: 700;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.hero-phone {
  display: grid;
  gap: 6px;
  margin: 24px 0 0;
}

.hero-phone span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero-phone a {
  display: inline-block;
  color: #fff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 24px 0 0;
}

.hero-service-strip {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-mockup {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * 18px), 0);
  transition: transform 0.15s ease-out;
  perspective: 1100px;
}

.mockup-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(38, 214, 255, 0.18);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-14deg);
  box-shadow: 0 0 70px rgba(38, 214, 255, 0.16);
}

.iphone-3d {
  position: relative;
  width: 270px;
  aspect-ratio: 0.52;
  transform-style: preserve-3d;
  transform: rotateX(7deg) rotateY(-22deg) rotateZ(4deg);
  filter: drop-shadow(34px 42px 42px rgba(0, 0, 0, 0.52));
}

.iphone-side {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 42px;
  background: linear-gradient(135deg, #5f6975, #dce4ea 45%, #616b74);
  transform: translateZ(-26px);
}

.iphone-face {
  position: absolute;
  inset: 0;
  padding: 15px;
  border-radius: 46px;
  background: linear-gradient(145deg, #f4f7fb, #68727c 52%, #f7fbff);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.56);
}

.iphone-screen {
  position: relative;
  height: 100%;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 18%, rgba(38, 214, 255, 0.42), transparent 24%),
    linear-gradient(180deg, #060b12, #132335 54%, #08101a);
}

.iphone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.22), transparent 38%);
}

.iphone-notch {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 17px;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #020408;
}

.iphone-screen span,
.iphone-screen strong,
.iphone-screen small {
  position: relative;
  z-index: 1;
}

.iphone-screen span {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.iphone-screen strong {
  font-size: 1.25rem;
}

.iphone-screen small {
  color: var(--muted);
}

@keyframes heroLightSweep {
  from {
    transform: translate3d(-6%, -2%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(6%, 2%, 0) rotate(8deg);
  }
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-service-strip div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-service-strip i {
  color: var(--accent);
}

.metric-card,
.trust-card,
.glass-card,
.counter-card,
.service-card,
.feature-card,
.contact-card,
.contact-form,
.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 20px;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-device {
  position: relative;
  min-height: 560px;
}

.device-card {
  width: min(100%, 460px);
  aspect-ratio: 0.75;
  margin: 0 auto;
  padding: 20px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(13, 21, 32, 0.92), rgba(9, 15, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(38, 214, 255, 0.16);
}

.device-screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(38, 214, 255, 0.36), transparent 24%),
    linear-gradient(180deg, #0a1019 0%, #0f1b2a 48%, #09111b 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px;
}

.device-screen::before {
  content: "";
  position: absolute;
  width: 44%;
  height: 18px;
  background: #04070d;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
}

.screen-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dffcff;
}

.device-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.device-copy span {
  color: #9ddfff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.83rem;
}

.device-copy strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 280px;
}

.floating-device {
  animation: floatDevice 5s ease-in-out infinite;
}

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

.service-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(8, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  animation: slideUpFade 0.8s ease forwards;
  opacity: 0;
}

.service-float i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(38, 214, 255, 0.18), rgba(0, 141, 255, 0.3));
  color: #c8f8ff;
  font-size: 1.2rem;
}

.service-float strong {
  display: block;
  font-size: 1rem;
}

.service-float span {
  font-size: 0.9rem;
  color: var(--muted);
}

.delay-1 {
  left: 0;
  top: 70px;
  animation-delay: 0.18s;
}

.delay-2 {
  right: -10px;
  top: 260px;
  animation-delay: 0.34s;
}

.delay-3 {
  left: 25px;
  bottom: 30px;
  animation-delay: 0.5s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-row {
  margin-top: 30px;
}

.trust-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover,
.why-card:hover,
.counter-card:hover,
.contact-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 214, 255, 0.3);
}

.trust-card i,
.why-card i,
.contact-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 214, 255, 0.14);
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.trust-card h2,
.service-card h3,
.why-card h3,
.timeline-content h3,
.feature-copy h3,
.contact-card h3,
.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(38, 214, 255, 0.28), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card::after,
.trust-card::after,
.feature-card::after,
.glass-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(38, 214, 255, 0.62), transparent 34%, rgba(255, 255, 255, 0.2));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(38, 214, 255, 0.32);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 34px rgba(38, 214, 255, 0.13);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after,
.trust-card:hover::after,
.feature-card:hover::after,
.glass-card:hover::after,
.contact-card:hover::after {
  opacity: 1;
}

.service-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 214, 255, 0.15);
  color: #dffcff;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.service-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbfbff;
  font-weight: 700;
}

.glass-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  height: 100%;
}

.counter-row {
  margin-top: 28px;
}

.counter-card {
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.counter-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
}

.counter-card span {
  color: var(--muted);
}

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

.quick-price-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 10, 16, 0.48), rgba(8, 16, 24, 0.72)),
    radial-gradient(circle at 20% 30%, rgba(38, 214, 255, 0.14), transparent 28%);
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  background: rgba(8, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.price-copy h2 {
  font-size: 3rem;
  margin: 18px 0 16px;
}

.price-form {
  display: grid;
  gap: 18px;
}

.price-form select {
  appearance: none;
  color: #f4f7fb;
  background-color: #151a22;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 25px,
    calc(100% - 15px) 25px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.price-form select option,
.form-control option {
  background: #111821;
  color: #f4f7fb;
}

.price-form select option:checked {
  background: #0b8ee8;
  color: #ffffff;
}

.price-result {
  min-height: 34px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(38, 214, 255, 0.1);
  color: #c9fbff;
  border: 1px solid rgba(38, 214, 255, 0.22);
  font-weight: 800;
}

.before-after-section {
  overflow: hidden;
}

.comparison-slider {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 0.68;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: #070b12;
}

.compare-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.compare-after {
  justify-content: flex-end;
}

.compare-before {
  justify-content: flex-start;
}

.compare-after {
  background:
    linear-gradient(180deg, transparent, rgba(2, 5, 9, 0.72)),
    url("../img/tamirli.png") center top / cover no-repeat;
  background-color: #11100d;
}

.compare-before {
  width: 50%;
  background:
    linear-gradient(180deg, transparent, rgba(2, 5, 9, 0.76)),
    url("../img/kırık.png") center top / cover no-repeat;
  background-color: #11100d;
}

.compare-image span {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  max-width: 170px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  white-space: nowrap;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  z-index: 3;
  box-shadow: 0 0 28px rgba(38, 214, 255, 0.5);
}

.compare-handle::after {
  content: "\F229";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #031018;
  font-size: 1.4rem;
  box-shadow: 0 14px 34px rgba(0, 141, 255, 0.34);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(38, 214, 255, 0.6), rgba(38, 214, 255, 0.02));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding-bottom: 20px;
}

.timeline-step {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: #041019;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(38, 214, 255, 0.35);
}

.timeline-content {
  border-radius: var(--radius-lg);
  padding: 20px 22px 18px;
}

.form-control,
.form-control:focus,
.accordion-button,
.accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.form-control:focus {
  border-color: rgba(38, 214, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(38, 214, 255, 0.1);
}

.form-control {
  min-height: 58px;
  border-radius: 18px;
  padding: 14px 18px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-label {
  color: #d7e5f3;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-feedback {
  min-height: 26px;
  margin-top: 18px;
  color: #9fffc5;
  font-weight: 600;
}

.form-feedback.is-error {
  color: #ffb7b7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feature-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.feature-media {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.05), rgba(4, 7, 12, 0.72));
}

.feature-media.iphone-media {
  background-image: url("../img/iphone-profesyonel-tamir.png");
}

.feature-media.battery-media {
  background-image: url("../img/iphone-batarya-degisimi.png");
}

.feature-media.board-media {
  background-image: url("../img/iphone-anakart-sivi-temasi.png");
}

.feature-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #e7fcff;
  font-size: 0.92rem;
}

.feature-copy {
  padding: 22px;
}

.stars {
  display: flex;
  gap: 6px;
  color: #ffd15c;
  margin-bottom: 18px;
}

.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}

.accordion-item {
  background: rgba(13, 20, 30, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px !important;
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion-button {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  padding: 22px 24px;
}

.accordion-button::after {
  filter: invert(1) brightness(1.6);
}

.accordion-body {
  color: var(--muted);
  line-height: 1.8;
}

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

.contact-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-form {
  border-radius: 30px;
  padding: 30px;
  height: 100%;
}

.site-footer {
  padding: 48px 0 22px;
  background: rgba(4, 7, 13, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.contact-card a {
  color: #d7f7ff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: rgba(38, 214, 255, 0.18);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-bottom a {
  color: #d7f7ff;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #20d66c, #10b95a);
  color: #fff;
  box-shadow: 0 18px 34px rgba(16, 185, 90, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp i {
  font-size: 1.75rem;
  line-height: 1;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 22px 42px rgba(16, 185, 90, 0.42);
}

.mobile-action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 998;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(5, 9, 14, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.36);
}

.mobile-action-bar a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
}

.mobile-action-bar a:nth-child(2) {
  background: linear-gradient(135deg, #20d66c, #10b95a);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(16, 185, 90, 0.35), 0 0 0 0 rgba(31, 203, 101, 0.28);
  }
  50% {
    box-shadow: 0 18px 34px rgba(16, 185, 90, 0.35), 0 0 0 13px rgba(31, 203, 101, 0);
  }
}

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

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

@media (max-width: 1199px) {
  .hero-device {
    min-height: 500px;
  }

  .delay-2 {
    right: 0;
  }
}

@media (max-width: 991px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-meta {
    justify-content: flex-start;
  }

  .site-navbar {
    background: rgba(7, 11, 18, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(9, 14, 22, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-section {
    min-height: auto;
    padding: 72px 0 34px;
    background-position: center top;
  }

  .hero-showcase,
  .price-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text,
  .hero-phone,
  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-service-strip {
    justify-content: center;
  }

  .hero-mockup {
    min-height: 360px;
  }

  .iphone-3d {
    width: 230px;
  }

  .hero-device {
    min-height: auto;
    padding-top: 26px;
  }

  .service-float {
    position: relative;
    max-width: 100%;
    margin-top: 16px;
  }

  .delay-1,
  .delay-2,
  .delay-3 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

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

  .hero-title {
    font-size: 3.4rem;
  }

  .hero-brand-title {
    font-size: 4.2rem;
  }

  .hero-phone a {
    font-size: 2.8rem;
  }

  .price-copy h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 82px;
    background-attachment: scroll;
  }

  .section-space {
    padding: 58px 0;
  }

  .topbar-meta {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-brand-title {
    font-size: 3.2rem;
  }

  .hero-phone a {
    font-size: 2.15rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .price-form .btn {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-mockup {
    min-height: 300px;
  }

  .iphone-3d {
    width: 190px;
  }

  .mockup-orbit {
    width: 320px;
    height: 320px;
  }

  .price-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .comparison-slider {
    width: min(430px, 100%);
    aspect-ratio: 0.68;
    border-radius: 24px;
  }

  .compare-image {
    padding: 18px;
  }

  .mobile-action-bar {
    display: grid;
  }

  .floating-whatsapp {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .device-card {
    border-radius: 32px;
  }

  .device-screen {
    border-radius: 24px;
    padding: 24px 18px;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .timeline-step {
    width: 46px;
    height: 46px;
  }

  .contact-form {
    padding: 24px 18px;
  }

}

@media (max-width: 575px) {
  .topbar {
    display: none;
  }

  .navbar-brand strong {
    font-size: 0.92rem;
  }

  .navbar-brand small {
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-brand-title {
    font-size: 2.65rem;
  }

  .hero-service-strip {
    display: none;
  }

  .price-copy h2 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

}
