/* ═══════════════════════════════════════════════
   RESCUELINK — Landing Page
   Dark premium theme with NFC-wave motif
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Tokens ── */
:root {
  --bg-deep: #050505;
  --bg-base: #0A0A0A;
  --bg-raised: #111113;
  --bg-card: #161618;
  --bg-card-hover: #1C1C1F;
  --surface: #222225;
  --border-subtle: rgba(255,255,255,0.06);
  --border-medium: rgba(255,255,255,0.1);
  --text-primary: #F0F0F2;
  --text-secondary: #9A9AA0;
  --text-muted: #5C5C64;
  --red: #CC0000;
  --red-bright: #E50000;
  --red-glow: rgba(204,0,0,0.3);
  --green: #00CC44;
  --green-glow: rgba(0,204,68,0.3);
  --blue: #0066CC;
  --blue-glow: rgba(0,102,204,0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Noise overlay removed — SVG feTurbulence filter caused major scroll jank on desktop */

/* ── Layout ── */
.lp-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lp-section { padding: 120px 40px; }
}

.lp-section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.lp-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.lp-header.scrolled {
  background: rgba(5,5,5,0.95);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.lp-logo {
  display: flex;
  align-items: center;
}
.lp-logo-img {
  height: 48px;
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

/* Nav */
.lp-nav {
  display: none;
  gap: 32px;
}
@media (min-width: 900px) {
  .lp-nav { display: flex; }
}
.lp-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.lp-nav a:hover { color: var(--text-primary); }
.lp-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.lp-nav a:hover::after { width: 100%; }

/* Header buttons */
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-btn-ghost {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
  border: 1px solid transparent;
}
.lp-btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.lp-btn-accent {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  transition: all 0.25s;
}
.lp-btn-accent:hover {
  background: var(--red-bright);
  box-shadow: 0 0 24px var(--red-glow);
}

/* Mobile menu toggle */
.lp-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 36px;
}
@media (min-width: 900px) {
  .lp-menu-toggle { display: none; }
}
.lp-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.lp-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.lp-menu-toggle.open span:nth-child(2) { opacity: 0; }
.lp-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile nav overlay */
.lp-mobile-nav {
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 999;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all 0.3s var(--ease-out);
}
.lp-mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lp-mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.lp-mobile-nav a:hover { color: var(--text-primary); }
.lp-mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.lp-mobile-nav-actions a {
  font-size: 1rem;
  padding: 14px 0;
  text-align: center;
  border-radius: var(--radius-md);
}
.lp-mobile-nav-actions .lp-btn-accent {
  padding: 14px 24px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* Animated radial glow */
.lp-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(204,0,0,0.08) 0%, transparent 70%);
  animation: hero-pulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Grid lines background */
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}
.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero h1 em {
  font-style: normal;
  -webkit-text-fill-color: var(--red);
}
.lp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.lp-hero-benefit {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 40px;
}
.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.lp-hero-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 0 40px var(--red-glow);
  transform: translateY(-2px);
}
.lp-hero-cta svg {
  width: 18px;
  height: 18px;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* NFC wave animation */
.lp-nfc-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 1;
}
.lp-nfc-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(204,0,0,0.15);
  transform: translate(-50%, -50%) scale(0.3);
  animation: nfc-expand 4s ease-out infinite;
  will-change: transform, opacity;
}
.lp-nfc-wave:nth-child(2) { animation-delay: 1.3s; }
.lp-nfc-wave:nth-child(3) { animation-delay: 2.6s; }
.lp-nfc-wave:nth-child(4) { display: none; }
@keyframes nfc-expand {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   SECTION: ECOSYSTEM INFOGRAPHIC
   ═══════════════════════════════════════════════ */
.lp-infographic {
  padding: 0 24px 80px;
  background: var(--bg-base);
  position: relative;
}
.lp-infographic-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 4px 32px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px rgba(204,0,0,0.06);
  position: relative;
}
.lp-infographic-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(145deg, rgba(204,0,0,0.2), rgba(0,204,68,0.2), rgba(204,0,0,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.lp-infographic-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════
   SECTION: THREE PILLARS
   ═══════════════════════════════════════════════ */
.lp-pillars {
  background: var(--bg-deep);
}
.lp-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .lp-pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-pillars-grid {
  perspective: 1000px;
}
.lp-pillar-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.4s var(--ease-out), transform 0.15s ease-out, box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.lp-pillar-card:hover {
  border-color: var(--border-medium);
  will-change: transform;
}
.lp-pillar-card--red:hover { box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25); }
.lp-pillar-card--green:hover { box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25); }
.lp-pillar-card--blue:hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25); }
.lp-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-pillar-card:hover::before { opacity: 1; }

