@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Core brand */
  --primary:        #6d28d9;
  --primary-light:  #7c3aed;
  --primary-glow:   rgba(109, 40, 217, 0.18);
  --secondary:      #2563eb;
  --secondary-glow: rgba(37, 99, 235, 0.15);

  /* Surfaces */
  --background:              #fafaff;
  --surface:                 #ffffff;
  --surface-raised:          #f5f3ff;
  --surface-container-low:   #f1f0f9;
  --border:                  #e5e3f0;
  --border-subtle:           #f0eef8;

  /* Text */
  --text-primary:   #0d0d1a;
  --text-secondary: #4b5068;
  --text-muted:     #7c82a0;

  /* Misc */
  --radius-sm:  0.5rem;
  --radius-md:  0.875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-pill: 9999px;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Gradient shortcuts */
  --grad-brand: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --grad-brand-soft: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
  background: rgba(250, 250, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 0 var(--border-subtle), 0 4px 24px -4px rgba(109, 40, 217, 0.08);
}
.glass-nav .container { height: 72px; }

.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--grad-brand);
  letter-spacing: -0.02em;
}

.nav-link-custom {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}
.nav-link-custom:hover { color: var(--primary); }
.nav-link-custom.active {
  color: var(--primary);
  font-weight: 600;
}

.support-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}
.support-phone {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-portal {
  background: var(--grad-brand);
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px -2px rgba(109, 40, 217, 0.35);
  border: none;
  letter-spacing: -0.01em;
}
.btn-portal:hover {
  opacity: 0.9;
  color: white;
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 6rem;
  overflow: hidden;
  /* Mesh gradient background */
  background:
    radial-gradient(ellipse 70% 60% at 70% 10%, rgba(109,40,217,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(37,99,235,0.08) 0%, transparent 60%),
    var(--background);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: -10;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.06;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -9;
  background: linear-gradient(180deg, transparent 60%, var(--background) 100%);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  background: rgba(109, 40, 217, 0.08);
  color: var(--primary);
  border: 1px solid rgba(109, 40, 217, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.font-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--grad-brand);
}

.lead-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  font-weight: 400;
}

.btn-call {
  background: var(--grad-brand);
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 8px 24px -4px rgba(109, 40, 217, 0.35);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(109, 40, 217, 0.45);
  color: white;
}

.btn-view {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.btn-view:hover { background: var(--surface-raised); border-color: #c4b5fd; color: var(--primary); }

.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.18) 0%, rgba(37,99,235,0.12) 50%, transparent 75%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.7; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}
.hero-visual-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 64px -12px rgba(0,0,0,0.22), 0 0 0 1px rgba(109,40,217,0.08);
  width: 100%;
}
.hero-stats-panel {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 24px -4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109,40,217,0.12), rgba(37,99,235,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle .material-symbols-outlined { color: var(--primary); font-size: 1.25rem; }

.bg-surface-low { background-color: var(--surface-container-low); }
.py-xl { padding-top: 5.5rem; padding-bottom: 5.5rem; }

.font-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  /* No color here — inherits from context (dark or light section) */
}

/* Section label pill — sits above h2 like Strapi */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  background: rgba(109,40,217,0.07);
  border: 1px solid rgba(109,40,217,0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 2px 8px -2px rgba(109,40,217,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(109,40,217,0.14);
  border-color: #c4b5fd;
}
.service-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--grad-brand-soft);
  border: 1px solid rgba(109,40,217,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s, transform 0.25s;
  color: var(--primary);
}
.service-card:hover .icon-box {
  background: var(--grad-brand);
  color: white;
  transform: scale(1.08) rotate(-4deg);
  border-color: transparent;
}
.service-card .icon-box .material-symbols-outlined { font-size: 1.5rem; }
.font-h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.img-stack img {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}
.h-64 { height: 16rem; }
.h-48 { height: 12rem; }
.pt-12 { padding-top: 3rem; }

