:root {
    /* --primary: #2563EB; */
    --primary: #1d27e1;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --secondary: #3be7d4;
    --accent: #010101;
    --dark: #111827;
    --darker: #030712;
    --gray-900: #1F2937;
    --gray-800: #374151;
    --gray-700: #4B5563;
    --gray-600: #6B7280;
    --gray-500: #9CA3AF;
    --gray-400: #D1D5DB;
    --gray-300: #E5E7EB;
    --gray-200: #F3F4F6;
    --gray-100: #F9FAFB;
    --white: #FFFFFF;
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --primary-blue: #2563EB;
    --primary-green: #86C788;
    --dark-blue-gradient-start: #2563EB;
    --dark-blue-gradient-end: #1e3a8a;
    --text-dark: #1a1a1a;
    --text-medium: #4B5563;
    --bg-offwhite: #f8fafc;
    --border-light: rgba(226, 232, 240, 0.8);
}

@font-face {
    font-family:"Startworks";
    src:url('assets/fonts/SW.woff2') format("woff2");
    font-display:swap
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Startworks", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: white;
    color: #1a1a1a;
}


/* NAV */

/* Navigation Bar Container */
.nav-container {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 1.5rem;
}

/* Blur effect wrapper */
.nav-blur {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 12px;
    box-shadow: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation layout */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* Logo and Nav Links Container */
.nav-left {
    display: flex;
    align-items: center;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    margin-right: 3rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 1.1rem;
}

.logo-icon {
    margin-right: 0.75rem;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.94rem;
    font-weight: 500;
    font-family: "Startworks", sans-serif;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #000;
}

/* Auth buttons container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Sign in button */
.sign-in {
    text-decoration: none;
    color: #333;
    font-size: 0.94rem;
    font-weight: 500;
    font-family: "Startworks", sans-serif;
    transition: color 0.2s ease;
}

.sign-in:hover {
    color: #000;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        margin-top: 0.5rem;
        border-radius: 6px;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }
}

/* Rainbow button styling */
.rainbow-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Startworks", sans-serif;
    color: #fafafa;
    background:
        linear-gradient(#121213, #121213) padding-box,
        linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)) padding-box,
        linear-gradient(90deg, #2563eb, #2563EB, #d97706, #059669, #e11d48) border-box;
    background-size: 200% 200%;
    background-position: 0% 50%;
    background-origin: border-box;
    background-clip: padding-box, padding-box, border-box;
    border: 1px solid transparent;
    border-radius: 4px;
    height: 44px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    z-index: 1;
    animation: rainbow 2s linear infinite;
}

.rainbow-button::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 106px;
    height: 8px;
    background: linear-gradient(90deg, #2563eb, #2563EB,#e11d48, #d97706, #059669);
    background-size: 200%;
    filter: blur(12.8px);
    z-index: -1;
    animation: rainbow 2s linear infinite;
}

.rainbow-button .arrow-icon {
    margin-left: 8px;
    height: 16px;
    width: 16px;
    stroke-width: 2;
    transform: translateX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.rainbow-button:hover .arrow-icon {
    transform: translateX(4px);
}

@keyframes rainbow {
    0% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: 200%;
    }
}




