/* SHNOUP Pure CSS - Premium Design System */

:root {
  /* Color Palette */
  --navy: #1F2B3D;
  --navy-foreground: #FFFFFF;
  --brand: #2FA8FF;
  --brand-foreground: #FFFFFF;
  --cta: #FFA51E;
  --cta-foreground: #1F2B3D;
  --light-gray: #F7F7F7;

  --background: #FFFFFF;
  --foreground: #222222;
  --card: #FFFFFF;
  --card-foreground: #222222;
  --muted: #F7F7F7;
  --muted-foreground: #6b7280;
  --accent: #EEF7FF;
  --border: #E7EBF0;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #2FA8FF 0%, #1F87E6 100%);
  --gradient-cta: linear-gradient(135deg, #FFB84D 0%, #FFA51E 60%, #FF8A00 100%);
  --gradient-hero: radial-gradient(1200px 600px at 10% -10%, rgba(47, 168, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 165, 30, 0.25), transparent 60%),
    linear-gradient(180deg, #1F2B3D 0%, #172234 100%);
  --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);

  /* Shadows */
  --shadow-soft: 0 6px 24px -8px rgba(31, 43, 61, 0.15);
  --shadow-card: 0 20px 45px -20px rgba(31, 43, 61, 0.25);
  --shadow-glow: 0 20px 60px -10px rgba(47, 168, 255, 0.45);
  --shadow-cta: 0 14px 30px -10px rgba(255, 165, 30, 0.55);

  /* Typography & Layout */
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max-width: 1200px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Layout Utilities */
.container-x {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: var(--container-max-width);
}

.section-y {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section-y {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md-grid-cols-2-auto {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .xl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

/* Custom components classes */
.bg-white {
  background-color: var(--background);
  color: var(--foreground);
}

.bg-gray {
  background-color: var(--light-gray);
  color: var(--foreground);
}

.bg-navy {
  background-color: var(--navy);
  color: #fff;
}

.bg-brand-soft {
  background-color: var(--accent);
  color: var(--foreground);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(31, 43, 61, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  height: 2.25rem;
  width: 2.25rem;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.mobile-menu-btn {
  color: #fff;
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background-color: rgba(31, 43, 61, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: background-color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  color: #fff;
  overflow: hidden;
  background: var(--gradient-hero);
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-tag-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background-color: var(--cta);
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.text-gradient-brand {
  background: linear-gradient(135deg, #2FA8FF 0%, #FFA51E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 32rem;
}

.hero-rating {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.avatar-stack {
  display: flex;
}

.avatar-stack-item {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 2px solid var(--navy);
  margin-right: -0.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--cta);
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5));
}

.hero-glow-1 {
  position: absolute;
  top: -8rem;
  left: -8rem;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  background-color: rgba(47, 168, 255, 0.25);
  filter: blur(64px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -8rem;
  right: -8rem;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  background-color: rgba(255, 165, 30, 0.25);
  filter: blur(64px);
  pointer-events: none;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  color: #fff;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-actions {
  margin-top: 2rem;
}

/* Section Header */
.section-header {
  max-width: 40rem;
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  background: var(--gradient-cta);
  color: var(--cta-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-cta);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px -12px rgba(255, 165, 30, 0.65);
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  background: var(--gradient-brand);
  color: var(--brand-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* Store Badge Buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  background-color: var(--navy);
  color: #fff;
}

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

.store-btn.light {
  background-color: #1f2b3d;
  color: #fff;
}

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

.store-btn svg,
.store-btn i {
  flex-shrink: 0;
}

.store-btn-text {
  text-align: left;
  line-height: 1.2;
}

.store-btn-subtitle {
  display: block;
  font-size: 0.625rem;
  opacity: 0.7;
}

.store-btn-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Cards */
.card-soft {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(31, 43, 61, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-soft:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(31, 43, 61, 0.28);
}

.card-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #fff;
}

.card-icon.brand {
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
}

.card-icon.cta {
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
}

.card-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Business Section Graphics */
.business-graphic {
  position: relative;
}

.glass-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 1rem;
}

.glass-dark.rotate {
  transform: rotate(1deg);
}

.glass-dark img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.business-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 1.25rem;
  width: 14rem;
  display: none;
}

@media (min-width: 768px) {
  .business-floating-card {
    display: block;
  }
}

.floating-card-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.floating-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.25rem;
}

.floating-card-value span {
  font-size: 0.875rem;
  color: var(--brand);
  font-weight: 500;
}

.floating-card-bar-bg {
  margin-top: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.floating-card-bar-fill {
  height: 100%;
  width: 75%;
  background-color: var(--cta);
}

/* Features List Checked */
.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon-wrapper {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background-color: rgba(47, 168, 255, 0.1);
  color: var(--brand);
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.bg-navy .check-icon-wrapper {
  background-color: rgba(47, 168, 255, 0.2);
}

/* App Screenshots Horizontal Scroll */
.screenshots-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.screenshots-carousel::-webkit-scrollbar {
  height: 6px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .screenshots-carousel {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.screenshot-wrapper {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 16rem;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(31, 43, 61, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

@media (min-width: 768px) {
  .screenshot-wrapper {
    width: 18rem;
  }
}

.screenshot-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-wrapper.offset-y {
  transform: translateY(24px);
}

/* Testimonials */
.testimonial-quote {
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand), var(--cta));
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
  box-shadow: 0 6px 24px -8px rgba(31, 43, 61, 0.1);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--brand);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* Download Call to Action Box */
.download-cta-box {
  position: relative;
  border-radius: 36px;
  padding: 2.5rem;
  overflow: hidden;
  background: var(--gradient-hero);
}

@media (min-width: 768px) {
  .download-cta-box {
    padding: 3.5rem;
  }
}

.download-cta-box-container {
  position: relative;
  z-index: 10;
}

.qr-code-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 1.25rem;
  text-align: center;
  display: inline-block;
}

.qr-code-box {
  height: 10rem;
  width: 10rem;
  border-radius: 1rem;
  background-color: #fff;
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-left: auto;
  margin-right: auto;
}

.qr-code-label {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* Forms styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-group-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background-color: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.success-message {
  color: var(--brand);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Legal prose text */
.legal-content {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

/* Pricing plan cards specific */
.pricing-card.featured {
  position: relative;
  outline: 2px solid var(--brand);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-cta);
}

.pricing-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* Footer Section */
footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 5rem;
  padding-bottom: 2rem;
  /* margin-top: 6rem; */
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-logo img {
  height: 2.5rem;
  width: 2.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.social-btn:hover {
  background-color: var(--brand);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-item svg {
  color: var(--brand);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Animations */
@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.animate-float {
  animation: float-y 6s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

/* Carousel controls styling */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: rgba(31, 43, 61, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .carousel-btn {
    display: flex;
  }
}

.carousel-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: -1.5rem;
}

.carousel-btn.next {
  right: -1.5rem;
}

.screenshots-carousel {
  scroll-behavior: smooth;
}