:root {
  /* Premium Palette - Blue Theme */
  --primary-color: #2563eb; /* Blue 600 */
  --primary-dark: #1d4ed8; /* Blue 700 */
  --primary-light: #60a5fa; /* Blue 400 */

  --secondary-color: #0f172a; /* Slate 900 */
  --secondary-light: #1e293b; /* Slate 800 */

  --accent-color: #3b82f6; /* Blue 500 */
  --accent-glow: rgba(59, 130, 246, 0.5);

  --text-dark: #0f172a; /* Slate 900 */
  --text-medium: #334155; /* Slate 700 */
  --text-light: #64748b; /* Slate 500 */

  --white: #ffffff;
  --off-white: #f8fafc; /* Slate 50 */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);

  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-hero: radial-gradient(
      circle at top right,
      rgba(59, 130, 246, 0.1),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(37, 99, 235, 0.1),
      transparent 40%
    );

  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px var(--accent-glow);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-medium);
  line-height: 1.6;
  background-color: var(--off-white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 2000;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  transform: translateY(0);
}

.focus-ring,
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 3px;
  border-radius: 6px;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35); /* Blue Shadow */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo span {
  background: linear-gradient(to right, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a.active::after {
  width: 100%;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-dark);
}

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.navbar.open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-desktop {
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Background Animation */
.hero-desktop::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
  background-size: 50% 50%, 60% 60%;
  background-position: 0 0, 100% 100%;
  animation: auroraMove 20s linear infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes auroraMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(5deg) scale(1.1);
  }
}

.hero-desktop .container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  min-height: 700px;
}

.hero-content {
  padding-top: 0; /* Align directly with mockup */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stats .count {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}

.hero-stats .label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
}

.hero-visual {
  position: relative;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align to top */
  padding-top: 2rem;
  height: 100%;
}

.visual-container {
  position: relative;
  z-index: 10;
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
  /* margin-top removed for better alignment */
}

.device-macbook-pro {
  transform: scale(1.1) !important;
  filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.25));
  border-radius: 20px;
}

/* Floating UI Cards - Glassmorphism */
.floating-ui {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-ui:hover {
  transform: scale(1.05) translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-revenue {
  top: 5%;
  right: -10%;
  animation: float 6s ease-in-out infinite;
}

.card-users {
  bottom: 10%;
  left: -15%;
  animation: float 8s ease-in-out infinite reverse;
}

.ui-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.card-revenue .ui-icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.card-users .ui-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.ui-details {
  display: flex;
  flex-direction: column;
}

.ui-details span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ui-details strong {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-elements .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 20s infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0%,
    transparent 70%
  );
  top: -20%;
  right: -10%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.2) 0%,
    transparent 70%
  );
  bottom: -10%;
  left: -10%;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* Hero Visibility Toggles */
.hero-desktop {
  display: block;
}

.hero-mobile {
  display: none;
}

/* Mobile Hero Styles */
.hero-mobile {
  padding: 6rem 0 4rem;
  background: #ffffff;
  text-align: center;
  overflow: hidden; /* Prevent overflow from mockup */
}

.hero-mobile-content {
  margin-bottom: 3rem;
}

.hero-mobile-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-mobile-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mobile-visual {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-container-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  /* No animation for mobile as requested */
}

.visual-container-mobile .device-macbook-pro {
  transform: rotateY(0deg) rotateX(0deg) scale(0.8) !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.mobile-stats-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  border: 1px solid #f1f5f9;
  width: 100%;
  max-width: 600px;
}