/* HERO */
/* ========= HERO OVERALL STYLES ========= */
.hero {
    background: white;
    border-radius: 24px;
    margin: 110px 60px 40px 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: center;
    gap: 80px;
    padding: 60px 90px;
  }
  
  /* Overall hero responsive adjustments */
  @media (max-width: 1200px) {
    .hero-container {
      padding: 50px 60px;
      gap: 60px;
    }
  }
  
  @media (max-width: 992px) {
    .hero {
      margin: 80px 40px 30px 40px;
    }
  
    .hero-container {
      padding: 40px 50px;
      gap: 50px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      margin: 60px 30px 20px 30px;
    }
  
    .hero-container {
      grid-template-columns: 1fr;
      padding: 40px;
      min-height: auto;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      margin: 40px 20px 15px 20px;
    }
  
    .hero-container {
      padding: 30px 25px;
    }
  }
  
  /* ========= HERO LEFT STYLES ========= */
  .hero-content {
    max-width: 500px;
  }
  
  .hero-badge {
    display: inline-block;
    background: #e8eef5;
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: "Startworks", sans-serif;
  }
  
  .hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Startworks", sans-serif;
  }
  
  .hero-cta-section {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
  }
  
  
  .cta-details {
    display: flex;
    flex-direction: column;
  }
  
  .cta-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 1px;
    font-family: "Startworks", sans-serif;
  }
  
  .cta-icons {
    display: flex;
    position: relative;
  }
  
  .icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e8eef5;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
  }
  
  /* Hero left responsive adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.6rem;
    }
    
    .hero-description {
      font-size: 0.85rem;
    }
    
    .hero-cta-section {
      flex-direction: column;
      gap: 20px;
    }
    
    .rainbow-button {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* ========= HERO RIGHT STYLES ========= */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Dashboard image container */
  .hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .hero-image img {
    width: 100%;
    display: block;
  }

  /* Simple blue overlay */
  .image-overlay { 
    position: absolute;
    bottom: 20px; /* Position at bottom */
    left: 20px;
    background: rgba(17, 24, 39, 0.7); /* Darker, more subtle overlay */
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  }

  .overlay-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .overlay-highlight {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
  }

  /* Simple stat metrics */
  .stats-container { width: 100%; margin: 0 auto; }
        .stats-row { display: flex; gap: 20px; flex-wrap: nowrap; } /* No wrap for 3 items typically */

        .stat-item { 
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }
        .stat-item:hover { 
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }
        .stat-number { 
            font-size: 1.6rem; 
            font-weight: 500;
            color: var(--primary);
            display: block;
            margin-bottom: 4px;
            font-family: "Startworks", sans-serif;
            line-height: 1;
        }
        .stat-label { 
            font-size: 0.85rem;
            color: var(--gray-600);
            font-weight: 500;
            line-height: 1.3;
        }
        .stat-item { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.7s ease forwards; }
        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.35s; }
        .stat-item:nth-child(3) { animation-delay: 0.5s; }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
/* CARDS INVESTOR & STARTUP */

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}


.matching-card {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
    color: white;
    border-radius: 12px;
    padding: 20px 30px;
    width: calc(50% - 15px);
    max-width: 550px;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.matching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-badge {
    position: absolute;
    margin-top: 0;
    top: 20px;
    right: 20px;
    background-color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
}

.badge-dot {
    height: 8px;
    width: 8px;
    margin-right: 5px;
    background-color: #2563EB;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    padding-top: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.stats-highlight {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-caption {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 25px;
}

.action-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #10B981;
}

.ai-icon {
    display: inline-block;
    font-size: 20px;
    margin-right: 5px;
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 72, 185, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }
    
    .matching-card {
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .stats-highlight {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .key-features {
        padding: 50px 0;
    }
    
    .card-badge {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .card-title {
        padding-top: 35px;
        font-size: 18px;
    }
    
    .card-subtitle {
        font-size: 14px;
    }
    
    .matching-card {
        padding: 15px 20px;
    }
}


/* PROBLEM + SOLUTION */
.section-padding {
    padding: 80px 90px 30px;
    background: white;
    margin: 0 60px;
    border-radius: 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.eyebrow-text {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: "Startworks", sans-serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.feature-item-card:nth-child(1),
.feature-item-card:nth-child(2),
.feature-item-card:nth-child(3) {
    grid-column: span 2; /* Each takes 2 columns out of 6 = 3 across */
}

.feature-item-card:nth-child(4),
.feature-item-card:nth-child(5) {
    grid-column: span 3; /* Each takes 3 columns out of 6 = 2 across */
}


.feature-item-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
    
    
}

.feature-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);  
}

.feature-image {
    width: 100%;
    height: 300px;
    background: var(--gray-50);
    overflow: hidden;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 24px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-item-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-item-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 30px;
        margin: 0 20px;
    }
    
    .section-title { 
        font-size: 2rem; 
    }
    
    .key-features-grid { 
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item-card {
        padding: 0;
    }

    .feature-image {
        width: 100%;
        height: auto;
    }
    .feature-image img {
      background-size: contain;
    }

}


/** PROCESS SECTION **/
.process-section {
  margin-top: 40px;
}

.matching-process-wrapper {
    background: white;
    border-radius: 32px;
    padding: 80px 90px;
    margin: 0 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.matching-header-section {
    text-align: center;
    margin-bottom: 72px;
}

.matching-eyebrow {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.matching-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: "Startworks", sans-serif;
    letter-spacing: -0.02em;
}

.matching-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Startworks", sans-serif;
    font-weight: 400;
}

.matching-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
}

