@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --color-primary: #003B57;
  --color-primary-dark: #002234;
  --color-primary-light: #005278;
  --color-teal: #00C2C7;
  --color-mint: #72F2C0;
  --color-orange: #FF8A1F;
  --color-bg-light: #F7FAFC;
  --color-white: #FFFFFF;
  
  /* Background gradients */
  --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --grad-accent: linear-gradient(135deg, var(--color-teal) 0%, var(--color-mint) 100%);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Theme elements */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-teal: 0 8px 24px rgba(0, 194, 199, 0.25);
  --shadow-mint: 0 8px 24px rgba(114, 242, 192, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Glowing decorative background elements */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 199, 0.15) 0%, rgba(0, 194, 199, 0) 70%);
  filter: blur(80px);
}

.bg-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 242, 192, 0.15) 0%, rgba(114, 242, 192, 0) 70%);
  filter: blur(80px);
}

/* Header styling */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 34, 52, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.app-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.header-text {
  display: flex;
  flex-direction: column;
}

.app-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.app-subtitle {
  font-size: 0.75rem;
  color: var(--color-mint);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Nav links */
.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: var(--transition);
}

.header-nav a:hover {
  color: var(--color-white);
}

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

.header-nav a.active-link {
  color: var(--color-teal);
  font-weight: 600;
}

.header-nav a.active-link::after {
  width: 100%;
  background-color: var(--color-mint);
}

/* Menu Toggle for Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  color: var(--color-mint);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-mint);
  box-shadow: 0 0 10px var(--color-mint);
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.hero-title span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 580px;
}

/* App Download Badges */
.download-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-headings);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.badge-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.badge-btn:hover::before {
  left: 100%;
}

.badge-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.badge-btn.primary-btn {
  background: var(--grad-accent);
  border: none;
  color: var(--color-primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-teal);
}

.badge-btn.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 194, 199, 0.4);
}

.badge-btn.primary-btn svg path {
  fill: var(--color-primary-dark);
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.badge-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.badge-btn.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

.badge-btn.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

.coming-soon-label {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 0.55rem;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Smartphone Mockup Container */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.smartphone {
  width: 280px;
  height: 570px;
  background: #001f30;
  border: 10px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05), var(--shadow-teal);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(10deg);
}

.mockup-container:hover .smartphone {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), var(--shadow-teal), 0 0 30px var(--color-mint);
}

/* Speaker notch */
.smartphone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 20px;
  background: #1e293b;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 100;
}

/* Home indicator line */
.smartphone::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 100;
}

/* App Screen Content Mockup */
.app-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  background-color: #001a27;
  user-select: none;
}

.app-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.app-screen-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-screen-title img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

/* Balance Card inside Screen */
.screen-balance-card {
  background: linear-gradient(135deg, #00C2C7 0%, #008f94 100%);
  border-radius: 16px;
  padding: 1rem;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 16px rgba(0, 194, 199, 0.2);
  margin-bottom: 1rem;
}

.screen-balance-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  font-weight: 600;
}

.screen-balance-value {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.1rem 0;
  letter-spacing: -0.01em;
}

.screen-balance-sub {
  font-size: 0.65rem;
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.4rem;
}

/* Monthly Limit progress */
.screen-limit-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-limit-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}

.screen-limit-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.screen-limit-progress {
  height: 100%;
  width: 62%;
  background: var(--color-mint);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--color-mint);
}

/* Transactions List */
.screen-transactions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  overflow: hidden;
}

.screen-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.screen-txn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.screen-txn-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.screen-txn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 194, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 0.8rem;
}

.screen-txn-icon.orange {
  background: rgba(255, 138, 31, 0.1);
  color: var(--color-orange);
}

.screen-txn-icon.mint {
  background: rgba(114, 242, 192, 0.1);
  color: var(--color-mint);
}

.screen-txn-details {
  display: flex;
  flex-direction: column;
}

.screen-txn-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
}

.screen-txn-cat {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.screen-txn-amount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b6b;
}

.screen-txn-amount.income {
  color: var(--color-mint);
}

/* Quick Add Button inside phone Mockup */
.screen-add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  bottom: 25px;
  right: 20px;
  box-shadow: var(--shadow-mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 242, 192, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(114, 242, 192, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(114, 242, 192, 0);
  }
}

/* Features Grid Section */
.features-section {
  background-color: rgba(0, 34, 52, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-label {
  color: var(--color-teal);
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-teal);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 194, 199, 0.1);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(0, 194, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--grad-accent);
  color: var(--color-primary-dark);
  transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper svg path {
  stroke: var(--color-primary-dark);
}

.feature-card-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 6rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 194, 199, 0.3);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-teal);
  transition: var(--transition);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--color-mint);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

/* Call to Action Banner */
.cta-banner {
  max-width: 1200px;
  margin: 2rem auto 6rem;
  padding: 0 1.5rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 59, 87, 0.95) 0%, rgba(0, 34, 52, 0.95) 100%);
  border: 1px solid rgba(0, 194, 199, 0.2);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(114, 242, 192, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.6;
}

/* Legal Pages Layout (Two-Column with Sticky Sidebar) */
.legal-page-container {
  max-width: 1200px;
  margin: 3rem auto 6rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(0, 34, 52, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sidebar-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-mint);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.3;
}

.sidebar-link:hover {
  color: var(--color-teal);
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 1rem;
}

.sidebar-link.active {
  color: var(--color-primary-dark);
  background: var(--grad-accent);
  font-weight: 600;
}

/* Glassmorphism Content Box */
.glass-content-container {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-xl);
  color: #1e293b;
}

.glass-content-container h1 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.glass-content-container .effective-date {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-content-container .effective-date::before {
  content: '📅';
}

.glass-content-container p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.5rem;
}

.glass-content-container h2 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.glass-content-container ul, .glass-content-container ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.glass-content-container li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0.75rem;
}

.glass-content-container li strong {
  color: var(--color-primary);
}

.glass-content-container a {
  color: #008f94;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px dashed rgba(0, 143, 148, 0.4);
}

.glass-content-container a:hover {
  color: var(--color-teal);
  border-bottom-style: solid;
}

.glass-content-container .email-contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.glass-content-container .email-icon {
  font-size: 2rem;
}

.glass-content-container .email-details h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.glass-content-container .email-details a {
  font-size: 1.05rem;
}

/* Footer Section */
.app-footer {
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 3rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-brand {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-width: 320px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-mint);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-teal);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info a {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--color-mint);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 4rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .download-badges {
    justify-content: center;
  }
  
  .legal-page-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .legal-sidebar {
    position: static;
    width: 100%;
  }
  
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .sidebar-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  .sidebar-link:hover {
    padding-left: 0.6rem;
  }
  
  .glass-content-container {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .header-nav.active {
    display: flex;
  }
  
  .header-nav a {
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .header-nav a::after {
    display: none;
  }
  
  .header-nav a.active-link {
    color: var(--color-mint);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-section, .faq-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-box {
    padding: 3rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .glass-content-container h1 {
    font-size: 1.8rem;
  }
  
  .glass-content-container h2 {
    font-size: 1.25rem;
  }
  
  .badge-btn {
    width: 100%;
    justify-content: center;
  }
}
