/* ==========================================
   SecureLifeHub - Static Landing Page Styles
   ========================================== */

/* CSS Variables */
:root {
  --background: #020909;
  --foreground: #ffffff;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #22c55e;
  --primary-foreground: #ffffff;
  --secondary: #0a2f2f;
  --muted: #f1f5f9;
  --muted-foreground: #6b7280;
  --border: #1e293b;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Utilities */
.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

/* ==========================================
   Alert Bar
   ========================================== */
.alert-bar {
  background-color: #000000;
  padding: 0.625rem 1rem;
}

.alert-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.alert-icon {
  width: 1rem;
  height: 1rem;
  color: #eab308;
  flex-shrink: 0;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(2, 9, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5.5rem;
  }
}

/* Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-glow {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(34, 197, 94, 0.3);
  filter: blur(20px);
  border-radius: 50%;
  left: 0;
}

.logo-image {
  position: relative;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.4));
}

@media (min-width: 640px) {
  .logo-image {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .logo-name {
    font-size: 1.5rem;
  }
}

.logo-tagline {
  font-size: 0.625rem;
  color: #9ca3af;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (min-width: 640px) {
  .logo-tagline {
    font-size: 0.6875rem;
  }
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
  padding: 0 2rem;
}

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

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--foreground);
}

/* Header CTA */
.header-cta {
  display: none;
  border-radius: 9999px;
  padding: 0.625rem 1.75rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

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

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--foreground);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background-color: rgba(34, 197, 94, 0.9);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;

  min-height: auto;
  padding: 1.2rem 0 1.5rem;

  background-image: 
    linear-gradient(
      90deg,
      #020909 35%,
      rgba(2,9,9,0.95) 55%,
      rgba(2,9,9,0.6) 75%,
      rgba(2,9,9,0.2) 100%
    ),
    url('./assets/hacker.jpg');

  background-size: 50%;       /* 🔥 تكبير */
  background-position: 45% 0%; /* 🔥 تحريك */
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .hero {
    padding: 2rem 0 2.5rem;
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4.5rem;
  }
}

/* Hero Left */
.hero-left {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: fit-content;
}

.badge-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Headline */
.hero-headline {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

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

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

/* Subheadline */
.hero-subheadline {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Benefits List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

/* Hero CTA */
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guarantee-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.check-small {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* Hero Right - Pricing Card */
.hero-right {
  flex-shrink: 0;
}

.pricing-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pricing-card {
    padding: 2rem;
    margin: 0;
  }
}

.pricing-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto 1rem;
  display: block;
  width: fit-content;
}

.pricing-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1.125rem;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--card-foreground);
}

.price-period {
  color: #6b7280;
font-weight: 500;
}

.price-billing {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Pricing Benefits */
.pricing-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.check-green {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Security Note */
.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #059669;
font-weight: 500;
}

.lock-icon {
  width: 1rem;
  height: 1rem;
  color: #059669;
}


.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: #22c55e;

  /* 🔥 هذا هو الفرق */
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.9));
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.testimonial-author {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
  background-color: var(--muted);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .features {
    padding: 5rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .feature-item {
    align-items: flex-start;
    text-align: left;
  }
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================
   Trust Section
   ========================================== */
.trust-section {
  background-color: var(--card);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .trust-section {
    padding: 4rem 0;
  }
}

.trust-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .trust-logos {
    gap: 4rem;
  }
}

.trust-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .trust-logo {
    font-size: 1.5rem;
  }
}

.trust-logo:hover {
  color: var(--card-foreground);
}

.logo-arrow {
  color: var(--primary);
  margin-left: 0.125rem;
  font-size: 0.75rem;
}

.trust-logo.pcmag {
  color: #d32f2f;
}

.trust-logo.forbes {
  font-family: Georgia, serif;
}

.trust-logo.tomsguide {
  color: #d32f2f;
  font-style: italic;
}

.cybernews-icon {
  margin-right: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ==========================================
   Affiliate Section
   ========================================== */
.affiliate-section {
  background-color: var(--muted);
  padding: 1.5rem 0;
}

.affiliate-box {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .affiliate-box {
    align-items: center;
  }
}

.gift-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .gift-icon {
    margin-top: 0;
  }
}

.affiliate-box p {
  color: var(--card-foreground);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background-color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--card-foreground);
}


.hero-content {
  margin-top: -15px;
}


@media (max-width: 768px) {
  .hero {
    padding: 1rem 0;
  }

  .hero-content {
    margin-top: -20px;
  }
}



.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}



@media (max-width: 768px) {
  

  .hero-left {
    max-width: 100%;
  }
}



.testimonial-card {
  position: relative;

  background-color: rgba(10, 25, 25, 0.8);
  backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  max-width: 340px;

  margin-top: 25px;
}






#privacy {
  border-top: 1px solid #e5e7eb;
}

#privacy h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

#privacy h3 {
  margin-top: 20px;
  font-size: 18px;
}

#privacy p {
  color: #374151;
  margin-top: 5px;
  line-height: 1.6;
}


@media (max-width: 768px) {

  .testimonial-card {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin-top: 20px;
    margin-bottom: 20px;

    padding: 16px;

    z-index: 1;
  }

  .header {
    z-index: 50;
  }

}



@media (min-width: 1024px) {

  .hero-left {
    position: relative;
  }

  .testimonial-card {
    position: absolute;

    bottom: 120px;
    left: 560px;

    width: 320px;
  }

}

@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 10px 0;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
  }

  .logo-image {
    width: 32px;
    height: 32px;
  }

  .logo-name {
    font-size: 15px;
    line-height: 1.2;
  }

  .logo-tagline {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

}