/* =========================================================
   DealsZoneUK
   Premium responsive UK mobile deals website
   Plain CSS only - no frameworks
========================================================= */

:root {
  --bg: #f6f7fb;
  --bg-soft: #ffffff;
  --bg-dark: #0d1020;
  --text: #151826;
  --text-soft: #5f667d;
  --line: rgba(20, 25, 45, 0.09);
  --pink: #ff2f92;
  --pink-2: #ff6fb3;
  --purple: #8c49ff;
  --green: #14c97b;
  --green-dark: #0fa564;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(15, 22, 45, 0.15);
  --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.12);
  --shadow-sm: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 47, 146, 0.09), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(140, 73, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, #f4f6fb 55%, #f8f9fc 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(252, 252, 255, 0.92));
}

.section-gradient {
  background:
    linear-gradient(135deg, rgba(255, 47, 146, 0.07), rgba(140, 73, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 249, 252, 0.95));
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.orb-a {
  width: 420px;
  height: 420px;
  top: 120px;
  left: -120px;
  background: rgba(255, 47, 146, 0.14);
  animation: driftA 14s ease-in-out infinite;
}

.orb-b {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 420px;
  background: rgba(140, 73, 255, 0.16);
  animation: driftB 18s ease-in-out infinite;
}

.site-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(140, 73, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 47, 146, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -4;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  pointer-events: none;
}

.announcement-bar {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #12162a, #1f2340);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.announcement-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.announcement-inner a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(16, 20, 35, 0.05);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 12px 40px rgba(20, 24, 44, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

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

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

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.35));
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.brand-text span {
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text span {
  color: var(--text-soft);
  font-weight: 700;
}

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

.main-nav a {
  position: relative;
  font-weight: 600;
  color: #2f3550;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 13px 18px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 17px 28px;
  font-size: 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1ed48d);
  box-shadow: 0 18px 40px rgba(20, 201, 123, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 46px rgba(20, 201, 123, 0.34);
  background: linear-gradient(135deg, #18d383, var(--green-dark));
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  border: 1px solid rgba(18, 22, 40, 0.09);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 20, 35, 0.09);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #1a2036;
  margin: 6px 0;
  border-radius: 10px;
  transition: 0.25s ease;
}

.hero-section {
  position: relative;
  padding: 88px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 44px;
}

.eyebrow-pill,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b1f65;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.11), rgba(140, 73, 255, 0.1));
  margin-bottom: 20px;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: 1.14rem;
  max-width: 650px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-chip {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 24, 44, 0.06);
  box-shadow: var(--shadow-sm);
}

.trust-chip strong {
  display: block;
  font-size: 0.97rem;
  margin-bottom: 4px;
}

.trust-chip span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 20px;
  min-height: 128px;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  color: #0f1530;
  margin-bottom: 8px;
}

.metric-card strong::after {
  content: "+";
  font-size: 1rem;
  margin-left: 3px;
  color: var(--pink);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.hero-visual {
  position: relative;
}

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

.device-shell {
  position: absolute;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 35px 80px rgba(12, 18, 40, 0.22);
  border: 1px solid rgba(255,255,255,0.55);
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18));
}

.device-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.33), transparent 48%),
    linear-gradient(180deg, transparent 65%, rgba(255,255,255,0.15));
  pointer-events: none;
  z-index: 2;
}

.device-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-left {
  width: 210px;
  height: 440px;
  left: 10px;
  top: 130px;
  transform: rotate(-12deg);
}

.device-centre {
  width: 320px;
  height: 620px;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  z-index: 4;
}

.device-right {
  width: 230px;
  height: 470px;
  right: 10px;
  top: 150px;
  transform: rotate(12deg);
}

.floating-badge {
  position: absolute;
  padding: 18px 20px;
  min-width: 180px;
  z-index: 6;
}

.floating-badge span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.floating-badge strong {
  font-size: 1.1rem;
}

.badge-a {
  top: 65px;
  left: 0;
  animation: driftBadge 9s ease-in-out infinite;
}

.badge-b {
  right: 0;
  bottom: 90px;
  animation: driftBadge 11s ease-in-out infinite reverse;
}

.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(255,255,255,0.85), rgba(255,255,255,0));
  animation: pulseFloat 10s linear infinite;
}

