/* Base Styles */
:root {
    --primary: #034737;
    --primary-dark: #356E21;
    --primary-light: #0080001a;
    --primary-gradient: linear-gradient(135deg, #045f4a 0%, #034737 100%);
    --secondary: #f9fafb;
    --accent: #6366f1;
    --accent-dark: #4f46e5;
    --accent-light: #e0e7ff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --black: #000000;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Outfit", sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  h1 {
    font-size: 3.5rem;
    letter-spacing: -0.025em;
  }
  
  h2 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  p {
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
  }
  
  button {
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
  }
  
  section {
    padding: 100px 0;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .section-header h2 {
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
  
  .badge svg {
    width: 16px;
    height: 16px;
  }
  
  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    text-align: center;
    gap: 8px;
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-outline:hover {
    background-color: var(--gray-100);
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  .btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-text:hover {
    color: var(--primary-dark);
  }
  
  .btn-text span {
    transition: transform 0.3s ease;
  }
  
  .btn-text:hover span {
    transform: translateX(4px);
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 1.125rem;
  }
  
  .btn-login {
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    background-color: var(--gray-100);
    color: var(--text-primary);
  }
  
  /* Header */
  header {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  .main-nav ul {
    display: flex;
    gap: 32px;
  }
  
  .main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .main-nav a:hover {
    color: var(--primary);
  }
  
  .header-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    left: 8px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle span:nth-child(1) {
    top: 10px;
  }
  
  .mobile-menu-toggle span:nth-child(2) {
    top: 20px;
  }
  
  .mobile-menu-toggle span:nth-child(3) {
    top: 27px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    margin-bottom: 24px;
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
  }

  .hero-form-wrapper{
    display: flex;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-form-wrapper .form-group input{
    border: 2px solid #034737;
  }

  .hero-form-wrapper .form-group{
    margin-bottom: 20px;
  }
  
  .hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    display: flex;
    gap: 40px;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }
  
  .hero-image {
    flex: 1;
    position: relative;
  }
  
  .hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
  }
  
  .floating-element {
    position: absolute;
    background-color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  
  .floating-element svg {
    color: var(--primary);
  }
  
  .floating-1 {
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-2 {
    bottom: 15%;
    left: -8%;
    animation: float 8s ease-in-out infinite;
  }
  
  .floating-3 {
    top: 20%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .trusted-by {
    text-align: center;
  }
  
  .trusted-by p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
  }
  
  .logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .logo-grid img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .logo-grid img:hover {
    opacity: 1;
  }
  
  .hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--secondary);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: -1;
  }
  
  /* Features Section */
  .features {
    background-color: var(--secondary);
    padding: 120px 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .feature-icon svg {
    color: var(--primary);
    width: 30px;
    height: 30px;
  }
  
  .feature-card h3 {
    margin-bottom: 16px;
  }
  
  .feature-card p {
    color: var(--text-secondary);
  }
  
  /* Platform Section */
  .platform {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .platform-tabs {
    margin-top: 60px;
  }
  
  .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .tab-btn:hover {
    background-color: var(--gray-100);
    color: var(--text-primary);
  }
  
  .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  
  .tab-btn.active svg {
    color: var(--white);
  }
  
  .tab-btn svg {
    color: var(--text-light);
  }
  
  .tabs-content {
    position: relative;
  }
  
  .tab-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .tab-panel.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .tab-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .tab-text {
    flex: 1;
  }
  
  .tab-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .tab-text p {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }
  
  .feature-list {
    margin-bottom: 32px;
  }
  
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  .feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .tab-image {
    flex: 1;
  }
  
  .tab-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  .platform-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background-color: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--secondary);
    padding: 120px 0;
  }
  
  .testimonial-slider {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
  }
  
  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .testimonial-content {
    padding: 40px;
  }
  
  .quote-icon {
    margin-bottom: 20px;
    color: var(--primary-light);
  }
  
  .testimonial-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 4px;
  }
  
  .author-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  .testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  
  /* Pricing Section */
  .pricing {
    padding: 120px 0;
  }
  
  .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
  }
  
  .toggle-label {
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .save-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: var(--primary);
  }
  
  input:checked + .slider:before {
    transform: translateX(24px);
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .pricing-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 1;
  }
  
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
  }
  
  .card-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  
  .card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
  
  .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
  }
  
  .period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 4px;
  }
  
  .card-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }
  
  .card-features {
    padding: 30px;
  }
  
  .card-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
  }
  
  .card-features ul li svg {
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .card-footer {
    padding: 0 30px 40px;
    text-align: center;
  }
  
  .enterprise-cta {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .enterprise-content h3 {
    margin-bottom: 8px;
  }
  
  .enterprise-content p {
    margin-bottom: 0;
  }
  
  /* Contact Section */
  .contact {
    padding: 120px 0;
    background-color: var(--secondary);
  }
  
  .contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-methods {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    padding: 0 120px;
    justify-content: space-between;
  }
  
  .contact-method {
    display: flex;
    gap: 20px;
    width: 400px;
    justify-content: center;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .method-details h4 {
    margin-bottom: 8px;
  }
  
  .method-details p {
    margin-bottom: 4px;
    color: var(--text-secondary);
  }

  /* --Previous Contact-- */

  .contact-methods-prev {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-method-prev {
    display: flex;
    gap: 20px;
  }
  
  .method-icon-prev {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .method-details-prev h4 {
    margin-bottom: 8px;
  }
  
  .method-details-prev p {
    margin-bottom: 4px;
    color: var(--text-secondary);
  }
  
  .social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
  }

  .social-links-prev {
    display: flex;
    gap: 16px;
    margin-top: 40px;
  }
  
  .social-links-prev a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  
  .social-links-prev a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
  }
  
  .contact-form-container {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  
  .contact-form {
    padding: 40px;
  }
  
  .form-header {
    margin-bottom: 30px;
  }
  
  .form-header h3 {
    margin-bottom: 8px;
  }
  
  .form-header p {
    color: var(--text-secondary);
  }
  
  .form-group {
    margin-bottom: 24px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .checkbox-group input {
    width: auto;
    margin-top: 4px;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .checkbox-group a {
    text-decoration: underline;
  }
  
  /* FAQ Section */
  .faq {
    padding: 120px 0;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  
  .faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
  
  .faq-toggle {
    background: none;
    border: none;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .faq-toggle:hover {
    background-color: var(--primary-light);
  }
  
  .faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 0 24px;
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .faq-cta {
    text-align: center;
  }
  
  .faq-cta p {
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
  
  /* CTA Section */
  .cta {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta-content h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 2.5rem;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  
  .cta .btn-primary {
    background: var(--white);
    color: var(--primary);
  }
  
  .cta .btn-primary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
  }
  
  .cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
  }
  
  .cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .cta-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
  }
  
  /* Footer */
  footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 80px 0 40px;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  
  .footer-logo {
    max-width: 300px;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .footer-logo p {
    color: var(--gray-400);
    margin-bottom: 24px;
  }
  
  .footer-social {
    display: flex;
    gap: 16px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
  }
  
  .footer-column h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.125rem;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
  }
  
  .footer-column ul li a {
    color: var(--gray-400);
    transition: all 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: var(--white);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 0;
  }
  
  .language-selector select {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-family: "Outfit", sans-serif;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    h1 {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 2.25rem;
    }
  
    .hero-content {
      flex-direction: column;
    }
  
    .hero-text {
      text-align: center;
      margin-bottom: 40px;
    }
  
    .hero-cta {
      justify-content: center;
    }

    .hero-form-wrapper{
      justify-content: center;
    }
  
    .hero-stats {
      justify-content: center;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .tab-content {
      flex-direction: column;
    }
  
    .testimonial-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .pricing-cards {
      grid-template-columns: repeat(1, 1fr);
      max-width: 500px;
      margin: 0 auto 60px;
    }
  
    .pricing-card.popular {
      transform: none;
    }
  
    .pricing-card.popular:hover {
      transform: translateY(-10px);
    }
  
    .contact-wrapper {
      flex-direction: column;
    }
  
    .footer-top {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-links {
      flex-wrap: wrap;
      gap: 40px;
    }
    .contact-form-container{
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    section {
      padding: 80px 0;
    }
  
    .main-nav {
      display: none;
    }

    /* .main-nav.active {
      display: flex; 
    } */

    .main-nav ul{
      display: flex;
      flex-direction: column;
    }
  
    .mobile-menu-toggle {
      display: block;
    }
  
    .hero-cta {
      flex-direction: column;
      width: 100%;
    }
  
    .hero-stats {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .tabs-nav {
      flex-direction: column;
      align-items: stretch;
    }
  
    .testimonial-stats {
      grid-template-columns: 1fr;
    }
  
    .enterprise-cta {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
    }

    .hero-form-wrapper .form-group {
      width: 100%;
    }

    .header-buttons{
      display: none;
    }
  }

  @media (max-width: 468px){
    .hero-form-wrapper{
      flex-direction: column;
    }
    .contact-form {
      padding: 20px 16px;
    }
    .hero-text h1{
      font-size: 2.75rem;
    }
    .hero-text p{
      font-size: 1rem;
    }
    .btn-large{
      font-size: 1rem;
    }
    .badge{
      font-size: 0.6rem;
    }
  }
  
  /* Hide Mobile Nav by Default */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 78px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 16px 30px;
  box-shadow: var(--shadow-md);
  z-index: 99;
}

/* Show Mobile Nav when Active */
.mobile-nav.active {
  display: flex;
}

/* Mobile Nav Links */
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav ul li {
  margin-bottom: 12px;
  color: #000;
}

.mobile-nav a {
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
}

/* Mobile Buttons */
.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mobile-buttons .btn-login,
.mobile-buttons .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px;
}


@media (max-width: 768px) {
  .main-nav,
  .header-buttons {
      display: none; 
  }

  .mobile-menu-toggle {
      display: block; 
  }
  .method-icon{
    padding: 0 14px;
  }
}

  /* Modal Background */
  .demo-vid-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.demo-vid-modal-content {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-width: 80%;
    width: 800px;
}

/* Close Button */
.demo-vid-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.demo-vid-close:hover {
    color: red;
}

/* Video Container */
.demo-vid-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Button */
.demo-vid-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.demo-vid-btn:hover {
    background-color: #cc0000;
}