/* ===== CSS Variables ===== */
:root {
    /* Core Brand Colors */
    --primary: hsl(209, 79%, 44%);
    --primary-light: hsl(209, 79%, 55%);
    --primary-dark: hsl(209, 79%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --accent: hsl(0, 100%, 47%);
    --accent-light: hsl(0, 100%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    /* Backgrounds */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 15%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(210, 30%, 96%);
    --muted-foreground: hsl(220, 10%, 45%);
    
    /* Surface Colors */
    --surface-blue: hsl(209, 79%, 97%);
    
    /* Borders */
    --border: hsl(214, 20%, 90%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(209, 79%, 44%, 0.15);
    --shadow-card: 0 8px 30px -8px hsla(220, 20%, 15%, 0.1);
    --shadow-hover: 0 12px 40px -8px hsla(209, 79%, 44%, 0.25);
    --shadow-accent: 0 8px 30px -8px hsla(0, 100%, 47%, 0.3);
    
    /* Radius */
    --radius: 1rem;
    --radius-lg: 1.5rem;
  }
  
  /* Dark Mode */
  .dark {
    --background: hsl(220, 20%, 8%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(220, 20%, 12%);
    --muted: hsl(217, 32%, 17%);
    --muted-foreground: hsl(215, 20%, 65%);
    --border: hsl(217, 32%, 17%);
    --primary: hsl(209, 79%, 55%);
    --accent: hsl(0, 100%, 55%);
    --surface-blue: hsl(209, 50%, 15%);
  }
  
  /* ===== Base Styles ===== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  /* ===== Container ===== */
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* ===== Glass Effect ===== */
  .glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .dark .glass {
    background: rgba(30, 35, 45, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* ===== Header ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-foreground);
  }
  
  .logo-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .logo-text p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
  }
  
  .nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
    }
  }
  
  .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--foreground);
    opacity: 0.8;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  
  .nav-link:hover {
    color: var(--primary);
    opacity: 1;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
  }
  
  @media (min-width: 768px) {
    .header-actions {
      display: flex;
    }
  }
  
  .btn-theme {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--muted);
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .btn-theme:hover {
    background: var(--border);
  }
  
  .btn-theme .icon-moon {
    display: none;
  }
  
  .dark .btn-theme .icon-sun {
    display: none;
  }
  
  .dark .btn-theme .icon-moon {
    display: block;
  }
  
  .menu-toggle {
    display: flex;
    padding: 0.5rem;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .menu-toggle:hover {
    background: var(--muted);
  }
  
  .menu-toggle .icon-close {
    display: none;
  }
  
  .menu-toggle.active .icon-menu {
    display: none;
  }
  
  .menu-toggle.active .icon-close {
    display: block;
  }
  
  @media (min-width: 768px) {
    .menu-toggle {
      display: none;
    }
  }
  
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
  }
  
  .nav-mobile.active {
    display: flex;
  }
  
  .nav-link-mobile {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
  }
  
  .nav-link-mobile:hover {
    background: var(--muted);
  }
  
  .mobile-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .mobile-actions button {
    flex: 1;
  }
  
  /* ===== Buttons ===== */
  .btn-outline {
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--foreground);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .btn-accent {
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .btn-accent:hover {
    background: var(--accent-light);
    transform: scale(1.02);
  }
  
  .btn-hero-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-accent);
  }
  
  .btn-hero-accent:hover {
    transform: scale(1.05);
  }
  
  .btn-hero-accent svg {
    transition: transform 0.3s;
  }
  
  .btn-hero-accent:hover svg {
    transform: translateX(-4px);
  }
  
  .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--primary-foreground);
  }
  
  /* ===== Badge ===== */
  .badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: hsla(0, 100%, 47%, 0.1);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  /* ===== Text Gradients ===== */
  .text-gradient-primary {
    background: linear-gradient(to left, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .text-gradient-accent {
    background: linear-gradient(to left, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface-blue) 0%, var(--background) 100%);
  }
  
  .hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 10rem);
  }
  
  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .hero-content {
    text-align: center;
    order: 2;
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      text-align: right;
      order: 1;
    }
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4rem;
    }
  }
  
  @media (min-width: 1280px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 1024px) {
    .hero-subtitle {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-buttons {
      justify-content: flex-start;
    }
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .stat-number {
      font-size: 2rem;
    }
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Hero Image */
  .hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    order: 1;
  }
  
  @media (min-width: 1024px) {
    .hero-image-container {
      order: 2;
    }
  }
  
  .hero-image-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(209, 79%, 44%, 0.2), hsla(0, 100%, 47%, 0.2));
    filter: blur(60px);
    animation: pulse 20s ease-in-out infinite;
  }
  
  @media (min-width: 768px) {
    .hero-image-glow {
      width: 400px;
      height: 400px;
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
  .hero-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 28rem;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    animation: float 4s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Floating Cards */
  .floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    z-index: 20;
  }
  
  .dark .floating-card {
    background: rgba(30, 35, 45, 0.8);
  }
  
  .floating-card-1 {
    bottom: 5%;
    left: 0;
    animation: floatCard1 5s ease-in-out infinite;
  }
  
  .floating-card-2 {
    bottom: 20%;
    right: 0;
    animation: floatCard2 4s ease-in-out infinite 1s;
  }
  
  @keyframes floatCard1 {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(-15px) translateX(5px);
    }
  }
  
  @keyframes floatCard2 {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(10px) translateX(-5px);
    }
  }
  
  .floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .floating-card-icon.accent {
    background: hsla(0, 100%, 47%, 0.1);
    color: var(--accent);
  }
  
  .floating-card-icon.primary {
    background: hsla(209, 79%, 44%, 0.1);
    color: var(--primary);
  }
  
  .floating-card-title {
    font-size: 0.875rem;
    font-weight: 700;
  }
  
  .floating-card-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  /* Hero Wave */
  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .hero-wave svg {
    display: block;
    width: 100%;
  }
  
  /* ===== Aurora Glow Effects ===== */
  .aurora-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
  }
  
  .aurora-blue-1 {
    width: 600px;
    height: 600px;
    background: hsla(209, 79%, 44%, 0.3);
    top: -10%;
    right: -10%;
    animation: aurora1 15s ease-in-out infinite;
  }
  
  .aurora-red-1 {
    width: 500px;
    height: 500px;
    background: hsla(0, 100%, 47%, 0.25);
    bottom: 10%;
    left: -5%;
    animation: aurora2 18s ease-in-out infinite 2s;
  }
  
  .aurora-blue-2 {
    width: 400px;
    height: 400px;
    background: hsla(209, 79%, 44%, 0.2);
    top: 40%;
    left: 30%;
    animation: aurora3 12s ease-in-out infinite 4s;
  }
  
  .aurora-white-1 {
    width: 600px;
    height: 600px;
    background: hsla(0, 0%, 100%, 0.15);
    top: -20%;
    right: -10%;
    filter: blur(120px);
    animation: aurora1 16s ease-in-out infinite;
  }
  
  .aurora-accent-1 {
    width: 500px;
    height: 500px;
    background: hsla(0, 100%, 47%, 0.3);
    bottom: -15%;
    left: -10%;
    filter: blur(100px);
    animation: aurora2 18s ease-in-out infinite 2s;
  }
  
  @keyframes aurora1 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(100px, 50px) scale(1.2);
    }
    66% {
      transform: translate(50px, 100px) scale(0.9);
    }
  }
  
  @keyframes aurora2 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-80px, -60px) scale(0.8);
    }
    66% {
      transform: translate(-40px, -120px) scale(1.1);
    }
  }
  
  @keyframes aurora3 {
    0%, 100% {
      transform: translate(0, 0) scale(0.9);
    }
    33% {
      transform: translate(60px, -40px) scale(1.1);
    }
    66% {
      transform: translate(-30px, 30px) scale(1);
    }
  }
  
  /* ===== Floating Math Symbols ===== */
  .floating-symbols {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .math-symbol {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.1;
    animation: floatSymbol 6s ease-in-out infinite;
  }
  
  @media (min-width: 768px) {
    .math-symbol {
      font-size: 4rem;
    }
  }
  
  @keyframes floatSymbol {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(5deg);
    }
  }
  
  /* ===== Section Styles ===== */
  .section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .section {
      padding: 8rem 0;
    }
  }
  
  .section-fade {
    position: relative;
  }
  
  .section-fade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to bottom, var(--background) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  .section-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* ===== Features Grid ===== */
  .features-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
  }
  
  @media (min-width: 640px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .feature-card {
    position: relative;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .feature-icon.green {
    background: hsl(142, 76%, 90%);
    color: hsl(142, 76%, 36%);
  }
  
  .feature-icon.purple {
    background: hsl(270, 60%, 90%);
    color: hsl(270, 60%, 50%);
  }
  
  .feature-icon.orange {
    background: hsl(30, 90%, 90%);
    color: hsl(30, 90%, 50%);
  }
  
  .feature-icon.pink {
    background: hsl(340, 80%, 90%);
    color: hsl(340, 80%, 50%);
  }
  
  .feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  /* ===== Grades Grid ===== */
  .grades-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    .grades-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }
  
  .grade-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .grade-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  
  .grade-image {
    overflow: hidden;
  }
  
  .grade-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .grade-card:hover .grade-image img {
    transform: scale(1.05);
  }
  
  .grade-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--card);
  }
  
  .grade-title {
    font-size: 1.125rem;
    font-weight: 700;
  }
  
  .btn-grade {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .btn-grade:hover {
    transform: scale(1.05);
  }
  
  .btn-grade:active {
    transform: scale(0.95);
  }
  
  /* Arrow animation */
  .btn-grade .arrow-icon {
    animation: arrowBounce 1.5s ease-in-out infinite;
  }
  
  @keyframes arrowBounce {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-3px);
    }
  }
  
  /* Blue button - الصف الأول */
  .btn-grade.blue {
    background: var(--primary);
  }
  
  .btn-grade.blue:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 25px rgba(24, 116, 201, 0.6);
  }
  
  /* Cyan button - الصف الثاني */
  .btn-grade.cyan {
    background: hsl(187, 85%, 43%);
  }
  
  .btn-grade.cyan:hover {
    background: hsl(187, 85%, 38%);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
  }
  
  /* Red button - الصف الثالث */
  .btn-grade.red {
    background: var(--accent);
  }
  
  .btn-grade.red:hover {
    background: hsl(0, 100%, 42%);
    box-shadow: 0 0 25px rgba(241, 0, 0, 0.6);
  }
  
  /* ===== FAQ Section ===== */
  .faq-decoration {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    pointer-events: none;
    display: none;
  }
  
  @media (min-width: 1024px) {
    .faq-decoration {
      display: block;
    }
  }
  
  .faq-decoration img {
    width: 280px;
    height: auto;
  }
  
  .faq-container {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
  }
  
  .faq-item {
    background: hsla(210, 30%, 96%, 0.5);
    border: 2px dashed var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
  }
  
  .dark .faq-item {
    background: hsla(220, 20%, 12%, 0.5);
  }
  
  .faq-item.active {
    border-color: hsla(209, 79%, 44%, 0.5);
    box-shadow: var(--shadow-soft);
  }
  
  .faq-item:hover {
    background: hsla(210, 30%, 96%, 0.7);
    border-color: hsla(209, 79%, 44%, 0.3);
  }
  
  .dark .faq-item:hover {
    background: hsla(220, 20%, 12%, 0.7);
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: right;
    font-family: inherit;
    cursor: pointer;
  }
  
  .faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
  }
  
  .faq-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
  }
  
  .faq-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
  }
  
  @media (min-width: 768px) {
    .faq-text {
      font-size: 1.125rem;
    }
  }
  
  .faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
  }
  
  .faq-icon .icon-minus {
    display: none;
  }
  
  .faq-item.active .faq-icon .icon-plus {
    display: none;
  }
  
  .faq-item.active .faq-icon .icon-minus {
    display: block;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.25rem 4.5rem;
    color: var(--muted-foreground);
    line-height: 1.8;
  }
  
  .faq-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
  }
  
  .faq-cta p {
    color: var(--muted-foreground);
  }
  
  .faq-cta a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
  }
  
  .faq-cta a:hover {
    text-decoration: underline;
  }
  
  /* ===== CTA Section ===== */
  .cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary));
  }
  
  @media (min-width: 768px) {
    .cta-section {
      padding: 8rem 0;
    }
  }
  
  .cta-symbols {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .cta-symbol {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.1;
    animation: ctaFloat 5s ease-in-out infinite;
  }
  
  @media (min-width: 768px) {
    .cta-symbol {
      font-size: 4rem;
    }
  }
  
  @keyframes ctaFloat {
    0%, 100% {
      transform: translateY(0) rotate(0);
      opacity: 0.1;
    }
    50% {
      transform: translateY(-20px) rotate(10deg);
      opacity: 0.2;
    }
  }
  
  .cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  @media (min-width: 768px) {
    .cta-title {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .cta-title {
      font-size: 3rem;
    }
  }
  
  .cta-title span {
    color: var(--accent-light);
  }
  
  .cta-subtitle {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  @media (min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
    }
  }
  
  .btn-cta-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: white;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-accent);
  }
  
  .btn-cta-accent:hover {
    transform: scale(1.05);
  }
  
  .btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-cta-outline:hover {
    background: white;
    color: var(--primary);
  }
  
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  }
  
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.8);
  }
  
  .trust-badge span {
    font-weight: 500;
  }
  
  /* ===== Animations ===== */
  .animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .delay-200 {
    animation-delay: 0.2s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

  body{
    margin-top: 0!important;
  }