/* TechSID Vanilla - Complete CSS with exact colors and styling from original */

/* CSS Variables - Exact from original */
:root {
    /* Dark Theme Base Colors */
    --background: hsl(220, 13%, 8%);
    --foreground: hsl(210, 20%, 98%);
    
    /* Brand Orange */
    --brand: hsl(35, 100%, 57%); /* #FFA229 */
    --brand-light: hsl(35, 100%, 67%);
    --brand-dark: hsl(35, 100%, 47%);
    
    /* Card and Surface Colors */
    --card: hsl(220, 13%, 11%);
    --card-foreground: hsl(210, 20%, 98%);
    --card-hover: hsl(220, 13%, 14%);
    
    /* UI Element Colors */
    --primary: hsl(35, 100%, 57%);
    --primary-foreground: hsl(220, 13%, 8%);
    --secondary: hsl(220, 13%, 18%);
    --secondary-foreground: hsl(210, 20%, 98%);
    
    /* Muted Colors */
    --muted: hsl(220, 13%, 15%);
    --muted-foreground: hsl(215, 15%, 70%);
    
    /* Accent Colors */
    --accent: hsl(220, 13%, 18%);
    --accent-foreground: hsl(210, 20%, 98%);
    
    /* Border and Input */
    --border: hsl(220, 13%, 20%);
    --input: hsl(220, 13%, 18%);
    --ring: hsl(35, 100%, 57%);
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, hsl(35, 100%, 57%), hsl(35, 100%, 67%));
    --gradient-brand-hover: linear-gradient(135deg, hsl(35, 100%, 67%), hsl(35, 100%, 77%));
    --gradient-dark: linear-gradient(135deg, hsl(220, 13%, 11%), hsl(220, 13%, 15%));
    --gradient-hero: linear-gradient(135deg, hsl(220, 13%, 8%) 0%, hsl(220, 13%, 11%) 100%);
    
    /* Shadows */
    --shadow-brand: 0 10px 30px -10px hsl(35, 100%, 57%, 0.3);
    --shadow-card: 0 4px 20px -4px hsl(220, 13%, 4%, 0.5);
    --shadow-glow: 0 0 40px hsl(35, 100%, 57%, 0.2);
    
    /* Animation Duration */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --radius: 0.75rem;
  }
  
  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Text Utilities */
  .text-brand {
    color: var(--brand);
  }
  
  /* Icon Styles */
  .icon {
    width: 2rem;
    height: 2rem;
  }
  
  /* Button Components */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-radius: var(--radius);
    border: none;
    font-family: inherit;
    text-decoration: none;
    outline: none;
    position: relative;
    overflow: hidden;
  }
  
  .btn:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  
  .btn:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }
  
  /* Button Variants */
  .btn-primary {
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-brand);
    border: 2px solid transparent;
    font-weight: 600;
  }
  
  .btn-primary:hover {
    background: var(--gradient-brand-hover);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
  }
  
  .btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--foreground);
    backdrop-filter: blur(8px);
    font-weight: 500;
  }
  
  .btn-secondary:hover {
    background: var(--card-hover);
    border-color: hsl(35, 100%, 57%, 0.5);
  }
  
  .btn-ghost {
    color: var(--muted-foreground);
    background: transparent;
  }
  
  .btn-ghost:hover {
    color: var(--foreground);
    background: hsl(220, 13%, 11%, 0.5);
  }
  
  /* Button Sizes */
  .btn-sm {
    height: 2.25rem;
    padding: 0 1rem;
    font-size: 0.875rem;
  }
  
  .btn-md {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1rem;
  }
  
  .btn-lg {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
  }
  
  /* Navigation */
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsl(220, 13%, 8%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  
  .nav-logo:hover {
    color: var(--brand);
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  
  .nav-links {
    display: none;
    margin-left: 2.5rem;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
    }
  }
  
  .nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
  }
  
  .nav-link:hover,
  .nav-link-active {
    color: var(--brand);
  }
  
  .nav-cta {
    display: none;
  }
  
  @media (min-width: 768px) {
    .nav-cta {
      display: block;
    }
  }
  
  .nav-mobile {
    display: block;
  }
  
  @media (min-width: 768px) {
    .nav-mobile {
      display: none;
    }
  }
  
  .mobile-menu-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
  }
  
  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(35, 100%, 57%, 0.05), transparent, hsl(35, 100%, 57%, 0.1));
  }
  
  .hero-bg-circle-1 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(35, 100%, 57%, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
  }
  
  .hero-bg-circle-2 {
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background: hsl(35, 100%, 57%, 0.1);
    border-radius: 50%;
    filter: blur(2rem);
  }
  
  .hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem 0;
  }
  
  @media (min-width: 640px) {
    .hero-container {
      padding: 4rem 1.5rem 0;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-container {
      padding: 4rem 2rem 0;
    }
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.75rem;
    }
  }
  
  .hero-subtitle-block {
    display: block;
    font-size: 1.875rem;
    color: var(--muted-foreground);
    font-weight: 400;
    margin-top: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .hero-subtitle-block {
      font-size: 2.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-subtitle-block {
      font-size: 3rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 36rem;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-cta {
      flex-direction: row;
    }
  }
  
  .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(220, 13%, 20%, 0.5);
  }
  
  .social-proof-item {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .social-proof-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
  }
  
  .social-proof-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
  }
  
  /* Hero Image */
  .hero-image-container {
    position: relative;
  }
  
  .hero-image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsl(220, 13%, 4%, 0.8);
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .hero-float-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    background: hsl(35, 100%, 57%, 0.2);
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
  }
  
  .hero-float-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: hsl(35, 100%, 57%, 0.1);
    border-radius: 50%;
  }
  
  /* Section Styles */
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* Problem Section */
  .problem-section {
    background: var(--gradient-dark);
  }
  
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .problem-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .problem-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    height: 100%;
  }
  
  .problem-card:hover {
    background: var(--card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
  
  .problem-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
  }
  
  .problem-icon-red {
    background: hsl(0, 84%, 60%, 0.2);
    color: hsl(0, 84%, 60%);
  }
  
  .problem-card:hover .problem-icon-red {
    background: hsl(0, 84%, 60%);
    color: white;
  }
  
  .problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
  }
  
  .problem-card p {
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
  }
  
  .problem-card:hover p {
    color: var(--foreground);
  }
  
  .problem-solution {
    display: flex;
    justify-content: center;
  }
  
  .solution-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    max-width: 48rem;
    width: 100%;
  }
  
  .solution-card:hover {
    background: var(--card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
  
  .solution-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: hsl(35, 100%, 57%, 0.2);
    color: var(--brand);
    transition: var(--transition-smooth);
  }
  
  .solution-card:hover .solution-icon {
    background: var(--brand);
    color: var(--primary-foreground);
  }
  
  .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
  }
  
  .solution-card p {
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
  }
  
  .solution-card:hover p {
    color: var(--foreground);
  }
  
  /* About Section */
  .about-section {
    background: var(--background);
    padding: 6rem 0;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .about-content {
      grid-template-columns: 2fr 1fr;
      gap: 6rem;
    }
  }
  
  .about-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .about-feature .feature-icon {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    flex-shrink: 0;
  }
  
  .about-feature .feature-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand);
  }
  
  .about-feature .feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
  }
  
  .about-feature .feature-text p {
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .about-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }
  
  .about-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
  }
  
  .about-stats .stat-item:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
  }
  
  .about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .about-stats .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
  }
  
  /* Approach Section */
  .approach-section {
    background: var(--background);
  }
  
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .approach-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .approach-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
  }
  
  .approach-card:hover {
    background: var(--card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
  }
  
  .approach-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-brand);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
  }
  
  .approach-card:hover .approach-icon {
    box-shadow: var(--shadow-glow);
  }
  
  .approach-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .approach-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
  }
  
  .approach-subtitle {
    color: var(--brand);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .approach-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    transition: var(--transition-smooth);
  }
  
  .approach-card:hover .approach-description {
    color: var(--foreground);
  }
  
  .approach-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 0 0 1rem 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
  }
  
  .approach-card:hover .approach-accent {
    opacity: 1;
  }
  
  /* Resources Section */
  .resources-section {
    background: var(--gradient-dark);
  }
  
  .resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .resources-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .resource-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    height: 100%;
  }
  
  .resource-card:hover {
    border-color: hsl(35, 100%, 57%, 0.3);
    box-shadow: var(--shadow-card);
  }
  
  .resource-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .resource-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .resource-icon-brand {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
  }
  
  .resource-icon-blue {
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(263, 85%, 70%));
  }
  
  .resource-icon-green {
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(158, 64%, 52%));
  }
  
  .resource-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
  }
  
  .resource-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .resource-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .resource-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--brand);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
  }
  
  .resource-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    transition: var(--transition-smooth);
  }
  
  .resource-card:hover .resource-item p {
    color: var(--foreground);
  }
  
  /* Work Method Section */
  .work-method-section {
    background: var(--background);
  }
  
  .work-method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  @media (min-width: 1024px) {
    .work-method-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .work-method-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .work-method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .work-method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-brand);
  }
  
  .work-method-icon-brand {
    background: var(--gradient-brand);
  }
  
  .work-method-icon-blue {
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(263, 85%, 70%));
  }
  
  .work-method-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
  }
  
  .work-method-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .work-method-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .work-method-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(220, 13%, 11%, 0.5);
    border-radius: var(--radius);
    border: 1px solid hsl(220, 13%, 20%, 0.5);
    transition: var(--transition-smooth);
  }
  
  .feature-item:hover {
    background: var(--card);
  }
  
  .feature-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .feature-content {
    display: flex;
    flex-direction: column;
  }
  
  .feature-title {
    font-weight: 500;
    color: var(--foreground);
  }
  
  .feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Benefits Section */
  .benefits-section {
    background: linear-gradient(to bottom right, var(--background), hsl(220, 13%, 18%, 0.2));
    position: relative;
    overflow: hidden;
  }
  
  .benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
      radial-gradient(circle at 25% 25%, var(--brand) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, hsl(263, 85%, 70%) 0%, transparent 50%);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .benefit-card {
    background: hsl(220, 13%, 11%, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .benefit-card:hover {
    background: var(--card);
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }
  
  .benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
  }
  
  .benefit-icon-green {
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(158, 64%, 52%));
  }
  
  .benefit-icon-blue {
    background: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(263, 85%, 70%));
  }
  
  .benefit-icon-purple {
    background: linear-gradient(135deg, hsl(271, 81%, 56%), hsl(312, 73%, 55%));
  }
  
  .benefit-icon-orange {
    background: linear-gradient(135deg, hsl(25, 95%, 53%), hsl(0, 84%, 60%));
  }
  
  .benefit-card:hover .benefit-icon {
    transform: rotate(12deg) scale(1.1);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.3);
  }
  
  .benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
  }
  
  .benefit-card:hover h3 {
    background: linear-gradient(135deg, var(--foreground), var(--brand));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .benefit-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    transition: var(--transition-smooth);
  }
  
  .benefit-card:hover p {
    color: var(--foreground);
  }
  
  .benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(158, 64%, 52%));
    opacity: 0;
    transition: var(--transition-smooth);
  }
  
  .benefit-card:hover::after {
    opacity: 1;
  }
  
  /* Solution Section */
  .solution-section {
    padding: 5rem 0;
    background: var(--background);
  }
  
  .solution-section .container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .solution-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  /* GSAP will override these values when animations load */
  .gsap-loading .solution-card {
    opacity: 0;
    transform: translateY(50px);
  }
  
  /* ROI Section */
  .roi-section {
    padding: 5rem 0;
    background: var(--background);
  }
  
  .roi-section .container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .roi-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    text-align: center;
  }
  
  .roi-content {
    margin-bottom: 1.5rem;
  }
  
  .roi-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
  }
  
  .roi-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  .roi-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .roi-stats {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .roi-stat {
    padding: 0;
  }
  
  .roi-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
  }
  
  .roi-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 400;
  }
  
  /* FAQ Section */
  .faq-section {
    background: var(--gradient-dark);
  }
  
  .faq-section .container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .faq-container {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  
  .faq-button:hover {
    color: var(--brand);
  }
  
  .faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: var(--transition-smooth);
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-content {
    max-height: 200px;
  }
  
  .faq-answer {
    padding-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  /* FAQ CTA Card */
  .faq-cta {
    margin-top: 3rem;
    text-align: center;
  }
  
  .faq-cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .faq-cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .faq-cta-icon {
    width: 2rem;
    height: 2rem;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .faq-cta-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
  }
  
  .faq-cta-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand);
    margin: 0;
  }
  
  .faq-cta-card p {
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
  }
  
  /* Final CTA Section */
  .final-cta-section {
    background: var(--background);
    position: relative;
    overflow: hidden;
  }
  
  .final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(35, 100%, 57%, 0.05), transparent, hsl(35, 100%, 57%, 0.1));
  }
  
  .final-cta-container {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  
  .final-cta-content {
    max-width: 48rem;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  
  .final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .final-cta-content h2 {
      font-size: 3rem;
    }
  }
  
  .final-cta-content p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  .final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 640px) {
    .final-cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  .final-cta-trust {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .final-cta-trust {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand);
  }
  
  /* Footer */
  .footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  
  .footer-brand p {
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
    text-decoration: none;
  }
  
  .social-link:hover {
    background: var(--brand);
    color: var(--primary-foreground);
    transform: translateY(-2px);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
  }
  
  .footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
  }
  
  .footer-link:hover {
    color: var(--brand);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(142, 71%, 45%);
    border-radius: 50%;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
  }
  
  .footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
