/* ===== BASE STYLES ===== */
:root {
    --primary: #d94f4f; /* A modern, slightly muted red */
    --primary-dark: #b33e3e;
    --primary-writing:#bbbbbb;
    --secondary: #1e3953; /* A slightly softer dark blue-gray */
    --secondary-light: #848484;
    --excel-primary: #1D6F42; /* A richer green for Excel */
    --word-primary: #2B579A; /* Keeping the classic Word blue */
    --accent: #f4f4f4; /* A light gray for accents */
    --light: #ffffff; /* Pure white for a cleaner look */
    --dark: #333333; /* A softer black for text */
    --danger: #e53935;
    --gradient: linear-gradient(to right, #cccccc, #bbbbbb);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
  }

  /* Ensure Font Awesome icons render even if other rules target <i> or set font-family */
  /* This sets the expected font families for FA classes without forcing weight - FA's own CSS will set weights. */
  [class^="fa-"] , [class*=" fa-"] , i[class*="fa-"] , .fa, .fas, .far, .fab, .fal {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  }
  
  @font-face {
    font-family: 'Roboto', sans-serif;
    /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
    src: url('/fonts/roboto-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

  /* ===== PRIVACY BANNER ===== */
  .privacy-banner {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 1.5rem;
    text-align: center;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(225, 29, 72, 0.2);
    font-weight: 600;
    z-index: 1101;
    position: relative;
  }
  
  /* ===== HEADER ===== */
  .header {
    background: var(--gradient);
    padding: 0.8rem 2rem;
    box-shadow: var(--primary-dark);
    z-index: 1100;
  }

  .header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  .logo a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }
  .logo a:hover, .logo a:focus {
    text-decoration: none;
  }
  .logo img{
    width: 7.5rem;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: tomato;
    transition: width 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--primary);
  }

  .nav-links .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    min-width: 900px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: row;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links .dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: flex;
    align-items: center;
    color: var(--secondary);
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1;
  }

  .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(192, 10, 10, 0.1), rgba(192, 10, 10, 0.05));
    color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(192, 10, 10, 0.15);
    border-color: rgba(192, 10, 10, 0.2);
  }

  .dropdown-menu a:hover::after {
    width: 0;
  }
  
  .dropdown-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--primary);
  }
  
  /* Section-based horizontal layout for All Tools dropdown */
  
  .menu-section {
    flex: 1; /* Equal width sections */
    min-width: 180px; /* Minimum width per section */
    padding: 0 1rem;
  }
  
  .menu-section:first-child {
    padding-left: 0;
  }
  
  .menu-section:last-child {
    padding-right: 0;
  }
  
  .menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu-section li {
    margin-bottom: 0.5rem;
  }
  
  /* Section headers */
  .dropdown-header {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 3px solid var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: linear-gradient(90deg, transparent, rgba(192, 10, 10, 0.05), transparent);
    border-radius: 6px;
    width: 100%;
  }
  
  .dropdown-header i {
    margin-right: 0.5rem;
  }
  
  .dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.75rem 0;
  }
  
  .dropdown-menu li:not(.dropdown-header):not(.dropdown-divider) a {
    display: block;
    padding: 0.5rem 0;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .dropdown-menu li:not(.dropdown-header):not(.dropdown-divider) a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
  }
  
  .dropdown-menu li:not(.dropdown-header):not(.dropdown-divider) a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
  }
  
  /* ===== HERO SECTION ===== */
  
  .hero {
    background: var(--accent);
    background-size: cover;
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-title span {
    color: var(--primary-dark);
    position: relative;
  }
  
  .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(225, 29, 72, 0.2);
    z-index: -1;
  }

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-writing);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
  }
  
  .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  }
  
  /* ===== TOOLS SECTION ===== */
  .tools-section {
    padding: 5rem 2rem;
    /* background-color: var(--secondary) */
    background-color: #cccccc;
  }
  
  #tools-sec {
    color: var(--primary-dark)
  }
    
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bbbbbb, #999999);
    border-radius: 2px;
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 auto;
  }

/* ===== FEATURED TOOLS GRID (4 in a row) ===== */
.tools-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    padding: 0 1rem;
  }