.matching-visual-container {
    position: relative;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    border-radius: 28px;
    padding: 50px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.matching-visual-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    animation: matchingRotation 25s linear infinite;
}

@keyframes matchingRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.matching-laptop-display {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    transform: perspective(1200px) rotateX(8deg) rotateY(-12deg);
    transition: transform 0.3s ease;
}

.matching-laptop-display:hover {
    transform: perspective(1200px) rotateX(5deg) rotateY(-8deg) scale(1.02);
}

.matching-screen-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    border: 3px solid var(--gray-300);
}

.matching-browser-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.matching-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.matching-browser-dot:nth-child(1) { background: #ff5f56; }
.matching-browser-dot:nth-child(2) { background: #ffbd2e; }
.matching-browser-dot:nth-child(3) { background: #27ca3f; }

.matching-dashboard-interface {
    font-size: 0.8rem;
    color: var(--gray-900);
}

.matching-interface-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.matching-investor-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.matching-investor-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.matching-investor-row:hover {
    background: #e6f3ff;
    border-color: var(--primary-light);
}

.matching-investor-profile {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
}

.matching-investor-info {
    flex-grow: 1;
}

.matching-investor-title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.matching-investor-company {
    color: var(--gray-600);
    font-size: 0.65rem;
}

.matching-score-badge {
    background: #10B981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
}

.matching-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.matching-stat-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.matching-stat-value {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.matching-stat-description {
    color: var(--gray-600);
    font-size: 0.65rem;
}

.matching-laptop-bottom {
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, var(--gray-400) 0%, var(--gray-500) 100%);
    border-radius: 0 0 24px 24px;
    margin-top: -3px;
    position: relative;
}

.matching-laptop-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 6px;
    background: var(--gray-600);
    border-radius: 3px;
}

.matching-cta-badge {
    position: absolute;
    bottom: 80px;
    left: 30px;
    background: white;
    padding: 16px 20px;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.matching-features-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
}

.matching-feature-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.matching-feature-badge {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.matching-feature-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-family: "Startworks", sans-serif;
    line-height: 1.3;
}

.matching-feature-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-family: "Startworks", sans-serif;
    font-weight: 400;
}

.matching-bottom-showcase {
    background: linear-gradient(135deg, var(--gray-100) 0%, #e6f3ff 100%);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    border: 1px solid var(--gray-200);
}

.matching-bottom-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-family: "Startworks", sans-serif;
    line-height: 1.3;
}

.matching-bottom-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-family: "Startworks", sans-serif;
    margin-bottom: 24px;
}

