/* style.css */
:root {
  --bg: #eef8fc;
  --ink: #0f2d38;
  --muted: #6f8790;
  --blue: #32b8ea;
  --blue-dark: #1097cf;
  --cyan: #dff7ff;
  --white: #ffffff;
  --line: rgba(15, 45, 56, 0.12);
  --shadow: 0 24px 70px rgba(28, 178, 231, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(
    circle at top left,
    #ffffff 0%,
    var(--bg) 45%,
    #eaf8ff 100%
  );
  color: var(--ink);
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: #4cc8ff;
  top: 80px;
  left: -120px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: #aeeeff;
  right: -150px;
  top: 380px;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: #ffffff;
  left: 40%;
  bottom: 8%;
}

.header {
  width: min(1180px, calc(100% - 36px));
  height: 78px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 55px rgba(33, 135, 176, 0.12);
}

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

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 35px rgba(50, 184, 234, 0.35);
  font-size: 26px;
}

.brand b {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #48616b;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s;
}

.nav a:hover {
  background: var(--cyan);
  color: var(--blue-dark);
}

.download,
.btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  border-radius: 999px;
  transition: 0.3s;
}

.download {
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(50, 184, 234, 0.32);
}

.download:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 45px rgba(50, 184, 234, 0.42);
}

.burger {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
  pointer-events: none;
}

.tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

.tag.dark {
  background: rgba(15, 45, 56, 0.08);
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

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

.btn {
  min-height: 58px;
  padding: 0 26px;
  font-size: 16px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 35px rgba(50, 184, 234, 0.32);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--cyan);
}

.btn-white {
  background: white;
  color: var(--blue-dark);
}