.stat-row {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.m-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.m-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero Responsive Logic */
@media (max-width: 1024px) {
  /* Target iPad and below */
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }

  /* Ensure no horizontal scroll */
  body,
  html {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .visual-container-mobile .device-macbook-pro {
    transform: rotateY(0deg) rotateX(0deg) scale(0.6) !important;
  }
}

@media (max-width: 576px) {
  .hero-mobile-content h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-btns .btn {
    width: auto;
    flex: 1; /* Allow them to grow but share space */
    min-width: 140px; /* Prevent being too small */
  }

  .stat-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .visual-container-mobile .device-macbook-pro {
    transform: rotateY(0deg) rotateX(0deg) scale(0.45) !important;
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }
}

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

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Unified Icon Styles - Colorful & Vibrant (Pastel 100/700 shades) */
.color-1 {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  color: var(--white);
} /* Indigo - Admin */
.color-2 {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: var(--white);
} /* Emerald - Finance */
.color-3 {
  background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
  color: var(--white);
} /* Rose - Attendance */
.color-4 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
} /* Amber - Exams */
.color-5 {
  background: #f3e8ff;
  color: #7e22ce;
} /* Purple - Staff */
.color-6 {
  background: #ffedd5;
  color: #c2410c;
} /* Orange - Transport */
.color-7 {
  background: #fae8ff;
  color: #a21caf;
} /* Fuchsia - Library */
.color-8 {
  background: #dcfce7;
  color: #15803d;
} /* Green - Inventory */

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: "Outfit", sans-serif;
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Mobile App Section */
.mobile-app {
  padding: 6rem 0;
  background-color: #f8fafc;
  overflow: hidden;
}

.mobile-app .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.app-content > p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.app-feature-item {
  display: flex;
  gap: 1rem;
}

.app-feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.app-feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.app-feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.store-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 1.75rem;
}

.store-btn div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn span {
  font-size: 0.7rem;
}

.store-btn strong {
  font-size: 1rem;
}

