/* ============================================
   ZippitySplit — Dark & Techy Landing Page
   Aesthetic: Linear.app / Vercel dashboard
   Content from website-c, formatting from website-d
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0B0F1A;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.6);
  --bg-card-hover: rgba(30, 41, 59, 0.7);
  --border-card: rgba(59, 130, 246, 0.15);
  --border-card-hover: rgba(59, 130, 246, 0.4);
  --blue: #3B82F6;
  --cyan: #06B6D4;
  --blue-glow: rgba(59, 130, 246, 0.4);
  --cyan-glow: rgba(6, 182, 212, 0.3);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --green: #10B981;
  --red: #EF4444;
  --yellow: #F59E0B;
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--cyan);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Gradient Text Utility --- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glassmorphism Card --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  box-shadow: 0 0 30px var(--blue-glow), 0 0 60px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  transition: padding 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: box-shadow 0.3s, transform 0.2s;
}

.nav-cta:hover {
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 1px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--blue-glow), 0 0 80px rgba(6, 182, 212, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
  color: var(--cyan);
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  -webkit-text-fill-color: var(--cyan);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
  display: block;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 36px;
  padding: 2px;
  background: linear-gradient(135deg, var(--blue), transparent 50%, var(--cyan));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.phone-frame-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.phone-frame svg {
  opacity: 0.3;
}

/* ======================
   HOW IT WORKS
   ====================== */
.how-it-works {
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Pipeline connector */
.steps-container::before {
  content: '';
  position: absolute;
  top: 4.5rem;
  left: calc(33.33% - 1rem);
  right: calc(33.33% - 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  opacity: 0.4;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.95rem;
}

.step-placeholder {
  width: 100%;
  height: 180px;
  margin-top: 1.5rem;
  border: 1px dashed rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.4);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.step-screenshot {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-screenshot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Pipeline arrow indicators */
.step-arrow {
  display: none;
}

@media (min-width: 769px) {
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -1.5rem;
    top: 4.1rem;
    z-index: 2;
    color: var(--cyan);
    opacity: 0.6;
    font-size: 1.5rem;
  }

  .step-card:last-child .step-arrow {
    display: none;
  }
}

/* ======================
   SCREENSHOTS GALLERY
   ====================== */
.screenshots {
  position: relative;
}

.screenshots::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-4px);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--blue), transparent 40%, var(--cyan));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: rgba(17, 24, 39, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.gallery-placeholder svg {
  opacity: 0.25;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  display: block;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.75rem 0.5rem;
  background: rgba(17, 24, 39, 0.8);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* ======================
   FEATURES
   ====================== */
.features {
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  padding: 2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
  font-size: 1.2rem;
}

.feature-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-note {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 0.4rem;
}

/* ======================
   COMPARISON TABLE
   ====================== */
.comparison {
  position: relative;
}

.comparison::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.12);
  position: relative;
  z-index: 1;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table thead {
  background: rgba(59, 130, 246, 0.08);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  white-space: nowrap;
}

.comparison-table th:first-child {
  color: var(--text-primary);
}

.comparison-table th.highlight {
  color: var(--cyan);
}

.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  white-space: nowrap;
}

.comparison-table tr:hover td {
  background: rgba(59, 130, 246, 0.03);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.comparison-table td:nth-child(2) {
  color: var(--cyan);
  font-weight: 500;
}

.table-check {
  color: var(--green);
  font-weight: 700;
}

.table-cross {
  color: var(--text-muted);
}

.table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.table-footnote {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ======================
   PRICING
   ====================== */
.pricing {
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06), transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px var(--blue-glow), 0 0 80px rgba(59, 130, 246, 0.1);
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-label {
  color: var(--cyan);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ======================
   DOWNLOAD CTA
   ====================== */
.download-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
    transparent,
    rgba(59, 130, 246, 0.05) 30%,
    rgba(6, 182, 212, 0.05) 70%,
    transparent
  );
  pointer-events: none;
}

.download-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1), transparent 60%);
  pointer-events: none;
}

.download-cta .container {
  position: relative;
  z-index: 1;
}

.download-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.download-cta p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.android-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Google Play badge */
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s;
}

.play-badge:hover {
  border-color: var(--blue);
  box-shadow: 0 0 25px var(--blue-glow);
  transform: translateY(-2px);
  color: #fff;
}

.play-badge-text {
  text-align: left;
}

.play-badge-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.play-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.play-badge svg {
  color: var(--green);
}

/* ======================
   FOOTER
   ====================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  position: relative;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-left img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ======================
   PRIVACY PAGE
   ====================== */
.privacy-page {
  padding-top: 7rem;
  min-height: 100vh;
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-content h1 {
  margin-bottom: 0.5rem;
}

.privacy-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.privacy-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.privacy-content p,
.privacy-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.privacy-content li {
  margin-bottom: 0.3rem;
}

.privacy-content a {
  color: var(--cyan);
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.privacy-back:hover {
  color: var(--text-secondary);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-mockup {
    display: none;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-container::before {
    display: none;
  }

  .step-arrow {
    display: none !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.8rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