.matching-cta-button {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Startworks", sans-serif;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.matching-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.matching-highlight-metric {
    background: linear-gradient(135deg, #10B981 0%, #34d399 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.matching-metric-figure {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    font-family: "Startworks", sans-serif;
    line-height: 1;
}

.matching-metric-text {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    font-family: "Startworks", sans-serif;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .matching-process-wrapper {
        padding: 60px 40px;
        margin: 0 30px;
    }
    
    .matching-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .matching-main-title { 
        font-size: 2.25rem; 
    }

    .matching-laptop-display {
        max-width: 350px;
        transform: perspective(1000px) rotateX(5deg) rotateY(-8deg);
    }

    .matching-bottom-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .matching-features-container {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .matching-process-wrapper {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .matching-main-title {
        font-size: 2rem;
    }

    .matching-visual-container {
        min-height: 400px;
        padding: 30px;
    }

    .matching-laptop-display {
        max-width: 280px;
        transform: none;
    }

    .matching-bottom-showcase {
        padding: 32px 24px;
    }

    .matching-feature-block {
        gap: 20px;
    }

    .matching-feature-badge {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* PROCESS STEPS */
.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(52, 52, 52, 0.08);
}

.process-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: var(--gray-900);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(7, 7, 7, 0.3);
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.header-content {
    flex: 1;
    min-width: 0;
}

.process-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-card:hover .process-icon {
    transform: scale(1.05);
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin: 0;
}

.process-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: auto;
}


  /* Bottom CTA callout */
  .cta-callout {
    /* background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%); */
    background: linear-gradient(135deg, #0a2540 0%, var(--primary) 100%);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .cta-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .callout-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 199, 136, 0.1) 0%, rgba(134, 199, 136, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    z-index: 0;
  }

  .callout-content {
    position: relative;
    z-index: 2;
    flex: 1;
  }

  .callout-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .callout-title-icon {
    background: rgba(134, 199, 136, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }

  .callout-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    max-width: 600px;
  }

  .callout-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
  }

  .weekly-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #86C788;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
  }

  .get-started-btn {
    background: #86C788;
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(134, 199, 136, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .get-started-btn:hover {
    background: #75b577;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(134, 199, 136, 0.4);
  }

  .btn-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
  }

  .get-started-btn:hover .btn-icon {
    transform: translateX(3px);
  }

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(134, 199, 136, 0.7);
    }
    
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(134, 199, 136, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(134, 199, 136, 0);
    }
  }

  /* Responsive styles */
  @media (max-width: 1250px) {
    .process-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .process-card-content {
      padding: 25px;
    }
    
    .cta-callout {
      padding: 30px;
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
    }
    
    .callout-title {
      font-size: 24px;
    }
  }

  @media (max-width: 640px) {
    .process-cards {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .section-subtitle {
      font-size: 16px;
    }
    
    .cta-callout {
      padding: 25px;
    }

    .callout-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .callout-title {
      font-size: 22px;
    }
    
    .callout-text {
      font-size: 15px;
    }
    
    .weekly-badge {
      padding: 10px 15px;
      font-size: 14px;
    }
    
    .get-started-btn {
      padding: 12px 20px;
      font-size: 15px;
    }
}

/* FAQ Section Styling */
.faq {

  }

  .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    color: var(--primary-blue);
  }

  .toggle-icon {
    width: 28px;
    height: 28px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
  }

  .faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: white;
  }

  .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 30px 24px;
    max-height: 100%;
  }

  .faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-medium);
    font-size: 16px;
  }

  /* Final CTA Section */
  .final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    margin: 0 150px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}


.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    position: relative;
}

.badge-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.final-cta h2 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
    margin: auto;
    padding-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    color: var(--gray-900);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.rainbow-button:hover .arrow-icon {
    transform: translateX(4px);
}

