/*
Theme Name: LifeCircle Custom Premium Theme
Theme URI: https://www.lifecircle.ai/
Author: Google Deepmind Antigravity Team
Description: A premium, modern WordPress custom theme structure created in 2026 for the LifeCircle location sharing platform.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifecircle-theme
*/


@import url('variables.css');
@import url('animations.css');

h1 {
  font-family: var(--font-lato);
  font-weight: 700;
}

p {
  font-family: var(--font-roboto);
  font-weight: 400;
}

.small-text {
  font-family: var(--font-roboto);
  font-weight: 300;
}

.hero {
  font-family: var(--font-roboto);
  font-weight: 800;
}




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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  overflow-x: clip; /* Modern clip prevents horizontal scrollbars without breaking position: sticky */
}

/* Custom Selection & Scrollbar */
::selection {
  background-color: rgba(109, 93, 246, 0.2);
  color: var(--primary);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 5px;
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

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

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

/* Global Layout & Container Wrapper */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: 8rem 0;
  position: relative;
  overflow: clip; /* Modern overflow clip prevents layout breaks while keeping sticky behaviors operational */
}

/* Glass Card Base Style */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}

.card-glass:hover {
  background: var(--glass-bg);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);

}

/* Sticky Header Navigation styling */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-normal);
   background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.header-nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-main);
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--border-light);
  transform: translateY(-1px);
}

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

/* Mobile Nav Drawer overlay style */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: var(--transition-normal);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-drawer .nav-link {
  font-size: 1.5rem;
}

/* Hero Section */
/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  /* background: radial-gradient(circle at 80% 20%, rgba(109, 93, 246, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 10% 80%, rgba(0, 184, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%); */
}

/* ===========================
   Hero Background Video
=========================== */

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  z-index: -3;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

/* Dark overlay for text readability */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(6, 10, 20, 0.55),
      rgba(6, 10, 20, 0.35),
      rgba(6, 10, 20, 0.60)
  );
  opacity: 0.1;
  z-index: -2;
}

.mt-5 {
  margin-top: 50px;
}
.hero-mesh-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: url("http://localhost/lifecircle/wp-content/uploads/2026/07/Background.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;

}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;

}

.mesh-1 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  top: -10%;
  right: 5%;
}

.mesh-2 {
  width: 400px;
  height: 400px;
  background: rgba(96, 76, 245, 0.6);
  bottom: 10%;
  left: 5%;
}

