/* ==========================================================================
   ALLIANCE APP - OFFICIAL WEBSITE & PRIVACY POLICY STYLESHEET
   Matches Figma / UI Mockup Specifications Exactly
   ========================================================================== */

:root {
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-light: #EFF6FF;
  --primary-glow: rgba(37, 99, 235, 0.18);

  --accent-orange: #F97316;
  --accent-orange-light: #FFF7ED;
  --accent-green: #10B981;
  --accent-green-light: #F0FDF4;
  --accent-purple: #8B5CF6;
  --accent-purple-light: #F5F3FF;
  --accent-blue-soft: #E0E7FF;

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;

  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  --cta-banner-bg: #EBF3FE;
  --cta-banner-border: #D7E6FC;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.08), 0 6px 12px -3px rgba(15, 23, 42, 0.04);
  --shadow-phone: 0 25px 60px -15px rgba(15, 23, 42, 0.16), 0 10px 25px -5px rgba(15, 23, 42, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-icon-svg {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition-fast);
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Active Underline in Mockup */
.nav-link.active-underlined {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active-underlined::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Right Header Action */
.header-right-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Pill Button: Get on Google Play */
.btn-play-header {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-play-header:hover {
  border-color: #CBD5E1;
  background: var(--bg-subtle);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.play-badge-link {
  display: inline-block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  border-radius: 10px;
}

.play-badge-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.14));
}

.play-badge-img {
  height: 52px;
  width: auto;
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.hero-secondary-btn:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-features-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}

.strip-item svg {
  color: var(--primary);
}

/* Hero Visual / Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-backdrop-shape {
  position: absolute;
  width: 440px;
  height: 520px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 60% 40%, rgba(219, 234, 254, 0.75) 0%, rgba(239, 246, 255, 0.45) 70%, transparent 100%);
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   PHONE MOCKUP COMPONENT
   ========================================================================== */
.phone-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 310px;
  background: #0F172A;
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  border: 4px solid #1E293B;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.phone-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -18px rgba(15, 23, 42, 0.22);
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #FFFFFF;
  border-radius: 36px;
  overflow: hidden;
}

.phone-screen img,
.phone-screen svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Floating Badges */
.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  z-index: 10;
  animation: floatChip 4s ease-in-out infinite alternate;
}

.floating-chip-1 {
  top: 15%;
  left: -24px;
  animation-delay: 0s;
}

.floating-chip-2 {
  bottom: 18%;
  right: -24px;
  animation-delay: 1.5s;
}