/* Glow on hover */
.lp-pillar-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--card-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.lp-pillar-card:hover::after { opacity: 0.06; }

.lp-pillar-card--red { --card-accent: var(--red); --card-glow: var(--red); }
.lp-pillar-card--green { --card-accent: var(--green); --card-glow: var(--green); }
.lp-pillar-card--blue { --card-accent: var(--blue); --card-glow: var(--blue); }

.lp-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-pillar-card--red .lp-pillar-icon { background: rgba(204,0,0,0.12); color: var(--red); }
.lp-pillar-card--green .lp-pillar-icon { background: rgba(0,204,68,0.12); color: var(--green); }
.lp-pillar-card--blue .lp-pillar-icon { background: rgba(0,102,204,0.12); color: var(--blue); }

.lp-pillar-icon svg {
  width: 26px;
  height: 26px;
}

.lp-pillar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-pillar-for {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.lp-pillar-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.lp-pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}
.lp-pillar-card--red .lp-pillar-badge { background: rgba(204,0,0,0.1); color: var(--red); }
.lp-pillar-card--green .lp-pillar-badge { background: rgba(0,204,68,0.1); color: var(--green); }
.lp-pillar-card--blue .lp-pillar-badge { background: rgba(0,102,204,0.1); color: var(--blue); }

/* ═══════════════════════════════════════════════
   SECTION: HOW IT WORKS (Stepper)
   ═══════════════════════════════════════════════ */
.lp-steps { background: var(--bg-base); }

.lp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .lp-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

/* Connector lines between steps — animated on scroll */
@media (min-width: 768px) {
  .lp-steps-grid::before,
  .lp-steps-grid::after {
    content: '';
    position: absolute;
    top: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-medium), var(--red), var(--border-medium));
    z-index: 0;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1s ease-out;
  }
  .lp-steps-grid.lines-visible::before {
    transform: scaleX(1);
    transition-delay: 0.3s;
  }
  .lp-steps-grid.lines-visible::after {
    transform: scaleX(1);
    transition-delay: 0.6s;
  }
  .lp-steps-grid::before {
    left: calc(33.33% - 20px);
    width: calc(33.33% - 56px + 40px);
  }
  .lp-steps-grid::after {
    left: calc(66.66% - 20px);
    width: calc(33.33% - 56px + 40px);
  }
}

.lp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--bg-card);
  border: 2px solid var(--border-medium);
  transition: all 0.3s;
}
.lp-step-num svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}
.lp-step:hover .lp-step-num {
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}
.lp-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   SECTION: USP GRID
   ═══════════════════════════════════════════════ */
.lp-usp {
  background: var(--bg-deep);
}
.lp-usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .lp-usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .lp-usp-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-usp-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.lp-usp-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  transform: translateY(-2px);
}
.lp-usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(204,0,0,0.08);
}
.lp-usp-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}
.lp-usp-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-usp-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SECTION: SHOWCASE (Tablets)
   ═══════════════════════════════════════════════ */
.lp-showcase { background: var(--bg-base); }

.lp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .lp-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