.hero-container {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  /* background: rgba(109, 93, 246, 0.1); */
  color: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  /* border: 1px solid rgba(109, 93, 246, 0.2); */
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.hero-title {
  font-size: 4rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.phone-mockup-container {
  width: 320px;
  height: 640px;
  background: #0b0f19;
  border: 12px solid #1f2937;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1f2937;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

/* Floating Mockup UI components */
.floating-ui-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 20;
}

.ui-avatar-card {
  top: 15%;
  left: -20%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-ui-element 6s infinite ease-in-out;
}

.ui-speed-card {
  bottom: 25%;
  right: -15%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-ui-element 8s infinite ease-in-out 1s;
}

.ui-sos-card {
  bottom: 5%;
  left: -15%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-ui-element 7s infinite ease-in-out 2s;
  border-left: 4px solid var(--danger);
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
}

/* Trusted By Section */
.trusted-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trusted-title {
  text-align: center;
  font-size: ;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.trusted-logo-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.trusted-logo-container::before,
.trusted-logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-logo-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.trusted-logo-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
}

.logo-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Feature Highlights Grid */
.features-section {
  background: var(--bg-primary);
}

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

.section-tag {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.feature-card:hover .icon-box {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

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

.feature-card  p{
  margin: 0;

}

/* Split-Screen Sticky Phone Animation section */
.live-tracking-section {
  background: var(--bg-tertiary);
  padding: 0;
}

.split-scroll-container {
  display: flex;
  position: relative;
  width: 100%;
}

.split-scroll-left {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.split-scroll-right {
  width: 50%;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
}

.scroll-step-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
}

.scroll-step-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.scroll-step-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Map Screen Mockup Inner styling */
.phone-map-screen {
  background: #e5e9f0;
  width: 100%;
  height: 100%;
  position: relative;
}

.phone-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-avatar-marker {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-avatar-marker::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse-ring 2s infinite;
}

/* Live Map Dashboard Demo */
.map-demo-section {
  background: var(--bg-primary);
}

.interactive-map-showcase {
  display: grid;
  grid-template-columns: 350px 1fr;
  height: 600px;
  gap: 1.5rem;
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  padding-top: 20px;
}

.member-item {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.member-item.active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.03);
}

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

.member-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.member-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.battery-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.battery-high {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.battery-low {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  animation: pulse-dot 1s infinite alternate;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  box-shadow: var(--shadow-md);
}

.map-bg-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(100, 116, 139, 0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Beautiful Animated Connectors Timeline */
.timeline-section {
  background: var(--bg-secondary);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--border-light);
  z-index: 1;
}

.timeline-step {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
  width: 100%;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content-wrapper {
  width: 45%;
}

.timeline-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-card {
  padding: 2rem;
  background: #FFFFFF;
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Section Styling with Featured Glow */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #FFFFFF;
}

.pricing-card.platinum-featured {
  border: none;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-tertiary) 100%);
  transform: scale(1.05);
  box-shadow: var(--shadow-premium);
  z-index: 5;
}

.pricing-card.platinum-featured::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 400%;
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  animation: border-glow 12s linear infinite;
  opacity: 0.8;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #FFFFFF;
  padding: 0.4rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(109, 93, 246, 0.3);
  animation: float-badge 2s infinite ease-in-out;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-val {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-headings);
  letter-spacing: -0.02em;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 0.4rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
  flex-shrink: 0;
}

.pricing-features-list li.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features-list li.disabled svg {
  fill: var(--text-muted);
}

/* Accordion FAQs styling */
.faq-section {
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.faq h1 {
    font-size: 3.25rem;
    margin: 1.25rem 0 1.25rem;
    max-width: 780px;
    line-height: 1.1;
}

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

.faq-item {
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: #FFFFFF;
}

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

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

.faq-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  color: var(--primary);
}

.faq-item[open] .faq-icon-box {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* App Download CTA Banner */
.download-section {
  background: var(--bg-primary);
}

.download-banner {
  /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(109, 93, 246, 0.05) 100%); */
  /* border: 1px solid rgba(109, 93, 246, 0.1); */
  padding: 5rem;
  text-align: center;
  position: relative;
   background:
        radial-gradient(circle at top left,
            rgba(88, 166, 255, 0.12),
            transparent 45%),
        radial-gradient(circle at bottom right,
            rgba(145, 94, 255, 0.10),
            transparent 45%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f9ff 45%,
            #eef4ff 100%
        );

    border: 1px solid rgba(115, 143, 255, .15);
    box-shadow:
        0 20px 60px rgba(26,35,80,.08),
        inset 0 1px 0 rgba(255,255,255,.7);
}

.download-banner h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.download-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2rem;
  background: var(--text-main);
  color: #FFFFFF;
  border-radius: 16px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
}

.app-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-btn-small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.app-btn-large {
  font-size: 1.05rem;
}

/* Footer layout */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-column h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Inner Page (Sub-page) Containers overlay style */
.inner-page-view {
  display: none; /* Controlled by router */
  padding-top: 10rem;
  background: var(--bg-primary);
  min-height: 100vh;
}

.inner-page-view.active {
  display: block;
}

.inner-hero {
  text-align: left;
  /* max-width: 800px; */
  margin: 0 auto 5rem auto;
}

.inner-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.inner-body {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 8rem;
  line-height: 1.8;
  color: var(--text-main);
}

.inner-body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.inner-body p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Toast Notifications styling */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dynamic-toast {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 4px solid var(--primary);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  max-width: 380px;
  animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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



.terms-section{
    padding:70px 20px;
}

.terms-container{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tag{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}



.intro{
    font-size:17px;
    color:#666;
    margin-bottom:45px;
}

.term-block{
    margin-bottom:40px;
    padding-bottom:30px;
    border-bottom:1px solid #ececec;
}

.term-block:last-child{
    border:none;
    margin-bottom:0;
    padding-bottom:0;
}



.updated{
    margin-top:20px;
    color:#888;
    font-style:italic;
}

@media (max-width:768px){

    .terms-container{
        padding:30px 25px;
    }

    

}

#intro-features .feature-card:hover {
  background-color: var(--primary);
}

#intro-features .feature-card:hover .icon-box {
  background-color: var(--white);
  color: var(--primary);
}

#intro-features .feature-card:hover h3 {
  color: var(--white);
}

#intro-features .feature-card:hover p {
  color: var(--border-light);
}

#about-features .feature-card:hover {
  background-color: var(--primary);
}

#about-features .feature-card:hover .icon-box {
  background-color: var(--white);
  color: var(--primary);
}

#about-features .feature-card:hover h3 {
  color: var(--white);
}

#about-features .feature-card:hover p {
  color: var(--border-light);
}


#why-choose-us .value-badge-row div {
  text-align: start;
}
.term-section {padding-bottom: 0;}
.term-section .container {text-align: center;
justify-content: center;}

.page-hero-desc {
  margin-top: 10px;
}

.page-hero-meta {
  text-align: center;
  justify-content: center;
}

.trusted-section .logo-item:hover svg , .trusted-section .logo-item:hover {
  color:var(--primary) !important;
}
.trusted-section .section-title {text-align: center;
text-transform: capitalize;
margin-bottom: 40px;}

#privacy-hero {
  padding-bottom: 0;
}

#privacy-hero .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#privacy-hero .container .hero-badge {
  display: flex;
  justify-content: center;
}

#privacy-hero .container h1 {
  display: flex;
  justify-content: center;
  width: 100% !important;
}

#privacy-hero .page-hero-desc {
  text-align: center;
}