.trust-indicators {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Responsive styles */
@media (max-width: 992px) {
    .container {
        padding: 60px 30px;
    }
    
    .final-cta h2 {
        font-size: 42px;
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 50px 20px;
    }
    
    .final-cta h2 {
        font-size: 36px;
    }
    
    .final-cta p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .rainbow-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    
    .final-cta h2 {
        font-size: 30px;
    }
    
    .final-cta p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .rainbow-button {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .secondary-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 200% 50%;
    }
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    .section-padding {
      padding: 60px 0;
    }
    
    .final-cta {
      padding: 60px 40px;
      margin: 0 90px;
    }
    
    .final-cta h2 {
      font-size: 36px;
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 30px;
    }
    
    .faq-question {
      padding: 20px 25px;
      font-size: 16px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
      padding: 0 25px 20px;
    }
    
    .final-cta h2 {
      font-size: 30px;
    }
    
    .final-cta p {
      font-size: 16px;
    }
    
    .rainbow-button {
      padding: 14px 28px;
      font-size: 16px;
    }
    .final-cta {
        padding: 60px 40px;
        margin: 0 40px;
      }
  }

  @media (max-width: 480px) {
    .section-padding {
      padding: 50px 0;
    }
    
    .section-title {
      font-size: 26px;
    }
    
    .faq-item {
      margin-bottom: 15px;
    }
    
    .faq-question {
      padding: 18px 20px;
      font-size: 15px;
    }
    
    .toggle-icon {
      width: 24px;
      height: 24px;
      font-size: 18px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
      padding: 0 30px 18px;
    }
    
    .final-cta {
      padding: 50px 0;
      margin: 0 20px;
    }
    
    .final-cta h2 {
      font-size: 26px;
    }
    
    .final-cta p {
      font-size: 15px;
      margin-bottom: 30px;
    }
    
    .rainbow-button {
      padding: 12px 24px;
      font-size: 15px;
      width: 100%;
      justify-content: center;
    }
  }


/* PRICING */
/* Using your existing root variables and unique class names */
    
    .sw-pricing-section {
      padding: 100px 0;
      position: relative;
    }

    .sw-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Section header */
    .sw-section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 70px;
      position: relative;
    }

    .sw-eyebrow-text {
      display: inline-block;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .sw-section-title {
      font-size: 42px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 24px;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .sw-section-subtitle {
      font-size: 18px;
      line-height: 1.6;
      color: var(--text-medium);
      margin: 0;
    }

    /* Pricing tables container */
    .sw-pricing-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Pricing plan styling */
    .sw-pricing-plan {
      background: var(--white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--shadow-md);
      z-index: 1;
      width: 100%;
      max-width: 550px; /* This controls the width */
    }

    /* Responsive breakpoints */
    @media (max-width: 768px) {
      .sw-pricing-grid {
        padding: 0 10px;
      }
      
      .sw-pricing-plan {
        max-width: 100%;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .sw-pricing-plan {
        max-width: 500px;
      }
    }

    .sw-pricing-plan:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      z-index: 2;
    }

    .sw-pricing-header {
      padding: 0;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .sw-header-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
    }

    .sw-basic-bg {
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue-gradient-end) 100%);
    }

    .sw-pro-bg {
      background: linear-gradient(135deg, var(--gray-800) 0%, var(--dark) 100%);
    }

    .sw-header-content {
      padding: 40px 40px 35px;
      position: relative;
      z-index: 1;
    }

    .sw-plan-badge {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
    }

    .sw-basic-badge {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
    }

    .sw-pro-badge {
      background: rgba(134, 199, 136, 0.25);
      color: var(--primary-green);
    }

    .sw-plan-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: var(--white);
    }

    .sw-plan-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      background: rgba(255, 255, 255, 0.15);
    }

    .sw-pricing-plan:hover .sw-plan-icon {
      transform: scale(1.1);
      background: rgba(255, 255, 255, 0.2);
    }

    .sw-plan-description {
      font-size: 16px;
      line-height: 1.6;
      color: var(--white);
      margin-bottom: 25px;
    }

    .sw-price-tag {
      display: flex;
      align-items: baseline;
    }

    .sw-price-currency {
      font-size: 24px;
      font-weight: 600;
      color: var(--white);
    }

    .sw-price-amount {
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-left: 2px;
      color: var(--white);
    }

    .sw-price-period {
      font-size: 16px;
      margin-left: 8px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Price divider with gradient */
    .sw-price-divider {
      height: 3px;
      background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
      margin: 35px 0 0;
      border: none;
    }

    .sw-pricing-body {
      padding: 35px 40px 40px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .sw-features-heading {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-top: 0;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .sw-features-list {
      list-style: none;
      padding: 0;
      margin: 0 0 30px;
    }

    .sw-feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      position: relative;
      padding-left: 32px;
    }

    .sw-feature-item:last-child {
      margin-bottom: 0;
    }

    .sw-feature-icon {
      position: absolute;
      left: 0;
      top: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%; /* Ensure this is set to 50% for round icons */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sw-basic-plan .sw-feature-icon {
      background: rgba(37, 99, 235, 0.15);
      color: var(--primary);
    }

    .sw-pro-plan .sw-feature-icon {
      background: rgba(134, 199, 136, 0.15);
      color: var(--primary-green);
    }

    .sw-feature-icon svg {
      width: 12px;
      height: 12px;
    }

    .sw-feature-text {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-medium);
    }

    /* Push the button to the bottom */
    .sw-pricing-footer {
      margin-top: auto;
      text-align: center;
    }

    .sw-pricing-button {
      display: inline-block;
      width: 80%;
      border: none;
      border-radius: var(--radius);
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      text-decoration: none;
    }

    .sw-basic-button {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .sw-basic-button:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    }

    .sw-pro-button {
      background: var(--primary-green);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(134, 199, 136, 0.3);
    }

    .sw-pro-button:hover {
      background: #75b577;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(134, 199, 136, 0.4);
    }

    /* Popular plan highlight */
    
    .sw-popular-plan:hover {
      transform: scale(1.02) translateY(-10px);
    }

    .sw-popular-label {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-green);
      color: var(--white);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(134, 199, 136, 0.3);
    }


/* FOOTER */
.site-footer {
    padding: 40px 0 60px;
    font-family: "Startworks", sans-serif;
    background: white;
    margin: 40px 130px 0;
    border-radius: 24px 24px 0 0;
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.footer-brand {
    flex: 0 0 320px;
}

.footer-brand p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 16px;
    line-height: 1.6;
}

.footer-links-container {
    flex: 0 0 350px;
    margin-bottom: 40px;
    display: flex;
}

.footer-links {
    flex: 1;
    padding-right: 20px;
}

.footer-links p {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.footer-contact {
    flex: 0 0 240px;
}

.footer-contact p {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.icon-container {
    width: 36px;
    height: 36px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    font-weight: 300;
}

    /* Responsive styles */
    @media (max-width: 992px) {
      .sw-pricing-section {
        padding: 80px 0;
      }
      
      .sw-pricing-grid {
        gap: 25px;
      }
      
      .sw-header-content,
      .sw-pricing-body {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .sw-pricing-section {
        padding: 60px 0;
      }
      
      .sw-section-header {
        margin-bottom: 40px;
      }
      
      .sw-section-title {
        font-size: 36px;
      }
      
      .sw-section-subtitle {
        font-size: 16px;
      }
      
      .sw-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
      }
      
      .sw-popular-plan:hover {
        transform: translateY(-10px);
      }
      .footer-brand {
        margin-bottom: 40px;
      }
    }

    @media (max-width: 480px) {
      .sw-pricing-section {
        padding: 50px 0;
      }
      
      .sw-section-title {
        font-size: 30px;
      }
      
      .sw-header-content,
      .sw-pricing-body {
        padding: 25px;
      }
      
      .sw-plan-title {
        font-size: 22px;
      }
      
      .sw-plan-icon {
        width: 38px;
        height: 38px;
      }
      
      .sw-price-amount {
        font-size: 42px;
      }
      
      .sw-feature-item {
        padding-left: 30px;
      }
      
      .sw-feature-icon {
        width: 18px;
        height: 18px;
      }
      
      .sw-feature-text {
        font-size: 14px;
      }
    }


/* OTHER RESPONSIVE **/

/* MOBILE MENU */
.mobile-menu-button {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-button {
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-menu-button svg {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-button .menu-icon {
    opacity: 1;
}

.mobile-menu-button .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotate(-90deg);
}

.mobile-menu-button.open .menu-icon {
    opacity: 0;
}

.mobile-menu-button.open .close-icon {
    opacity: 1;
    transform: rotate(0);
}

@media (max-width: 768px) {
    .mobile-menu {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}


/* Mobile responsive styles */
@media (max-width: 920px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
        order: 2; /* Ensure it's on the right on mobile */
    }
    
    .nav-right {
        display: none; /* Hide desktop auth buttons on mobile */
    }
    
    .logo {
        order: 1;
        margin-right: 0; /* Adjust logo margin if needed */
    }
    
    nav {
        justify-content: space-between;
    }

    .hero {
        margin: 120px 30px 40px 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
        text-align: left; /* Changed from center to left for mobile hero content */
    }


    .hero-title {
        font-size: 2.6rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .dealflow-section, .pricing-section {
        margin: 20px 30px;
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .nav-blur {
        padding: 0 1rem; /* Adjust padding for smaller nav */
    }
    .hero {
        margin: 120px 20px 40px 20px;
        border-radius: 16px;
    }

    .hero-container {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start; /* Align CTA items to start */
    }

    .get-started-btn {
        width: 100%;
        text-align: center;
        max-width: 200px; /* Limit button width if needed */
    }

    .stats-row {
        gap: 12px;
    }

    .overlay-text {
        font-size: 0.7rem;
    }

    .overlay-highlight {
        font-size: 0.8rem;
    }

    .dealflow-section, .pricing-section {
        margin: 20px 20px;
        padding: 40px 20px;
    }

    .dealflow-cards, .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .site-footer {
        margin: 10px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin: 120px 10px 40px 10px;
    }

    .hero-container {
        padding-bottom: 0px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .stat-number {
        font-size: 0.9rem;
        line-height: 0.9rem;
    }

    .stat-label {
        font-size: 0.6rem;
        line-height: 0.6rem;
    }

    .dealflow-section, .pricing-section {
        margin: 20px 10px;
        padding: 30px 15px;
    }
}