.feature-row { display: flex; gap: 1.25rem; margin-bottom: 1.375rem; }
.feature-icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: var(--radius-sm);
  background: var(--grad-brand-soft);
  border: 1px solid rgba(109,40,217,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon .material-symbols-outlined { color: var(--primary); font-size: 1.25rem; }

.bg-secondary-container {
  background: linear-gradient(135deg, #1e1b4b 0%, #1d4ed8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.bg-secondary-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139,92,246,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(37,99,235,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.bg-secondary-container-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.06; pointer-events: none;
}
.step-circle {
  width: 5rem;
  height: 5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.375rem;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.step-circle:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.step-circle .material-symbols-outlined { font-size: 2.25rem; }
.step-badge {
  position: absolute;
  top: -0.5rem; right: -0.5rem;
  width: 1.75rem; height: 1.75rem;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  box-shadow: 0 4px 10px -2px rgba(109,40,217,0.4);
}
/* All text inside dark sections inherits white */
.bg-secondary-container .font-h2,
.bg-secondary-container .step-title,
.bg-secondary-container .font-h3,
.bg-secondary-container p,
.bg-secondary-container .lead {
  color: inherit;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: white; /* always used inside dark section */
}
.text-opacity { color: rgba(255,255,255,0.78); font-size: 0.9375rem; line-height: 1.65; }

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 4px 20px -4px rgba(109,40,217,0.07);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(109,40,217,0.13);
  border-color: #c4b5fd;
}
.star-rating { color: #f59e0b; margin-bottom: 0.875rem; letter-spacing: 0.05em; }
.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.customer-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; overflow: hidden; background: var(--surface-raised); }
.customer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.footer-cta {
  background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 50%, #2563eb 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
.footer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139,92,246,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  mix-blend-mode: overlay;
}
.footer-phone {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.footer-phone:hover { transform: scale(1.04); color: white; }
.availability-badge {
  padding: 0.4rem 1.25rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer { background: #0d0d1a; border-top: 1px solid rgba(255,255,255,0.07); padding: 4rem 0 2rem; }
.footer-heading { font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; font-size: 11px; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer-link { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-link:hover { color: rgba(255,255,255,0.85); }
.disclaimer-text { color: rgba(255,255,255,0.25); font-size: 12px; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }

/* Mobile Navigation */
.mobile-top-bar {
    display: none;
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--on-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    body {
        padding-top: 120px !important;
    }
    
    .mobile-top-bar {
        display: flex;
        background-image: linear-gradient(to right, #7c3aed, #3b82f6);
        color: #ffffff;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.95rem;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        width: 100%;
        z-index: 1021;
        font-family: 'Inter', sans-serif;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-top-bar:hover {
        background-image: linear-gradient(to right, #6d28d9, #2563eb);
        color: #ffffff;
    }

    .nav-links-container {
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.2);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: 1020;
    }
    
    .nav-links-container.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Force mobile navbar components on tablet views */
    .hamburger-btn {
        display: flex !important;
    }

    .glass-nav .flex-column.align-items-end {
        display: none !important;
    }
}

/* Floating Contact Button */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--grad-brand);
  color: white;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px -4px rgba(109, 40, 217, 0.45);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}
.floating-call-btn:hover { transform: scale(1.05); color: white; }
.floating-call-btn .material-symbols-outlined { font-size: 1.25rem; }

/* ===== Responsive Breakpoints ===== */

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  .py-xl { padding-top: 4rem; padding-bottom: 4rem; }

  /* Hero */
  .hero-section { padding-top: 5rem; padding-bottom: 4rem; text-align: center; }
  .hero-section .lead-text { margin-left: auto; margin-right: auto; }
  .hero-section .d-flex.gap-3 { justify-content: center; }
  .hero-visual { margin-top: 2.5rem; }
  .hero-stats-panel { position: static; margin-top: 1rem; border-radius: var(--radius-md); }

  /* Services grid */
  #services .service-card { padding: 1.5rem; }

  /* Account recovery */
  #account-recovery .row.g-5 > div:last-child { margin-top: 1.5rem; }

  /* Windows activation steps */
  #windows-activation .col-md-4 { text-align: center; }

  /* Footer CTA */
  .footer-cta { padding: 4rem 0; }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  body { padding-top: 120px; }
  .py-xl { padding-top: 3rem; padding-bottom: 3rem; }

  /* Hero */
  .hero-section { padding-top: 3rem; padding-bottom: 3rem; }
  .btn-call, .btn-view { width: 100%; justify-content: center; }

  /* Section label */
  .section-label { font-size: 10px; }

  /* Service cards — single column */
  #services .row.g-4 > .col-lg-4 { flex: 0 0 100%; max-width: 100%; }

  /* Account recovery mini-cards — 2 per row always */
  #account-recovery .col-6 { flex: 0 0 50%; max-width: 50%; }
  #account-recovery .col-12.col-sm-6 { flex: 0 0 100%; max-width: 100%; }
  .recovery-mini-card { padding: 1.25rem 0.75rem; }
  .recovery-mini-card .brand-icon { font-size: 2rem; }

  /* Windows activation — stack vertically */
  #windows-activation .col-md-4 { margin-bottom: 1.5rem; }

  /* FAQ */
  #faq .faq-q { font-size: 0.9375rem; padding: 1rem 1.25rem; }

  /* Footer */
  .footer-phone { font-size: 1.75rem; }
  .floating-call-btn { bottom: 1rem; left: 1rem; padding: 0.625rem 1.125rem; font-size: 0.8125rem; }
  .floating-call-btn span:last-child { display: none; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }

  /* Hero stats panel on mobile */
  .hero-stats-panel { padding: 0.875rem 1rem; }
  .hero-stats-panel .fw-bold { font-size: 0.875rem; }
}


/* ===== FAQ Accordion ===== */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 8px 20px -4px rgba(99, 14, 212, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background-color 0.2s, color 0.2s;
}
.faq-q:hover { background-color: #f5f3ff; color: var(--primary); }
.faq-q.open  { background-color: #f5f3ff; color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-a p { margin: 0; }
.faq-a.open {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}

/* ===== Color alias for inline styles ===== */
:root { --color-primary: #630ed4; }

/* ===== Section Transition Dividers ===== */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 999px;
  margin: 0 auto 1.5rem;
}

/* ===== Services Section Enhancements ===== */
#services .service-card {
  padding: 2rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e8e4f8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
#services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -8px rgba(99, 14, 212, 0.14);
  border-color: #c4b5fd;
}
#services .service-card .icon-box {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  color: var(--primary);
  border: 1px solid #ede9fe;
  transition: background 0.3s, transform 0.3s;
}
#services .service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  transform: scale(1.08) rotate(-4deg);
  border-color: transparent;
}
#services .service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}
#services .service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
  flex-grow: 1;
}

/* ===== Account Recovery Section ===== */
#account-recovery .recovery-mini-card {
  background: #fff;
  border: 1px solid #e8e4f8;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
#account-recovery .recovery-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(99, 14, 212, 0.12);
  border-color: #c4b5fd;
}

/* Brand icon base */
#account-recovery .brand-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.6rem;
  transition: transform 0.3s, color 0.3s;
  color: #94a3b8;
}
#account-recovery .recovery-mini-card:hover .brand-icon {
  transform: scale(1.18);
}

/* Per-brand hover colors */
#account-recovery .recovery-mini-card[data-brand="instagram"]:hover .brand-icon {
  color: #e1306c;
}
#account-recovery .recovery-mini-card[data-brand="facebook"]:hover .brand-icon {
  color: #1877f2;
}
#account-recovery .recovery-mini-card[data-brand="whatsapp"]:hover .brand-icon {
  color: #25d366;
}
#account-recovery .recovery-mini-card[data-brand="twitter"]:hover .brand-icon {
  color: #000000;
}
#account-recovery .recovery-mini-card[data-brand="snapchat"]:hover .brand-icon {
  color: #fffc00;
}
#account-recovery .recovery-mini-card .card-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1e293b;
  letter-spacing: 0.01em;
}
#account-recovery .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}
#account-recovery .text-secondary {
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ===== Windows Activation Section enhancements ===== */
#windows-activation .step-circle {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.3s, transform 0.3s;
}
#windows-activation .step-circle:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

/* ===== FAQ Section polish ===== */
#faq .faq-item {
  border-radius: 1rem;
  border: 1px solid #e8e4f8;
  background: #fff;
  box-shadow: 0 2px 8px rgba(99,14,212,0.04);
  transition: box-shadow 0.3s, border-color 0.3s;
}
#faq .faq-item:hover {
  box-shadow: 0 8px 24px -4px rgba(99,14,212,0.10);
  border-color: #c4b5fd;
}
#faq .faq-q {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #0f172a;
  padding: 1.35rem 1.5rem;
}
#faq .faq-q:hover { color: var(--primary); }
#faq .faq-q.open  { color: var(--primary); }
#faq .faq-a p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.75;
}
#faq .faq-icon {
  color: var(--primary);
}

/* ===== Responsive nav — tighten gap at medium screens ===== */
@media (min-width: 1024px) and (max-width: 1280px) {
  .nav-links-container { gap: 1rem; }
  .nav-link-custom { font-size: 0.875rem; }
}
