/* Styles for specific page components */

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(9, 11, 28, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(9, 11, 28, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  color: #FFFFFF !important;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(9, 11, 28, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 8rem;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
}

/* Background Blobs */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  opacity: 0.45;
}

.pulse-blob-1 {
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--primary) 0%, rgba(45, 49, 250, 0) 70%);
}

.pulse-blob-2 {
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(93, 139, 244, 0) 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 49, 250, 0.15);
  border: 1px solid rgba(45, 49, 250, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-label i {
  color: var(--warning);
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-premium), 0 0 0 4px #222;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 32px;
  overflow: hidden;
  color: var(--text-dark);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* Simulated App styles inside phone mockup */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.app-greeting {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.app-username {
  font-weight: 700;
  font-size: 0.85rem;
}

.app-bell {
  font-size: 1.2rem;
  color: #4E5E73;
}

.app-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.app-card-title {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-card-amount {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0.25rem 0 0.75rem 0;
}

.app-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.app-card-sub {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
}

.app-card-subval {
  font-size: 0.85rem;
  font-weight: 600;
}

.app-card-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.app-list-title {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.app-mock-item {
  display: flex;
  align-items: center;
  background: #FFF;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}

.app-mock-icon {
  width: 36px;
  height: 36px;
  background: rgba(45, 49, 250, 0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.app-mock-icon.home-icon {
  background: rgba(93, 139, 244, 0.08);
  color: var(--secondary);
}

.app-mock-info {
  flex: 1;
  margin-left: 0.75rem;
}

.app-mock-name {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
}

.app-mock-taksit {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.app-mock-price {
  font-weight: 800;
  font-size: 0.85rem;
}

/* Features Section */
.features {
  background: var(--bg-light);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -2rem auto 4rem auto;
}

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

.feature-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(45, 49, 250, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem auto;
  box-shadow: 0 8px 20px rgba(45, 49, 250, 0.05);
}

.feature-icon.alarm-icon {
  background: rgba(0, 200, 83, 0.08);
  color: var(--accent);
}

.feature-icon.secure-icon {
  background: rgba(255, 171, 0, 0.08);
  color: var(--warning);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments for Hero & Features */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

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

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

/* How It Works Section */
.how-it-works {
  background: var(--bg-dark-accent);
  color: var(--text-light);
}

.how-it-works h2 {
  color: var(--text-light);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
  margin-top: 5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(45, 49, 250, 0.2);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(45, 49, 250, 0.3);
  border: 4px solid var(--bg-dark-accent);
}

.step-icon {
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

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

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

/* Categories Section */
.categories {
  background: #FFFFFF;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.category-item {
  background: var(--bg-light);
  border: 1px solid rgba(45, 49, 250, 0.03);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover {
  background: #FFFFFF;
  border-color: rgba(45, 49, 250, 0.15);
  box-shadow: var(--shadow-md);
}

.category-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
}

.category-item span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Curated Category Backgrounds */
.bg-elektronik { background-color: rgba(45, 49, 250, 0.1); color: var(--primary); }
.bg-ev         { background-color: rgba(255, 171, 0, 0.1); color: var(--warning); }
.bg-giyim      { background-color: rgba(156, 39, 176, 0.1); color: #9C27B0; }
.bg-saglik     { background-color: rgba(244, 67, 54, 0.1); color: #F44336; }
.bg-kart       { background-color: rgba(0, 150, 136, 0.1); color: #009688; }
.bg-egitim     { background-color: rgba(63, 81, 181, 0.1); color: #3F51B5; }
.bg-tatil      { background-color: rgba(3, 169, 244, 0.1); color: #03A9F4; }
.bg-kira       { background-color: rgba(76, 175, 80, 0.1); color: #4CAF50; }

.bg-elektrik   { background-color: rgba(255, 235, 59, 0.15); color: #FBC02D; }
.bg-su         { background-color: rgba(33, 150, 243, 0.1); color: #2196F3; }
.bg-gaz        { background-color: rgba(255, 87, 34, 0.1); color: #FF5722; }
.bg-internet   { background-color: rgba(103, 58, 183, 0.1); color: #673AB7; }
.bg-telefon    { background-color: rgba(96, 125, 139, 0.1); color: #607D8B; }

@media (max-width: 768px) {
  .steps-container {
    gap: 4rem;
  }
}

/* Interactive Demo Section */
.interactive-demo {
  background: var(--bg-light);
}

.demo-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45, 49, 250, 0.04);
}

.demo-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-list-header h3 {
  font-size: 1.5rem;
  color: var(--bg-dark);
}

.btn-add-demo {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Scrollbar for Demo List */
.demo-list::-webkit-scrollbar {
  width: 6px;
}
.demo-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.demo-list::-webkit-scrollbar-thumb {
  background: rgba(45, 49, 250, 0.1);
  border-radius: 10px;
}
.demo-list::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 49, 250, 0.25);
}

/* Demo Installment Cards */
.demo-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover {
  border-color: rgba(45, 49, 250, 0.15);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.demo-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.demo-card-main-info {
  flex: 1;
}

.demo-card-name {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.demo-card-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.demo-card-delete {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.25rem;
}

.demo-card-delete:hover {
  color: #F44336;
}

.demo-card-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.demo-price-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.demo-price-main {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--bg-dark);
}

.demo-price-fraction {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.demo-card-progress {
  width: 100%;
  height: 8px;
  background: #F0F2F5;
  border-radius: 4px;
  overflow: hidden;
}

.demo-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-demo-pay {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-demo-pay:hover {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(45, 49, 250, 0.15);
}

/* Card Finished Styling */
.demo-card-finished {
  opacity: 0.75;
  background: #FAFAFA;
}

.demo-card-finished .demo-progress-bar {
  background: var(--accent);
}

.btn-demo-paid {
  border-color: var(--accent);
  color: var(--accent);
  cursor: not-allowed;
}

/* Empty State */
.demo-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.demo-empty-state i {
  font-size: 3rem;
  color: rgba(45, 49, 250, 0.15);
}

/* Right Column Summary */
.demo-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.demo-summary-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg), 0 10px 20px rgba(45, 49, 250, 0.15);
}

.demo-summary-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-summary-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.demo-summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.demo-footer-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.15rem;
}

.demo-footer-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.demo-active-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.demo-helper-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.demo-helper-box h4 {
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.demo-helper-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-helper-box li {
  font-size: 0.95rem;
  color: #4E5E73;
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.demo-helper-box li::before {
  content: '•';
  color: var(--primary);
  font-size: 1.25rem;
  position: absolute;
  left: 0.25rem;
  top: -0.15rem;
}

/* Modal Overlay Styling */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 15, 43, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.demo-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-modal {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 2.25rem;
  box-shadow: var(--shadow-premium);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.demo-modal-overlay.active .demo-modal {
  transform: translateY(0);
}

.demo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.demo-modal-header h3 {
  font-size: 1.35rem;
  color: var(--bg-dark);
}

.demo-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.demo-modal-close:hover {
  color: var(--text-dark);
}

/* Form Styling */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.demo-form label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.demo-form input, .demo-form select {
  padding: 0.85rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.demo-form input:focus, .demo-form select:focus {
  border-color: var(--primary);
}

.btn-submit-demo {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* Responsive Demo Layout */
@media (max-width: 992px) {
  .demo-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.75rem;
  }
}

/* Stats Section */
.stats {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 5rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

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

.stat-count-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-box p {
  font-size: 1rem;
  font-weight: 700;
  color: #4E5E73;
  margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #FFFFFF;
}

.stars {
  color: #FFC107;
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
}

.comment {
  font-size: 1rem;
  line-height: 1.7;
  color: #4E5E73;
  font-style: italic;
  flex: 1;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.25rem;
}

.user-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--bg-dark);
}

.user-job {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Download CTA Section */
.download-cta {
  background: var(--bg-light);
  padding-bottom: 8rem;
}

.cta-wrapper {
  background: linear-gradient(135deg, #090B21 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.cta-wrapper .blob {
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.btn-glass:hover {
  background: #FFFFFF;
  color: var(--bg-dark);
  border-color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Main Footer */
.main-footer {
  background: #060714;
  color: rgba(255, 255, 255, 0.6);
  padding: 6rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-logo span {
  color: var(--text-light);
}

.footer-grid h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-grid ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-grid ul a:hover {
  color: var(--secondary);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 49, 250, 0.3);
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}