.tools-grid-4 .tool-link {
    text-decoration: none;
    display: block;
    height: 100%;
  }

.tools-grid-4 .tool-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    text-align: center;
    padding: 2rem 1.25rem;
    box-shadow: 0 4px 20px rgba(179, 62, 62, 0.08), 0 0 0 1px rgba(179, 62, 62, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

.tools-grid-4 .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(179, 62, 62, 0.15), 0 0 0 2px rgba(179, 62, 62, 0.1);
  }

.tools-grid-4 .tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
  }

.tools-grid-4 .tool-card:hover::before {
    transform: scaleX(1);
  }

.tools-grid-4 .tool-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(217, 79, 79, 0.1) 0%, rgba(179, 62, 62, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
  }

.tools-grid-4 .tool-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }

.tools-grid-4 .tool-card:hover .tool-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scale(1.1);
  }

.tools-grid-4 .tool-card:hover .tool-icon i {
    color: white;
    transform: scale(1.1);
  }

.tools-grid-4 .tool-card h3 {
    margin: 0 0 0.75rem;
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }

.tools-grid-4 .tool-card:hover h3 {
    color: var(--primary-dark);
  }

.tools-grid-4 .tool-card p {
    font-size: 0.9rem;
    color: var(--secondary-light);
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
  }

@media (max-width: 900px) {
    .tools-grid-4 {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
  }

@media (max-width: 500px) {
    .tools-grid-4 {
      grid-template-columns: 1fr;
      max-width: 300px;
    }
  }

  
.tool-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.tool-card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden; 
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

.tool-icon i {
    font-size: 3.5rem;
    transition: all 0.3s ease;
    color: var(--primary);
  }

  .tool-card:hover .tool-icon i {
    transform: scale(1.1);
}

  .tool-card h3 {
    margin: 0.5rem 0 1rem;
    /* color: var(--secondary); */
    color: var(--dark);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}
  
  .tool-card p{
    font-size: 1rem;
    color: var(--secondary-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .tool-card:hover h3 {
    color: var(--secondary-light);
}

.coming-soon {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;    
    display: inline-block;
    background: var(--primary-dark);
    color: white;   
    margin-top: 15px;
}
  
  /* ===== FEATURES SECTION ===== */
  .features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  }
  
  .features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 79, 79, 0.12);
    border-color: rgba(217, 79, 79, 0.15);
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(217, 79, 79, 0.1) 0%, rgba(179, 62, 62, 0.15) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
  }

  .feature-card:hover .feature-icon i {
    color: white;
  }
  
  .feature-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .feature-card p {
    text-align: center;
    color: var(--secondary-light);
    line-height: 1.7;
    font-size: 1rem;
  }

  /* ===== HOW IT WORKS SECTION ===== */
  .how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
  }

  .how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 79, 79, 0.3), transparent);
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    border-radius: 2px;
    z-index: 0;
  }

  .step-card {
    background: white;
    padding: 3rem 2rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(217, 79, 79, 0.15);
    border-color: rgba(217, 79, 79, 0.2);
  }

  .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(179, 62, 62, 0.4);
    border: 4px solid white;
  }

  .step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(217, 79, 79, 0.1) 0%, rgba(179, 62, 62, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: all 0.3s ease;
  }

  .step-card:hover .step-icon {
    background: var(--gradient-primary);
    transform: rotate(10deg) scale(1.1);
  }

  .step-icon i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .step-card:hover .step-icon i {
    color: white;
  }

  .step-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .step-card p {
    color: var(--secondary-light);
    font-size: 1rem;
    line-height: 1.7;
  }

  .step-arrow {
    display: none;
  }

  /* ===== STATS SECTION ===== */
  .stats-section {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .stat-item {
    text-align: center;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ===== USE CASES SECTION ===== */
  .use-cases {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  }

  .use-cases-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .use-case-card:hover::before {
    transform: scaleX(1);
  }

  .use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 79, 79, 0.12);
    border-color: rgba(217, 79, 79, 0.15);
  }

  .use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(217, 79, 79, 0.1) 0%, rgba(179, 62, 62, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }

  .use-case-card:hover .use-case-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
  }

  .use-case-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .use-case-card:hover .use-case-icon i {
    color: white;
  }

  .use-case-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .use-case-card p {
    color: var(--secondary-light);
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ===== FAQ PREVIEW SECTION ===== */
  .faq-preview {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  }

  .faq-preview-container {
    max-width: 850px;
    margin: 0 auto;
  }

  .faq-preview-item {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
  }

  .faq-preview-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(217, 79, 79, 0.1);
    border-color: rgba(217, 79, 79, 0.2);
  }

  .faq-preview-question {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
  }

  .faq-preview-question i {
    color: white;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .faq-preview-question span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.15rem;
  }

  .faq-preview-item p {
    color: var(--secondary-light);
    padding-left: 3.25rem;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
  }

  .faq-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  .outline-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
  }

  .outline-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 79, 79, 0.3);
  }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a4a6e 50%, #1e3953 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
  }

  .cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }

  .cta-button-light {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }

  .cta-button-light:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--primary);
    color: white;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--gradient);
    color: white;
    padding: 3rem 2rem 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-column {
    min-width: 200px;
    margin-bottom: 2rem;
    flex: unset;
  }
  
  .footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-align: center;
  }
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #bbbbbb, #999999);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--secondary-light);
    /* color: var(--primary-dark); */
    transform: translateX(5px);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #aaaaaa;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none; /* Prevent underline */
}