/* App Screen Visual (Replaces Phone Mockup) */
.app-image {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.app-screen-visual {
  width: 280px;
  height: 560px;
  border-radius: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: var(--transition);
  overflow: hidden;
}

.app-image:hover .app-screen-visual {
  transform: rotateY(0deg) rotateX(0deg);
}

.app-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text.vertical {
  flex-direction: column;
  text-align: center;
}

.floating-badge {
  position: absolute;
  background-color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
  font-weight: 600;
  font-size: 0.9rem;
  animation: float 5s ease-in-out infinite;
}

.badge-1 {
  top: 20%;
  left: -30px;
  animation-delay: 1s;
}

.badge-1 i {
  color: var(--warning-color);
}

.badge-2 {
  bottom: 25%;
  right: -30px;
  animation-delay: 2.5s;
}

.badge-2 i {
  color: var(--success-color);
}

/* Mobile App Responsive */
@media (max-width: 576px) {
  .badge-1,
  .badge-2 {
    display: none; /* Hide floating badges on mobile to prevent overlap */
  }
}

.pulse-anim {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
}

.circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  z-index: 0;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.cta-box {
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 1;
  color: #e0e7ff;
}

.contact-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 550px;
  margin: 0 auto;
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.contact-form input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-form input:focus {
  background: var(--off-white);
}

.contact-form .btn-primary {
  padding: 0.75rem 2rem;
  white-space: nowrap;
  box-shadow: none;
}

.contact-form .btn-primary:hover {
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

footer .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

footer .logo span {
  background: linear-gradient(to right, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", sans-serif;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-col p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col p i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container,
  .mobile-app .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p,
  .app-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns,
  .app-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .app-features {
    align-items: center;
    text-align: left;
  }

  .app-feature-item {
    max-width: 400px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .app-screen-visual {
    width: 240px;
    height: 480px;
  }

  .badge-1 {
    left: 10px;
  }

  .badge-2 {
    right: 10px;
  }
  :root {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-mobile-visual .device-macbook-pro {
    transform: scale(0.6) !important;
  }
}

.pulse-anim {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
}

.circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  z-index: 0;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.cta-box {
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #1d4ed8 100%
  ); /* Vibrant Blue */
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 550px;
  margin: 0 auto;
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.contact-form input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-form input:focus {
  background: var(--off-white);
}

.contact-form .btn-primary {
  padding: 0.75rem 2rem;
  white-space: nowrap;
  box-shadow: none;
}

.contact-form .btn-primary:hover {
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col p {
  margin-bottom: 1rem;
}

.footer-col .logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

body.nav-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container,
  .mobile-app .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p,
  .app-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns,
  .app-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .app-features {
    align-items: center;
    text-align: left;
  }

  .app-feature-item {
    max-width: 400px;
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Persona Switcher Section */
.personas-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.persona-tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: var(--white);
  border-radius: 2rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap; /* Prevent wrapping inside the chip */
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .persona-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    width: 100%;
    margin-left: -1rem; /* Counteract container padding if needed, or adjust container */
    width: calc(100% + 2rem);
    margin-left: -1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .persona-tabs::-webkit-scrollbar {
    display: none;
  }

  .persona-tab {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
  }
}

.persona-tab:hover {
  transform: translateY(-2px);
  color: var(--primary-color);
}

.persona-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.persona-content-wrapper {
  position: relative;
  min-height: 400px;
}

.persona-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeIn 0.5s ease-out;
}

.persona-content.active {
  display: grid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.persona-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.persona-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.persona-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.persona-features li i {
  color: var(--success-color);
  background-color: #ecfdf5;
  padding: 0.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
}

.persona-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f1f5f9;
}

/* Persona Responsive */
@media (max-width: 992px) {
  .persona-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .persona-features {
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
  }

  .persona-content-wrapper {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .persona-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .persona-text h3 {
    font-size: 1.5rem;
  }
}

.persona-visual {
  display: flex;
  justify-content: center;
}

.abstract-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.abstract-card span {
  font-weight: 600;
  color: var(--text-light);
}

/* Abstract Visuals for Personas */
.chart-placeholder {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
}

.bar {
  width: 20px;
  background-color: var(--primary-color);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
}

.bar:nth-child(2) {
  height: 60px;
  opacity: 0.5;
}
.bar:nth-child(3) {
  height: 80px;
  opacity: 0.9;
}
.bar:nth-child(4) {
  height: 40px;
  opacity: 0.3;
}

.list-placeholder {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line {
  height: 10px;
  background-color: #f1f5f9;
  border-radius: 5px;
  width: 100%;
}

.line:nth-child(2) {
  width: 80%;
}
.line:nth-child(3) {
  width: 60%;
}

.circle-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #f1f5f9;
  border-top-color: var(--success-color);
  transform: rotate(45deg);
}

.msg-placeholder {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  height: 30px;
  width: 80%;
  background-color: #f1f5f9;
  border-radius: 15px 15px 15px 0;
}

.msg.right {
  align-self: flex-end;
  background-color: #eff6ff;
  border-radius: 15px 15px 0 15px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.2;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 2px solid var(--white);
  font-family: "Outfit", sans-serif;
}

.user-info h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.user-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid #f1f5f9;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.plan-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.plan-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.plan-features li i {
  color: var(--success-color);
}

.full-width {
  width: 100%;
  margin-left: 0;
}

/* Special Offer Pricing Styles */
.pricing-grid.single-plan {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  padding: 0 1rem; /* Prevent edge touching on small screens */
}

.special-offer-card {
  max-width: 550px; /* Reduced from 750px */
  width: 100%;
  padding: 2.5rem; /* Reduced from 3.5rem */
  border: none;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  position: relative;
  /* overflow: hidden; REMOVED to show badge */
  box-shadow: 0 20px 50px -12px rgba(37, 99, 235, 0.25),
    0 0 0 1px rgba(37, 99, 235, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1.5rem; /* More rounded */
}

.special-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.3),
    0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* Confetti Background Pattern */
.special-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#3b82f6 1.5px, transparent 1.5px),
    radial-gradient(#10b981 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.1;
  pointer-events: none;
  border-radius: inherit; /* Added to match card corners */
}

/* Floating Badge */
.special-offer-card .popular-badge {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  top: -15px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.original-price {
  font-size: 1.5rem; /* Reduced from 1.75rem */
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: -0.25rem;
  font-weight: 500;
}

.special-offer-card .price {
  font-size: 3.5rem; /* Reduced from 4.5rem */
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.price-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.price-breakdown {
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  display: inline-block;
}

.plan-desc {
  font-size: 1rem;
  color: #475569;
  max-width: 90%;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.plan-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
  margin: 1.5rem 0;
}

.plan-features.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.95rem;
  color: #334155;
  display: flex;
  align-items: flex-start; /* Align top for multi-line text */
}

.plan-features li i {
  background-color: #ecfdf5;
  color: #059669;
  min-width: 20px; /* Fixed width */
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-right: 0.6rem;
  margin-top: 3px; /* Visual alignment */
}

.renewal-info {
  background: linear-gradient(to right, #f0fdf4, #dcfce7);
  color: #166534;
  padding: 0.75rem 1.5rem;
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  margin: 0 auto 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 100%; /* Full width on mobile mostly */
  max-width: 400px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%; /* Full width button */
}

.btn-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

/* Button Shine Effect */
.btn-lg::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

.offer-expiry {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #ef4444;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.offer-expiry::before {
  content: "⏰";
}

@media (max-width: 768px) {
  .plan-features.two-column {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 0.75rem;
  }

  .special-offer-card {
    padding: 2.5rem 1.5rem 1.5rem; /* Increased top padding to 2.5rem */
    border-radius: 1rem;
  }

  .special-offer-card .price {
    font-size: 2.75rem; /* Smaller price */
  }

  .original-price {
    font-size: 1.25rem;
  }

  .renewal-info {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .persona-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .persona-features {
    align-items: center;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto; /* Right aligned */
    width: 75%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%); /* Off-screen right */
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 1001;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    height: 100vh;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-radius: 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover {
    background: transparent;
    color: var(--primary-color);
    padding-left: 10px; /* Slight shift */
  }

  .navbar.open .nav-links {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  /* Style for the backdrop */
  .nav-backdrop {
    backdrop-filter: blur(4px);
  }

  .nav-close-btn {
    display: block; /* Show on mobile */
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    margin-right: -0.5rem; /* Align with padding */
  }

  .nav-close-btn:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 85%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem 2rem 3rem; /* More spacing */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.5s;
    z-index: 1001;
    border-radius: 24px 0 0 24px; /* Smoother curve */
    height: 100vh;
    overflow-y: auto;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95),
      rgba(248, 250, 252, 0.95)
    );
    z-index: -1;
    border-radius: inherit;
  }

  .nav-links a {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s,
      color 0.2s, padding-left 0.2s;
  }

  .navbar.open .nav-links a {
    opacity: 1;
    transform: translateX(0);
    /* Staggered delay for polish */
  }
  .navbar.open .nav-links a:nth-child(2) {
    transition-delay: 0.1s;
  }
  .navbar.open .nav-links a:nth-child(3) {
    transition-delay: 0.15s;
  }
  .navbar.open .nav-links a:nth-child(4) {
    transition-delay: 0.2s;
  }
  .navbar.open .nav-links a:nth-child(5) {
    transition-delay: 0.25s;
  }
  .navbar.open .nav-links a:nth-child(6) {
    transition-delay: 0.3s;
  }
  .navbar.open .nav-links a:nth-child(7) {
    transition-delay: 0.35s;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
  }

  .nav-links a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
  }

  .navbar.open .nav-links {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 1rem;
  }

  .contact-form input {
    background: var(--white);
    border-radius: var(--radius-full);
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.gallery-item {
  text-align: center;
}

.gallery-item h4 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.browser-mockup {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-10px);
}

.browser-header {
  background-color: #f1f5f9;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.dots span:nth-child(1) {
  background-color: #ef4444;
}
.dots span:nth-child(2) {
  background-color: #f59e0b;
}
.dots span:nth-child(3) {
  background-color: #10b981;
}

.url-bar {
  flex: 1;
  background-color: var(--white);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: left;
}

.browser-content {
  height: 250px;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* What's Inside Table */

/* What's Inside Table */

/* What's Inside Table */

/* What's Inside Table */

/* What's Inside Table */
.whats-inside {
  padding: 6rem 0;
  background: var(--white);
}

.inside-table {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.inside-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  border-bottom: 1px solid #e2e8f0;
}

.inside-row:last-child {
  border-bottom: none;
}

.inside-cell {
  padding: 1.1rem 1.25rem;
  font-size: 0.98rem;
  color: var(--text-light);
  background: #fff;
}

.inside-head .inside-cell {
  background: #f8fafc;
  font-weight: 700;
  color: var(--text-dark);
}

.inside-cell.label {
  font-weight: 700;
  color: var(--text-dark);
  background: #f8fafc;
}

.inside-cell.highlight {
  color: var(--text-dark);
  background: #f8fbff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .inside-row {
    grid-template-columns: 1fr;
  }

  .inside-head {
    display: none;
  }

  .inside-cell.label {
    border-bottom: 1px solid #e2e8f0;
  }
}

/* Changelog */
.recently-shipped {
  padding: 6rem 0;
  background: #f8fafc;
}

.changelog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.changelog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.changelog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #eef2ff;
  color: #4338ca;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.changelog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.changelog-card ul {
  list-style: disc;
  margin-left: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Blog page */
.blog-hero {
  padding: 9rem 0 5rem;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(37, 99, 235, 0.12),
      transparent 35%
    ),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.14), transparent 40%),
    linear-gradient(135deg, #f8fbff 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  right: -6%;
  top: -16%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.blog-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 25px 60px -20px rgba(37, 99, 235, 0.25);
}

.blog-hero h1 {
  font-size: 3.25rem;
  margin: 1.1rem 0 0.75rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.blog-hero p {
  color: #475569;
  font-size: 1.1rem;
  max-width: 720px;
}

.blog-list {
  padding: 4rem 0 6rem;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
  position: relative;
}

.blog-thumb::after {
  content: "Image placeholder";
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-body h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.blog-body p {
  color: var(--text-light);
  line-height: 1.5;
}

.blog-details {
  padding: 3rem 0 6rem;
  background: #f8fafc;
}

.blog-detail {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 30px 70px -45px rgba(15, 23, 42, 0.45);
  margin: 0 auto 2.5rem;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.blog-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(14, 165, 233, 0.06)
  );
  opacity: 0.35;
  pointer-events: none;
}

.blog-detail > * {
  position: relative;
  z-index: 1;
}

.blog-detail h2 {
  font-size: 2.2rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.015em;
}

.blog-detail h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-detail p {
  color: #334155;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.blog-detail ul {
  list-style: disc;
  margin-left: 1.3rem;
  color: #334155;
  line-height: 1.65;
  font-size: 1rem;
}

.blog-detail-thumb {
  height: 260px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.blog-detail-thumb::after {
  content: "Image placeholder";
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-detail-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0,
    rgba(255, 255, 255, 0.15) 12px,
    rgba(255, 255, 255, 0.05) 12px,
    rgba(255, 255, 255, 0.05) 24px
  );
  opacity: 0.4;
}

/* --- Website Redesign Styles --- */

/* Force body to hide default scroll since we use a scroll container */
/* Body scroll restored */
/* body {
    overflow: hidden;
} */

/* Scroll Snap Container */
.scroll-container {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: absolute;
  top: 0;
  left: 0;
}

/* Individual Full-Page Sections */
.snap-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Ensure navbar stays on top */
.navbar {
  position: fixed;
  z-index: 1000;
}

/* --- Hero Section Refinements --- */
.hero-section {
  background: var(--gradient-bg);
}

.hero-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 4rem; /* Offset for navbar */
}

/* --- App Showcase Section --- */
.showcase-section {
  background-color: #0f172a;
  color: var(--white);
  padding: 0;
}

.showcase-container {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Left: Text Content */
.showcase-text {
  width: 40%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.text-slide {
  display: none;
  animation: fadeInUp 0.6s ease;
}

.text-slide.active {
  display: block;
}

.text-slide h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.text-slide p {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Right: Visual Content */
.showcase-visuals {
  width: 60%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.parallax-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.visual-slide {
  position: absolute;
  top: 0;
  left: 100%; /* Start off-screen right */
  width: 100%;
  height: 100%;
  transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth eased transition */
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-slide.active {
  left: 0;
}

.visual-slide.prev {
  left: -100%;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Slider Controls */
.slider-nav {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slider-nav button {
  background: transparent;
  border: 1px solid #475569;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-nav button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slide-indicators {
  display: flex;
  gap: 0.5rem;
}

.slide-indicators span {
  width: 10px;
  height: 10px;
  background-color: #334155;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}

.slide-indicators span.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 12px;
}

/* --- Features Section Fixes --- */
.features-section .features-grid {
  /* Scale down slightly to fit 100vh if needed */
  gap: 1.5rem;
}
.features-section .feature-card {
  padding: 1.5rem;
}

/* --- Mobile / Pricing Section Fixes --- */
.mobile-app-section {
  background-color: #eff6ff;
}
.pricing-section {
  background-color: #fff;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .showcase-container {
    flex-direction: column;
  }
  .showcase-text,
  .showcase-visuals {
    width: 100%;
    height: 50%;
  }
  .text-slide h3 {
    font-size: 2rem;
  }
  .showcase-text {
    padding: 2rem;
  }
  .scroll-container {
    scroll-snap-type: none; /* Disable strict snap on mobile */
    height: auto;
    overflow-y: auto;
    position: relative;
  }
  .snap-section {
    height: auto;
    min-height: 100vh;
  }
  body {
    overflow: auto;
  }
}

/* Carousel Section */
.carousel-section {
  padding: 6rem 0;
  padding: 6rem 0;
  background-color: #f8fafc; /* Changed from secondary-color to light */
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  /* Aspect ratio mainly for height consistency, but min-height handles content */
  min-height: 500px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  /* Flex alignment */
  display: flex;
  align-items: stretch;
  opacity: 0.4;
  transition: opacity 0.6s ease;
  /* Scale down slightly when inactive for depth effect */
  transform: scale(0.95);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  width: 100%;
}

.slide-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  z-index: 2; /* Sit above image slightly if overlap desired */
}

.slide-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.slide-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.slide-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.slide-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slide-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.slide-features li i {
  color: var(--success-color);
}

/* Image Parallax Wrapper */
.slide-image-wrapper {
  position: relative;
  overflow: hidden; /* Key for parallax: masks the inner image */
  background-color: #f1f5f9;
}

.slide-image-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Pre-transform for parallax effect (opposite direction of slide movement) */
  /* By default, we might shift it. JS will handle dynamic updates, 
       but we can set a transition here for smoother auto-play or button clicks. */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Placeholder Styling */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  font-weight: 600;
}

.placeholder-img i {
  font-size: 4rem;
  opacity: 0.5;
}

/* Different background colors for placeholders to distinguish slides */
.color-1 {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.color-2 {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}
.color-3 {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}
.color-4 {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  color: var(--text-dark);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -25px;
}
.carousel-btn.next {
  right: -25px;
}

.carousel-indicators {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto 250px; /* Text on top, image on bottom */
  }

  .slide-text {
    padding: 2rem;
  }

  .slide-image-wrapper {
    min-height: 250px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn.prev {
    left: -10px;
  }
  .carousel-btn.next {
    right: -10px;
  }
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 8rem 0 5rem;
  background: var(--off-white);
  min-height: 100vh;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.privacy-header p {
  color: var(--text-light);
}

.privacy-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.privacy-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.privacy-content p,
.privacy-content li {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content strong {
  color: var(--text-dark);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-img.zoomed {
  transform: scale(1.75);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2010;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Indicating images are clickable */
section img {
  cursor: zoom-in;
}

/* Prevent footer logo/socials from being zoomed if not desired, but user said 'images' */
.logo-img,
.footer-col img,
.avatar {
  cursor: default !important;
}