.hero-particles span:nth-child(1) { width: 140px; height: 140px; top: 5%; left: 6%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 70px; height: 70px; top: 18%; right: 14%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { width: 90px; height: 90px; bottom: 18%; left: 10%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { width: 120px; height: 120px; bottom: 6%; right: 9%; animation-delay: 4s; }
.hero-particles span:nth-child(5) { width: 60px; height: 60px; top: 40%; left: 46%; animation-delay: 3s; }
.hero-particles span:nth-child(6) { width: 95px; height: 95px; top: 10%; right: 40%; animation-delay: 5s; }

.brands-strip {
  padding-top: 25px;
  padding-bottom: 25px;
}

.strip-panel {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strip-panel p {
  max-width: 600px;
  margin: 0;
}

.feature-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-ticker span,
.spec-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 28, 52, 0.08);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.deal-grid,
.feature-grid,
.phone-grid,
.steps-grid,
.footer-grid {
  display: grid;
  gap: 26px;
}

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

.premium-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78));
  border: 1px solid rgba(20, 28, 50, 0.08);
  box-shadow: var(--shadow-md);
}

.deal-card {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.deal-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.deal-badge.savings { background: linear-gradient(135deg, var(--green), #22d898); }
.deal-badge.highlight { background: linear-gradient(135deg, var(--pink), #ff66b6); }
.deal-badge.limited { background: linear-gradient(135deg, var(--purple), #a56eff); }

.deal-media {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.deal-card:hover .deal-media img {
  transform: scale(1.07);
}

.deal-content {
  padding: 24px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.spec-list li {
  position: relative;
  padding-left: 18px;
  color: #353c58;
}

.spec-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  position: absolute;
  left: 0;
  top: 10px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.price-row small {
  display: block;
  color: var(--text-soft);
}

.price-row strong {
  font-size: 1.6rem;
  color: #0f1530;
}

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

.feature-card {
  padding: 28px 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  margin-bottom: 18px;
  box-shadow: 0 18px 38px rgba(255, 47, 146, 0.22);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid rgba(20, 26, 50, 0.08);
  background: rgba(255,255,255,0.86);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: #2d3552;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

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

.phone-card {
  overflow: hidden;
  position: relative;
}

.phone-views {
  position: relative;
  min-height: 320px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.85), transparent 34%),
    linear-gradient(135deg, rgba(255, 47, 146, 0.08), rgba(140, 73, 255, 0.08));
}

.phone-back,
.phone-front {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(16, 20, 35, 0.16);
  border: 1px solid rgba(255,255,255,0.65);
  transition: transform 0.55s ease;
}

.phone-back {
  width: 48%;
  height: 240px;
  left: 16%;
  top: 40px;
  transform: rotate(-10deg);
}

.phone-front {
  width: 48%;
  height: 250px;
  right: 16%;
  top: 52px;
  transform: rotate(10deg);
  z-index: 2;
}

.phone-card:hover .phone-back {
  transform: rotate(-14deg) translateY(-6px);
}

.phone-card:hover .phone-front {
  transform: rotate(14deg) translateY(-8px);
}

.phone-body {
  padding: 24px;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c72777;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.comparison-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.benefit-list li {
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: var(--shadow-sm);
  color: #33405f;
  font-weight: 600;
}

.stats-card {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.stat-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(20,28,50,0.06);
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  color: #121830;
  margin-bottom: 8px;
}

.step-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,47,146,0.12), rgba(140,73,255,0.14));
  color: #8a2064;
  font-weight: 900;
  font-size: 1.4rem;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 270px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(50px) scale(0.98);
  transition: 0.55s ease;
  padding: 34px;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.stars {
  color: #ffb400;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(20,28,50,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(20,26,50,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  font-weight: 800;
  color: #151b31;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #ca2675;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
}

.disclaimer-box {
  padding: 36px;
  text-align: left;
}

.cta-band {
  padding-top: 40px;
}

.cta-band-inner {
  background:
    linear-gradient(135deg, rgba(255, 47, 146, 0.92), rgba(140, 73, 255, 0.88)),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(138, 41, 146, 0.26);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band-inner .section-tag {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
}

.cta-band-inner h2,
.cta-band-inner p {
  color: #fff;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 80px 0 20px;
  background: linear-gradient(180deg, #15192d, #0d1020);
  color: rgba(255,255,255,0.88);
  margin-top: 90px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  align-items: start;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.76);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .brand-text strong,
.footer-logo .brand-text span {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.95rem;
}

.floating-call,
.floating-contact {
  position: fixed;
  right: 20px;
  z-index: 70;
  width: auto;
  min-width: 148px;
  height: 56px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(15,22,45,0.18);
}

.floating-call {
  bottom: 20px;
  background: linear-gradient(135deg, var(--green), #18d787);
  color: #fff;
}

.floating-contact {
  bottom: 88px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-hero {
  padding: 90px 0 50px;
  position: relative;
}

.page-hero .hero-panel {
  padding: 38px;
}

.page-content {
  padding: 30px 0 90px;
}

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

.legal-card,
.contact-card,
.about-card {
  padding: 34px;
}

.legal-card h2,
.contact-card h2,
.about-card h2 {
  margin-top: 10px;
}

.legal-card h3,
.contact-card h3,
.about-card h3 {
  margin-top: 28px;
}

.legal-card p,
.legal-card li,
.contact-card p,
.about-card p {
  color: #4e5672;
}

.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  font-weight: 700;
  color: #1b223d;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(20, 28, 50, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.info-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17,24,39,0.06);
}

.inline-note {
  padding: 16px 18px;
  border-left: 4px solid var(--pink);
  background: rgba(255,255,255,0.68);
  border-radius: 16px;
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* Animations */
@keyframes pulseFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.22; }
  50%  { transform: translateY(-28px) scale(1.08); opacity: 0.46; }
  100% { transform: translateY(0) scale(1); opacity: 0.22; }
}

@keyframes driftA {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(40px, -20px, 0); }
}

@keyframes driftB {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-35px, 25px, 0); }
}

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

.floating-slow { animation: floatY 7.8s ease-in-out infinite; }
.floating-main { animation: floatY 6.3s ease-in-out infinite; }
.floating-fast { animation: floatY 5.4s ease-in-out infinite; }

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

/* Responsive */
@media (max-width: 1180px) {
  .hero-grid,
  .comparison-grid,
  .faq-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-device-cluster {
    min-height: 620px;
  }

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

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

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

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16,20,35,0.07);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions .btn {
    display: none;
  }

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

  .device-centre {
    width: 270px;
    height: 540px;
  }

  .device-left,
  .device-right {
    width: 180px;
    height: 360px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 76px 0;
  }

  .announcement-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }

  .deal-grid,
  .feature-grid,
  .phone-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-device-cluster {
    min-height: 520px;
  }

  .device-left {
    width: 130px;
    height: 280px;
    left: 6px;
    top: 128px;
  }

  .device-centre {
    width: 220px;
    height: 430px;
    top: 42px;
  }

  .device-right {
    width: 140px;
    height: 300px;
    right: 8px;
    top: 140px;
  }

  .badge-a,
  .badge-b {
    min-width: unset;
    width: 150px;
    padding: 12px 14px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-call,
  .floating-contact {
    right: 14px;
    min-width: 128px;
    height: 50px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .floating-contact {
    bottom: 76px;
  }

  .disclaimer-box,
  .cta-band-inner,
  .legal-card,
  .contact-card,
  .about-card,
  .hero-panel {
    padding: 24px;
  }

  .strip-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Compliance footer styled to match the provided reference screenshot */
.screenshot-footer {
  margin-top: 90px;
  padding: 56px 0 34px;
  background: #050a1a;
  color: #dbe7ff;
  text-align: center;
}

.footer-compliance {
  max-width: 1120px;
}

.footer-important {
  max-width: 1040px;
  margin: 0 auto 96px;
  color: #7f91b6;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.9;
  font-weight: 500;
}

.footer-important strong {
  color: #f4f7ff;
  font-weight: 800;
}

.footer-policy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
  color: #7f91b6;
  font-size: 1.12rem;
}

.footer-policy-links a,
.screenshot-footer a {
  color: #7f91b6;
}

.footer-policy-links a:hover {
  color: #3d9bff;
}

.footer-copy {
  margin: 0;
  color: #2695ff;
  font-size: 1.08rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer-important {
    margin-bottom: 56px;
    line-height: 1.75;
  }
  .footer-policy-links {
    font-size: 1rem;
  }
}