.social-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  text-decoration: none; /* Prevent underline on hover */
}
  
  .copyright {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }
  .coming-soon-footer {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    color: var(--);
}
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .steps-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .steps-container::before {
      display: none;
    }

    .use-cases-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
      font-size: 3rem;
    }

    .cta-content h2 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .header {
      padding: 0.8rem 1.5rem;
    }
    
    .logo {
      font-size: 1.5rem;
    }
    
    .nav-links {
      gap: 1.2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .tools-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.8rem;
    }
    
    .tool-card {
      padding: 2rem 1.2rem;
    }

    .steps-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .step-card {
      max-width: 400px;
      margin: 0 auto;
    }

    .use-cases-container {
      grid-template-columns: 1fr;
    }

    .stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .stat-number {
      font-size: 2.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
    }

    .cta-content h2 {
      font-size: 2rem;
    }

    .cta-content p {
      font-size: 1.1rem;
    }

    .features-container {
      grid-template-columns: 1fr;
      max-width: 400px;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      min-width: unset;
      width: 100%;
      margin-bottom: 1.5rem;
    }
    .footer-logo-social {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .dropdown-menu {
      left: 0 !important;
      right: 0 !important;
      min-width: 100vw !important;
      width: 100vw !important;
      max-width: 100vw !important;
      box-sizing: border-box !important;
      border-radius: 0 !important;
      position: fixed !important;
      top: 60px !important;
      z-index: 2000 !important;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      flex-direction: column;
      gap: 1rem;
    }
    
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .hero {
      padding: 3rem 1.5rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }

    .how-it-works,
    .use-cases,
    .faq-preview {
      padding: 4rem 1.5rem;
    }

    .cta-section {
      padding: 4rem 1.5rem;
    }

    .cta-content h2 {
      font-size: 1.8rem;
    }

    .cta-content p {
      font-size: 1rem;
    }

    .step-card {
      padding: 2.5rem 1.5rem 2rem;
    }

    .use-case-card {
      padding: 2rem 1.5rem;
    }

    .faq-preview-item {
      padding: 1.5rem;
    }

    .faq-preview-question span {
      font-size: 1rem;
    }

    .faq-preview-item p {
      padding-left: 2.5rem;
    }
  }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky header group to preserve sticky stacking context */
.sticky-header-group {
  position: sticky;
  top: 0;
  z-index: 1100;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    min-width: unset;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer {
    text-align: center;
  }
  .hamburger {
    margin-left: auto;
    order: 3;
  }
  .logo {
    order: 1;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: none !important;
    width: auto !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
  }
  
  
  .footer-column {
    min-width: 200px;
    width: auto;
    margin-bottom: 2rem;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-logo-social {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }
  .footer-column h3 {
    text-align: left;
  }
  .footer-column h3::after {
    left: 0;
    transform: none;
  }
}
@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    min-width: unset;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .logo {
    align-self: flex-start;
    text-align: left;
  }
}

