.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /*font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
    font-family: "Barlow", sans-serif;
    line-height: 1.6;
    color: #374151;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Container */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
  }
  
  .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
  }
  
  .desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
  }
  
  .nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .nav-link:hover {
    color: #667eea;
  }
  .nav-link.active{
    color: #667eea;
  }
  
  .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .cta-button:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
  }
  
  .mobile-menu-button {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  @media (min-width: 768px) {
    .mobile-menu-button {
      display: none;
    }
  }
  
  .menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
  }
  
  .mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
  }
  
  @media (min-width: 768px) {
    .mobile-menu {
      display: none !important;
    }
  }
  
  .mobile-menu-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .mobile-nav-link:hover {
    color: #667eea;
  }
  
  .mobile-cta-button {
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #f0e0ff 100%); 
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    position: relative;
    overflow: hidden;
  } 
  .hero-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url(img/grid.svg);*/
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
  }
  
  .blob {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    animation: pulse 4s infinite;
  }
  
  .blob-1 {
    top: 2.5rem;
    left: 2.5rem;
    background: #b6c3ff;
    animation-delay: 0s;
  }
  
  .blob-2 {
    top: 8rem;
    right: 2.5rem;
    background: #e8d2ff;
    animation-delay: 2s;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  .hero-container {
    position: relative;
  }
  
  .hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .badge-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-gradient-text, .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 1024px) {
    .hero-description {
      font-size: 1.5rem;
    }
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-actions {
      flex-direction: row;
      gap: 1.5rem;
    }
  }
  .hero-cta{
    text-decoration: none;
  }
  .hero-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .hero-cta-button:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
  }
  
  .hero-cta-button:hover .button-icon {
    transform: translateX(0.25rem);
  }
  
  .hero-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
  }
  
  .hero-feature-badge .feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #667eea; 
    background: transparent;
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 1024px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  .title-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .section-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 0;
    background: white;
  }
  
  
  .features-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .feature-card:hover {
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem; 
    border-radius: 0.75rem; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;  
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }
  
  .feature-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    display: flex; 
    border-radius: 0;
  } 
  .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    color: #4b5563;
    line-height: 1.6;
  }
  
  /* Products Section */
  .products-section {
    padding: 5rem 0;
    background: #f9fafb;
  }
  
  .products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .publisher-technology-button{
    margin: 0 auto;
    margin-top: 50px;
  }
  
  @media (min-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .product-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
  }
  
  .product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
  }
  
  .product-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
  }
  
  .product-card:hover .product-icon {
    transform: scale(1.1);
  }
  
  .product-icon.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  
  .product-icon.green {
    background: linear-gradient(135deg, #059669, #047857);
  }
  
  .product-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
  }
  
  .product-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
  }
  
  .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .product-description {
    color: #4b5563;
    line-height: 1.6;
  }
  
  .tech-callout {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
  }  
  
  @media (min-width: 1024px) {
    .tech-callout {
      padding: 3rem;
    }
  }
  
  .tech-callout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .tech-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    margin-right: 0.75rem;
  }
  
  .tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
  }
  
  @media (min-width: 1024px) {
    .tech-title {
      font-size: 1.875rem;
    }
  }
  
  .tech-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    /*max-width: 48rem;*/
    margin-left: auto;
    margin-right: auto;
  }
  
  .tech-stats {
    display: grid;
    gap: 1.5rem;
    /*max-width: 32rem;*/
    margin: 0 auto;
  } 
  .tech-stat-icon svg{
    width: 100%;
    height: 100px;
    fill: white;
    stroke: transparent;
  }
  
  @media (min-width: 768px) {
    .tech-stats {
      grid-template-columns: repeat(4, 1fr);
    }
    .tech-stats.smarter-monetization  {
      grid-template-columns: repeat(3, 1fr);
    }
    .tech-stats.inventory-creation  {
      grid-template-columns: repeat(2, 1fr);
    } 
  }
  
  .tech-stat {
    text-align: center;
  }
  
  .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: #dbeafe;
  }
  
  /* Results Section */
  .results-section {
    padding: 5rem 0;
    background: white;
  }
  
  .results-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  @media (min-width: 768px) {
    .results-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .result-card {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: all 0.3s;
  }
  
  .result-card:hover {
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  }
  
  .result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
  }
  
  .result-card:hover .result-icon {
    transform: scale(1.1);
  }
  
  .result-icon .icon {
    width: 2rem;
    height: 2rem;
  }
  
  .result-icon.green .icon {
    color: #059669;
  }
  
  .result-icon.blue .icon {
    color: #2563eb;
  }
  
  .result-icon.purple .icon {
    color: #7c3aed;
  }
  
  .result-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  @media (min-width: 1024px) {
    .result-value {
      font-size: 3rem;
    }
  }
  
  .result-value.green {
    color: #059669;
  }
  
  .result-value.blue {
    color: #2563eb;
  }
  
  .result-value.purple {
    color: #7c3aed;
  }
  
  .result-label {
    color: #4b5563;
    font-weight: 500;
  }
  
  .results-callout {
    text-align: center;
    background: linear-gradient(90deg, #f9fafb, #dbeafe);
    border-radius: 1.5rem;
    padding: 2rem;
  }
  
  @media (min-width: 1024px) {
    .results-callout {
      padding: 3rem;
    }
  }
  
  .callout-text {
    font-size: 1.25rem;
    color: #374151;
    font-weight: 500;
  }
  
  /* Why Section */
  .why-section {
    padding: 5rem 0;
    background: #f9fafb;
  }
  
  .why-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .why-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .why-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
  }
  
  .why-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  }
  
  .why-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #059669);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .why-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
  }
  
  .why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .why-description {
    color: #4b5563;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #059669 100%);
    position: relative;
    overflow: hidden;
  }
  
  .contact-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
  }
  
  .contact-blob {
    position: absolute;
    width: 20rem;
    height: 20rem;
    background: white;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
  }
  
  .contact-blob-1 {
    top: -10rem;
    left: -10rem;
  }
  
  .contact-blob-2 {
    bottom: -10rem;
    right: -10rem;
  }
  
  .contact-container {
    text-align: center;
    position: relative;
    max-width: 64rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 1024px) {
    .contact-title {
      font-size: 3rem;
    }
  }
  
  .contact-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .contact-actions {
      flex-direction: row;
      gap: 1.5rem;
    }
  }
  
  .contact-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .contact-cta-button:hover {
    background: #f9fafb;
    transform: scale(1.05);
  }
  
  .contact-cta-button:hover .button-icon {
    transform: translateX(0.25rem);
  }
  
  .contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dbeafe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .contact-email:hover {
    color: white;
  }
  
  .email-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  /* Footer */
  .footer {
    padding: 3rem 0;
    background: #111827;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .privacy-policy-btn{
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.7;
    padding-left: 5px;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      gap: 0;
    }
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-logo-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
  }
  
  .footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
  }
  
  .footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
  }

  /* CTA Section */

  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
  .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="150" fill="url(%23grad)"/><circle cx="400" cy="700" r="120" fill="url(%23grad)"/></svg>') center/cover;
    animation: float 15s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Technology Section */
.technology-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tech-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-item.special {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.feature-item.special .check-icon {
    color: white;
}
.feature-item.special span:last-child{
  color: white;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-dashboard {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); 
}

.dashboard-screen {
    width: 500px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dashboard-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screen-dots .dot.red {
    background: #ff5f57;
}

.screen-dots .dot.yellow {
    background: #ffbd2e;
}

.screen-dots .dot.green {
    background: #28ca42;
}

.screen-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.screen-content {
    position: relative;
    z-index: 2;
}

.revenue-chart {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    animation: growBar 2s ease-out;
}

@keyframes growBar {
    from { height: 0; }
    to { height: var(--height); }
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.metric-number {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive for Technology Section */
@media (max-width: 768px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-text {
        order: 2;
        text-align: center;
    }

    .tech-visual {
        order: 1;
    }

    .tech-dashboard {
        transform: none;
        scale: 0.8;
    }

    .dashboard-screen {
        width: 100%;
        max-width: 400px;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .tech-text h2 {
        font-size: 2.2rem;
    }
}