@keyframes floatChip {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   WHAT ALLIANCE DOES (FEATURES SECTION)
   ========================================================================== */
.section-features {
  padding: 100px 0 90px;
  background: var(--bg-page);
}

.section-header {
  margin-bottom: 54px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-blue {
  background-color: var(--primary-light);
  color: var(--primary);
}

.icon-green {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.icon-purple {
  background-color: var(--accent-purple-light);
  color: var(--accent-purple);
}

.icon-orange {
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
}

.feature-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feature-card-text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-card-text strong {
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   DESIGNED AROUND STUDENT LIFE (SCREENSHOTS SHOWCASE)
   ========================================================================== */
.section-showcase {
  padding: 90px 0 100px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-phone-wrap {
  width: 100%;
  max-width: 250px;
  margin-bottom: 18px;
  cursor: pointer;
  position: relative;
}

.showcase-phone-wrap .phone-mockup {
  max-width: 100%;
  border-radius: 40px;
  padding: 8px;
  border-width: 3px;
  background: #0B1120;
}

.showcase-phone-wrap .phone-screen {
  border-radius: 30px;
}

.zoom-hint {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 25;
}

.showcase-phone-wrap:hover .zoom-hint {
  opacity: 1;
}

.zoom-hint svg {
  width: 28px;
  height: 28px;
}

.showcase-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.showcase-sublabel {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   DOWNLOAD CTA BANNER SECTION
   ========================================================================== */
.section-cta-banner {
  padding: 90px 0 100px;
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, #EBF3FE 0%, #E2EDFD 100%);
  border: 1px solid var(--cta-banner-border);
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.05);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.qr-code-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 10px 16px 10px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.qr-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
}

.qr-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  max-width: 110px;
}

.cta-banner-phones {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-phone {
  position: absolute;
  width: 220px;
  border-radius: 36px;
  padding: 8px;
  border: 3px solid #1E293B;
  background: #0F172A;
  box-shadow: var(--shadow-phone);
  transition: transform var(--transition-smooth);
}

.banner-phone .phone-screen {
  border-radius: 28px;
}

.banner-phone-front {
  z-index: 3;
  transform: rotate(-6deg) translateX(-35px);
}

.banner-phone-back {
  z-index: 2;
  transform: rotate(8deg) translateX(45px) translateY(20px);
  opacity: 0.95;
}

/* ==========================================================================
   PRIVACY POLICY PAGE (MATCHING media_1789988973612.png)
   ========================================================================== */
.policy-page {
  background-color: #FFFFFF;
}

/* Hero Section */
.policy-hero-modern {
  position: relative;
  padding: 80px 0 70px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.policy-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-hero-text {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.policy-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.policy-hero-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.policy-hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.policy-hero-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Giant Geometric Alliance Watermark */
.policy-hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  z-index: 1;
  pointer-events: none;
}

.policy-hero-watermark svg {
  width: 100%;
  height: 100%;
}

/* Two-Column Layout */
.policy-body-wrap {
  background: #FFFFFF;
  padding: 60px 0 100px;
}

.policy-columns {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Sticky Table of Contents */
.policy-nav-sidebar {
  position: sticky;
  top: 100px;
}

.policy-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
  transition: all var(--transition-fast);
}

.toc-link:hover {
  color: var(--primary);
  background-color: var(--bg-subtle);
}

/* Active State in Mockup: Light blue rounded pill */
.toc-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
  font-weight: 600;
}

/* Right Content Article */
.policy-article-content {
  max-width: 780px;
}

.policy-preamble {
  margin-bottom: 44px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-block {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.policy-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.policy-sub-title {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-main);
  margin: 24px 0 12px;
}

.policy-block p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Bullet points matching design */
.policy-bullet-list {
  list-style: none;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--text-main);
  font-size: 1.1rem;
}

/* Developer Info Card matching mockup */
.developer-info-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: baseline;
  font-size: 0.94rem;
}

.info-label {
  color: var(--text-muted);
  font-weight: 500;
}

.info-value {
  color: var(--text-main);
  font-weight: 600;
}

.policy-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-link:hover {
  color: var(--primary-hover);
}

.policy-note-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Location Callout Box with Blue Pin */
.location-callout-box {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.location-callout-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-callout-text {
  font-size: 0.92rem;
  color: #1E3A8A;
  line-height: 1.55;
}

/* Services and External Links */
.policy-services-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-services-list li {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-services-list strong {
  color: var(--text-main);
  display: inline-block;
  margin-right: 4px;
}

.external-links-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.external-links-box p {
  margin-bottom: 0 !important;
  font-size: 0.92rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .brand {
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
}

.footer-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  color: var(--text-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-img-wrapper {
  max-height: 80vh;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-img-wrapper img,
.lightbox-img-wrapper svg {
  max-height: 80vh;
  width: auto;
  display: block;
}

.lightbox-caption {
  margin-top: 16px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 2.8rem;
  }

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

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .cta-banner-card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
  }

  .cta-banner-phones {
    height: 300px;
  }

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

@media (max-width: 860px) {
  .policy-columns {
    grid-template-columns: 1fr;
  }

  .policy-nav-sidebar {
    display: none;
  }

  .policy-hero-watermark {
    display: none;
  }

  .policy-hero-heading {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 64px;
  }

  .mobile-toggle {
    display: flex;
  }

  .btn-play-header {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features-strip {
    justify-content: center;
  }

  .hero-backdrop-shape {
    display: none;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-banner-card {
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .cta-banner-title {
    font-size: 2rem;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-nav {
    justify-content: center;
  }

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