/* Header logo always left-aligned */
.header .logo {
  align-items: center;
  text-align: left;
  align-self: flex-start;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  /* Footer logo centered on mobile */
  .footer-logo-social {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer .logo {
    text-align: center;
  }
  /* Bring footer logo column to top */
  .footer-column {
    order: 2;
  }
  .footer-column:first-child {
    order: 1;
  }
}
@media (min-width: 769px) {
  /* Footer logo left-aligned on desktop */
  .footer-logo-social {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }
  .footer .logo {
    text-align: left;
  }
}

/* Ensure footer logo is always at the top and centered above social icons */
.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
}
.footer-logo-social .logo {
  order: 0;
  margin-bottom: 0.5rem;
}
.footer-logo-social p {
  order: 1;
  margin-bottom: 0.5rem;
}
.footer-logo-social .social-links {
  order: 2;
}

.footer-links a .coming-soon-footer {
  display: none;
  transition: background 0.2s, color 0.2s;
}
.footer-links a:hover .coming-soon-footer,
.footer-links a:focus .coming-soon-footer {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--light);
  padding: 5rem 2rem 4rem;
  color: var(--dark);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,57,83,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1px solid #e3eaf2;
}
.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.faq-header p {
  font-size: 1.15rem;
  color: var(--secondary-light);
  margin: 0 auto;
  max-width: 520px;
}
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e3eaf2;
  padding-bottom: 1.5rem;
}
.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.faq-question::before {
  content: "\f059";  /* FontAwesome question circle icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.7rem;
  color: var(--primary);
  font-size: 1.3rem;
}
.faq-answer {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-left: 2.1rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .faq-container {
    padding: 1.2rem 0.5rem;
  }
  .faq-header h1 {
    font-size: 1.5rem;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #333;
  border-top: 2px solid var(--primary-dark);
  padding: 1rem;
  z-index: 9999;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-buttons button {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-buttons button:hover {
  background: darkred;
}

/* Example fallback */
body[data-browser-supports~="not:grid"] .grid-layout {
  display: block;
  /* Alternative styling for older browsers */
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-icon i {
  font-size: 1.5rem;
  color: white;
}

.trust-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--secondary-light);
  line-height: 1.5;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff5f5 50%, #fff 100%);
  text-align: center;
  position: relative;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light, #d94a4a), var(--primary));
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-light);
  margin-bottom: 3rem;
}

.coming-soon-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.coming-soon-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(179, 62, 62, 0.08), 0 0 0 1px rgba(179, 62, 62, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.coming-soon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(179, 62, 62, 0.12);
}

.coming-soon-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(179, 62, 62, 0.1) 0%, rgba(179, 62, 62, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.coming-soon-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}

.coming-soon-card h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-align: center;
}

.social-proof-content {
  max-width: 600px;
  margin: 0 auto;
}

.social-proof-text {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== CTA HINT ===== */
.cta-hint {
  font-size: 0.95rem;
  color: white;
  margin-top: 1rem;
  opacity: 0.9;
}

/* ===== NAV COMING SOON ===== */
.coming-soon-nav {
  font-size: 0.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1px 4px;
  border-radius: 6px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1;
}

.menu-section li.disabled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-section li.disabled .disabled-link {
  display: flex;
  align-items: center;
  color: #999;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(248, 249, 250, 0.8);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: not-allowed;
  line-height: 1;
}

.menu-section li.disabled .disabled-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: #bbb;
}

/* ===== FOOTER DISABLED ===== */
.footer-disabled {
  color: var(--secondary-light);
  opacity: 0.6;
}

/* ===== RESPONSIVE - NEW SECTIONS ===== */
@media (max-width: 900px) {
  .trust-container,
  .coming-soon-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-container,
  .coming-soon-container {
    grid-template-columns: 1fr;
  }
  
  .trust-card {
    padding: 1.5rem;
  }
  
  .social-proof-text {
    font-size: 1.1rem;
  }
}