.lp-tablet {
  position: relative;
  perspective: 800px;
}
.lp-tablet-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: transform 0.6s var(--ease-out);
  transform-style: preserve-3d;
}
.lp-tablet:hover .lp-tablet-inner {
  will-change: transform;
  transform: rotateY(-3deg) rotateX(2deg);
}

.lp-tablet--red .lp-tablet-inner {
  background: linear-gradient(145deg, #1a0000, #0d0000);
  border: 1px solid rgba(204,0,0,0.2);
}
.lp-tablet--green .lp-tablet-inner {
  background: linear-gradient(145deg, #001a0b, #000d05);
  border: 1px solid rgba(0,204,68,0.2);
}

/* NFC symbol on tablet */
.lp-tablet-nfc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}
.lp-tablet-nfc svg {
  width: 180px;
  height: 180px;
}
.lp-tablet--red .lp-tablet-nfc svg { color: var(--red); }
.lp-tablet--green .lp-tablet-nfc svg { color: var(--green); }

.lp-tablet-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lp-tablet--red .lp-tablet-label { color: var(--red); }
.lp-tablet--green .lp-tablet-label { color: var(--green); }

.lp-tablet-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.lp-tablet-hint {
  position: relative;
  z-index: 2;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-tablet-hint svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.lp-tablet--red .lp-tablet-hint svg { color: var(--red); }
.lp-tablet--green .lp-tablet-hint svg { color: var(--green); }

/* ── Photo tablet variant ── */
.lp-tablet--photo .lp-tablet-inner {
  padding: 0;
  min-height: auto;
  justify-content: flex-start;
}
.lp-tablet--photo.lp-tablet--green .lp-tablet-inner {
  background: linear-gradient(145deg, #0a1f0e, #061208);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.lp-tablet--photo.lp-tablet--red .lp-tablet-inner {
  background: linear-gradient(145deg, #1f0a0a, #120606);
  border: 1px solid rgba(214, 40, 57, 0.15);
}
.lp-tablet-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.lp-tablet-photo {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  transition: transform 0.6s var(--ease-out);
}
.lp-tablet--photo:hover .lp-tablet-photo {
  transform: scale(1.03);
}
.lp-tablet-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(34,197,94,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.lp-tablet-photo-glow--red {
  background: radial-gradient(ellipse at 70% 40%, rgba(214,40,57,0.12) 0%, transparent 60%);
}
.lp-tablet-photo-caption {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-tablet-photo-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.lp-tablet-photo-badge--red {
  color: var(--red);
  background: rgba(214,40,57,0.1);
  border-color: rgba(214,40,57,0.2);
}
.lp-tablet-photo-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.lp-tablet-photo-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.lp-footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .lp-footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.lp-footer-brand {
  max-width: 320px;
}
.lp-footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.lp-footer-logo-img {
  height: 36px;
  width: auto;
  max-height: 36px;
  object-fit: contain;
}
.lp-footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.lp-footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--text-primary); }

.lp-footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */
.lp-text-red { color: var(--red); }
.lp-text-green { color: var(--green); }
.lp-text-blue { color: var(--blue); }

/* Divider line with glow */
.lp-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

/* ═══════════════════════════════════════════════
   MOBILE POLISH
   ═══════════════════════════════════════════════ */
@media (max-width: 899px) {
  .lp-header-actions .lp-btn-ghost,
  .lp-header-actions .lp-btn-accent { display: none; }
}
@media (max-width: 480px) {
  .lp-header { padding: 0 16px; }
  .lp-hero { padding: 100px 16px 60px; }
  .lp-section { padding: 56px 16px; }
  .lp-pillar-card { padding: 28px 20px; }
  .lp-footer { padding: 48px 16px 24px; }
  .lp-hero-cta { padding: 14px 28px; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .lp-nfc-wave { display: none; }
  .lp-hero::before { animation: none; opacity: 0.8; }
}