.metrics {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.metrics div {
  min-width: 132px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.metrics strong {
  display: block;
  font-size: 30px;
}

.metrics small {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone {
  width: 330px;
  height: 680px;
  border-radius: 46px;
  padding: 14px;
  background: #0f2d38;
  box-shadow:
    0 35px 110px rgba(50, 184, 234, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotateY(-12deg) rotateX(4deg);
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-top {
  height: 34px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  font-size: 12px;
}

.app-preview {
  height: calc(100% - 34px);
  border-radius: 34px;
  background: #f0f9fd;
  padding: 30px 22px;
  overflow: hidden;
}

.welcome {
  position: relative;
}

.welcome p {
  color: var(--muted);
  font-size: 14px;
}

.welcome h3 {
  margin-top: 4px;
  font-size: 25px;
}

.welcome span {
  position: absolute;
  right: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: var(--blue);
}

.blue-card {
  margin-top: 32px;
  padding: 26px 22px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, #45c8ef, #0997cf);
  box-shadow: 0 22px 45px rgba(50, 184, 234, 0.32);
}

.blue-card p {
  opacity: 0.78;
}

.blue-card h4 {
  margin-top: 10px;
  font-size: 20px;
}

.blue-card div {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

.blue-card b {
  display: block;
  font-size: 29px;
}

.blue-card small {
  opacity: 0.85;
}

.mini-title {
  margin: 28px 0 16px;
  font-size: 20px;
}

.quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quick div {
  height: 116px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(50, 184, 234, 0.11);
  display: grid;
  place-items: center;
  text-align: center;
}

.quick b {
  color: var(--blue);
  font-size: 30px;
}

.quick span {
  font-weight: 900;
  font-size: 14px;
}

.tip {
  margin-top: 28px;
  padding: 20px;
  border-radius: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: #d9f4ff;
}

.tip b {
  font-size: 26px;
}

.tip span {
  font-size: 14px;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 20px;
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(50, 184, 234, 0.22);
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.floating-card b {
  display: block;
  margin: 8px 0;
  font-size: 34px;
}

.score-card {
  left: 0;
  top: 110px;
  animation: floatA 4.5s ease-in-out infinite;
}

.timer-card {
  right: -10px;
  bottom: 140px;
  animation: floatB 5.2s ease-in-out infinite;
}

.marquee {
  padding: 18px 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 38px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #9fe7ff;
}

.section {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
  max-width: 780px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head span {
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 24px 65px rgba(50, 184, 234, 0.1);
  transition: 0.3s;
}

.feature-grid article:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 80px rgba(50, 184, 234, 0.18);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 27px;
  font-weight: 900;
}

.feature-grid h3 {
  margin-top: 24px;
  font-size: 22px;
}

.feature-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.training {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.training-left h2 {
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.training-left p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.training-left ul {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.training-left li {
  padding: 18px 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
}

.training-panel {
  padding: 34px;
  border-radius: 42px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.training-hero-icon {
  height: 220px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 92px;
  background: linear-gradient(135deg, #47cdf6, #0094cf);
}

.training-panel h3 {
  margin-top: 28px;
  font-size: 34px;
}

.training-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.training-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 24px;
  background: #f7fcff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.training-stats div {
  padding: 18px;
  text-align: center;
}

.training-stats small {
  display: block;
  color: var(--muted);
}

.training-stats b {
  margin-top: 5px;
  display: block;
}

.timer-ring {
  width: 260px;
  height: 260px;
  margin: 34px auto;
  position: relative;
  display: grid;
  place-items: center;
}

.timer-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.timer-ring circle {
  fill: none;
  stroke: #d5f3ff;
  stroke-width: 13;
}

.timer-ring .progress {
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-dasharray: 578;
  stroke-dashoffset: 130;
}

.timer-ring div {
  text-align: center;
}

.timer-ring b {
  font-size: 48px;
}

.timer-ring span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.screenshots {
  position: relative;
  overflow: hidden;
}

.carousel {
  margin-top: 70px;
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.carousel-stage {
  position: relative;
  width: min(880px, 100%);
  height: 690px;
}

.slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 318px;
  height: 690px;
  border-radius: 38px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(35, 160, 215, 0.25);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s,
    filter 0.7s;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.slide.active {
  transform: translateX(-50%) translateZ(120px) rotateY(0deg);
  opacity: 1;
  z-index: 5;
  filter: saturate(1.08);
}

.slide.next {
  transform: translateX(20%) translateZ(-60px) rotateY(-28deg) scale(0.86);
  opacity: 0.72;
  z-index: 4;
  filter: blur(0.2px) saturate(0.8);
}

.slide.prev {
  transform: translateX(-120%) translateZ(-60px) rotateY(28deg) scale(0.86);
  opacity: 0.72;
  z-index: 4;
  filter: blur(0.2px) saturate(0.8);
}

.slide.far {
  transform: translateX(82%) translateZ(-180px) rotateY(-42deg) scale(0.72);
  opacity: 0.28;
  z-index: 2;
}

.slide.far-left {
  transform: translateX(-182%) translateZ(-180px) rotateY(42deg) scale(0.72);
  opacity: 0.28;
  z-index: 2;
}

.slide.hidden {
  transform: translateX(-50%) translateZ(-260px) scale(0.55);
  opacity: 0;
  pointer-events: none;
}

.car-btn {
  position: relative;
  z-index: 8;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 40px rgba(50, 184, 234, 0.35);
  font-size: 44px;
  line-height: 1;
  transition: 0.25s;
}

.car-btn:hover {
  transform: scale(1.08);
}

.prev {
  margin-right: 28px;
}

.next-btn {
  margin-left: 28px;
}

.carousel-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.carousel-meta strong {
  font-size: 22px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 45, 56, 0.2);
  cursor: pointer;
  transition: 0.25s;
}

.dots button.active {
  width: 34px;
  background: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.match-card,
.score-ui {
  min-height: 540px;
  border-radius: 42px;
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(50, 184, 234, 0.13);
}

.match-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.match-card span {
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.match-card h2 {
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.match-card p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.score-top {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
}

.score-top b {
  color: #d65964;
}

.score-box {
  width: 230px;
  height: 230px;
  margin: 28px auto;
  border-radius: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  background: white;
  box-shadow: 0 20px 55px rgba(50, 184, 234, 0.15);
}

.score-box small,
.score-box span {
  color: var(--muted);
}

.score-box strong {
  font-size: 64px;
}

.score-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.score-columns div {
  height: 260px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 18px 45px rgba(50, 184, 234, 0.12);
}

.score-columns .blue {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.score-columns button {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: #e3f8ff;
  font-size: 48px;
  cursor: pointer;
}

.score-columns .blue button {
  background: white;
}

.cta {
  padding-top: 60px;
}

.cta-box {
  text-align: center;
  padding: 80px 28px;
  border-radius: 46px;
  color: white;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 34px 90px rgba(50, 184, 234, 0.36);
}

.cta-box span {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-box h2 {
  max-width: 820px;
  margin: 18px auto 34px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 34px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
}

.footer p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.footer div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: white;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: rotateY(-12deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(2deg) translateY(-18px);
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(16px) rotate(-3deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .burger {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 14px;
    background: var(--cyan);
  }

  .burger span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .download {
    display: none;
  }

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

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone {
    width: 300px;
    height: 620px;
  }

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

  .carousel {
    height: 650px;
  }

  .carousel-stage {
    height: 620px;
  }

  .slide {
    width: 285px;
    height: 620px;
  }
}

@media (max-width: 640px) {
  .header {
    top: 10px;
    height: 68px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .metrics {
    flex-direction: column;
  }

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

  .floating-card {
    display: none;
  }

  .phone {
    transform: none;
  }

  .carousel {
    height: 610px;
  }

  .carousel-stage {
    height: 570px;
  }

  .slide {
    width: 262px;
    height: 570px;
  }

  .slide.next,
  .slide.prev,
  .slide.far,
  .slide.far-left {
    opacity: 0;
  }

  .car-btn {
    width: 52px;
    height: 52px;
    font-size: 36px;
  }

  .prev {
    margin-right: 4px;
  }

  .next-btn {
    margin-left: 4px;
  }

  .carousel-meta {
    flex-direction: column;
  }

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

  .score-columns div {
    height: 190px;
  }

  .footer {
    flex-direction: column;
  }
}
<!-- Добавь этот код В САМЫЙ КОНЕЦ файла style.css -->

/* ==========================================
   PRIVACY PAGE
========================================== */

body.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(80, 200, 255, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(20, 170, 230, 0.18),
      transparent 45%
    ),
    linear-gradient(180deg, #f7fcff 0%, #eef8fc 100%);
  color: var(--ink);
  padding: 40px 20px;
}

.privacy-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 35px rgba(50, 184, 234, 0.35);
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(50, 184, 234, 0.45);
}

.privacy-card {
  position: relative;
  padding: 48px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 90px rgba(30, 160, 220, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.privacy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(50, 184, 234, 0.45),
    rgba(255, 255, 255, 0.15),
    rgba(16, 151, 207, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(50, 184, 234, 0.12);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-card h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.privacy-lead {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 42px;
  max-width: 760px;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.policy-block p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.policy-grid article {
  padding: 26px;
  border-radius: 26px;
  background: rgba(247, 252, 255, 0.95);
  border: 1px solid rgba(50, 184, 234, 0.08);
  box-shadow: 0 12px 30px rgba(50, 184, 234, 0.06);
  transition: all 0.3s ease;
}

.policy-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(50, 184, 234, 0.12);
}

.policy-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.policy-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.policy-grid strong,
.policy-block strong,
.effective-date strong {
  color: var(--ink);
  font-weight: 800;
}

.contact-box {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(50, 184, 234, 0.25);
}

.contact-box span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.contact-box a {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  word-break: break-word;
}

.effective-date {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  body.privacy-page {
    padding: 20px 14px;
  }

  .privacy-card {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .privacy-card h1 {
    font-size: 46px;
  }

  .privacy-lead {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .policy-grid article {
    padding: 20px;
    border-radius: 22px;
  }

  .contact-box {
    padding: 22px 18px;
  }

  .contact-box a {
    font-size: 18px;
  }

  .back-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
