:root {
    --accent: #1677ff;
    --muted: #4e4f53;
    --dark: #0f172a;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #fff;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
  }
  
  .az-hero {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    color: #000;
  }
  
  .az-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
  }
  
  /* LEFT */
  .az-title {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
  }
  .az-title .az-accent {
    color: var(--accent);
  }
  .az-sub {
    font-size: 18px;
    color: var(--muted);
    margin: 30px 0;
    max-width: 620px;
  }
  .az-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: var(--muted);
  }
  
  /* RIGHT */
  .az-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15,23,42,0.05);
  }
  .az-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
  }
  .az-card .az-small {
    font-size: 14px;
    color: var(--muted);
    margin: 6px 0 18px;
    text-align: center;
  }
  .az-card form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .az-card input {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,0.1);
    font-size: 15px;
    margin-bottom: 10px;
  }
  .az-btn {
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
  }
  .az-btn:hover {   
    background: #025ec2;
  }
  .az-legal {
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    gap: 10px;
  }
  
  /* STATS */
  .az-stats-wrap {
    grid-column: 1 / -1;
    margin-top: 50px;
  }
  .az-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .az-stat {
    text-align: center;
  }
  .az-num {
    color: var(--accent);
    font-size: 38px;
    font-weight: 800;
  }
  .az-label {
    font-weight: 700;
    margin-top: 6px;
    font-size: 20px;
  }
  .az-desc {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .az-container {
      grid-template-columns: 1fr 360px;
    }
    .az-title {
      font-size: 42px;
    }
  }
  @media (max-width: 880px) {
    .az-container {
      grid-template-columns: 1fr;
    }
    .az-right {
      order: 2;
    }
    .az-stats-wrap {
      order: 3;
    }
    .az-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .az-title {
      font-size: 34px;
    }
  }
  @media (max-width: 500px) {
    .az-hero {
      padding: 40px 16px;
    }
    .az-title {
      font-size: 28px;
    }
    .az-stats {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .az-card {
      padding: 20px;
    }
  }
  

/* //   webinar challenge */
.page-container {
    width: 100%;
    height: 100%;
}

/* Main section */
.webinar-section {
    background-color: #0B0E1F;
    color: #ffffff;
    padding: 3rem 1rem;
}

/* Header */
.header-challenge {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 100%;
    margin: 0 auto;
}

/* Cards container */
.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Individual card */
.card {
    padding: 1.5rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Icon */
.icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
}

.icon-svg {
    width: 100%;
    height: 100%;
}

/* Card title */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Card description */
.card-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Card borders for mobile */
.card-2,
.card-3 {
    border-top: 1px solid #ffffff;
}

/* Tablet styles */
@media (min-width: 768px) {
    .webinar-section {
        padding: 3rem 1rem;
    }
    
    .header {
        margin-bottom: 4rem;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.875rem;
    }
    
    .card-description {
        font-size: 1.25rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .main-title {
        font-size: 3rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .card {
        padding: 2.75rem;
    }
    
    .card-title {
        font-size: 1.95rem;
    }
    
    .card-description {
        font-size:1.4rem;
    }
    
    /* Desktop borders */
    .card-2,
    .card-3 {
        border-top: none;
    }
    
    .card-1,
    .card-2 {
        border-right: 1px solid #ffffff;
    }
}

/* Large desktop styles */
@media (min-width: 1280px) {
    .main-title {
        font-size: 3rem;
    }
}

/* Extra responsive adjustments */
@media (max-width: 480px) {
    .webinar-section {
        padding: 2rem 1rem;
    }
    
    .header {
        margin-bottom: 3rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
}

/* // logo section */
/* Trust section */
.trust-section {
    background-color: #171e24;
    color: white;
    height: 85.333px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Trust container */
.trust-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 28px 94.667px;
    gap: 40px;
}

/* Trust text */
.trust-text {
    flex-shrink: 0;
    width: 632px;
    display: flex;
    align-items: center;
}

.trust-text p {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: white;
    margin: 0;
}

/* Divider */
.divider {
    width: 1.333px;
    height: 61.333px;
    background-color: rgba(255, 255, 255, 0.34);
    flex-shrink: 0;
}

/* Logo carousel */
.logo-carousel {
    flex: 1;
    height: 61.333px;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
    animation: scroll-logos 60s linear infinite;
    width: max-content;
}

/* Logo items */
.logo-item {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo styles */
.logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Keyframe animation for scrolling */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .trust-container {
        padding: 20px 40px;
        gap: 20px;
    }
    
    .trust-text {
        width: 400px;
    }
    
    .trust-text p {
        font-size: 20px;
    }
    
    .divider {
        height: 40px;
    }
    
    .logo-carousel {
        height: 40px;
    }
    
    .logo-track {
        gap: 20px;
    }
    
    .logo {
        max-height: 40px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .trust-section {
        height: auto;
        min-height: 85.333px;
    }
    
    .trust-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }
    
    .trust-text {
        width: 100%;
    }
    
    .trust-text p {
        font-size: 18px;
    }
    
    .divider {
        width: 100%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.34);
    }
    
    .logo-carousel {
        width: 100%;
        height: 50px;
    }
    
    .logo-track {
        gap: 15px;
    }
    
    .logo {
        max-height: 35px;
        transform: scale(0.8);
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .trust-container {
        padding: 15px;
    }
    
    .trust-text p {
        font-size: 16px;
    }
    
    .logo-track {
        gap: 12px;
    }
    
    .logo {
        max-height: 30px;
        transform: scale(0.7);
    }
}


/* // Replace section */
.replace-wrap{
    max-width:var(--max-w);
    margin:40px auto;
    padding:24px;
    color: #000 !important;
  }
  
  /* Header */
  .replace-header{
    text-align:center;
    margin-bottom:48px;
    padding:0 12px;
  }
  .replace-header h2{
    font-weight:700;
  }
  .replace-sub{
    margin:0 auto;
    color:var(--muted);
    font-size:14px;
    max-width:800px;
  }
  
  /* two-column layout */
  .replace-grid{
    display:grid;
    grid-template-columns: 1fr 470px;
    gap:var(--gap);
    align-items:start;
  }
  
  /* MEDIA (left) */
  .replace-media{
    margin:0;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(180deg,#fff,#fbfbfd);
    border:1px solid var(--accent-line);
    max-width: 690px;
  }
  .replace-img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }
  
  /* FEATURES (right) */
  .replace-features{
    display:flex;
    align-items:flex-start;
    justify-content:center;
  }
  .replace-list{
    list-style:none;
    margin:0;
    padding:8px;
    width:100%;
  }
  .replace-item{
    background: var(--box-bg);
    border: 1px solid var(--item-border);
    border-radius:12px;
    padding:14px 16px;
    margin-bottom:12px;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 6px 18px rgba(12,18,32,0.03);
    border: 1px solid #F0D6FF;
    min-height: 107px;
    display: flex;
    align-items: center;
  }
  .replace-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11,17,32,0.08);
  }
  .replace-item-inner{
    display:flex;
    flex-direction:column;
  }
  .replace-item-title{
    font-weight:700;
    font-size:18px;
    margin-bottom:6px;
    color:var(--text);
  }
  .replace-item-desc{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.4;
  }
  
  /* Responsive rules */
  @media (max-width:1100px){
    .replace-grid{
      grid-template-columns: 1fr 360px;
    }
    .replace-h1{ font-size:26px }
  }
  
  @media (max-width:860px){
    .replace-grid{
      grid-template-columns: 1fr;
    }
    .replace-media{ order:1 }
    .replace-features{ order:2; margin-top:18px }
    .replace-wrap{ padding:16px; margin:24px auto; }
    .replace-h1{ font-size:22px; text-align:center; padding:0 6px; }
    .replace-sub{ padding:0 8px; font-size:13px }
    .replace-item{ padding:12px; }
  }
  
  @media (max-width:480px){
    .replace-h1{ font-size:20px; }
    .replace-grid{ gap:18px; }
    .replace-item{ padding:12px; border-radius:10px; }
    .replace-img{ border-radius:10px; }
  }




/* // Scale section */

.scale-container {
    background: #0B0E1F;
    padding: 70px 0;
}

/* // Stream section */
.stream-main-container {
    position: relative;
    width: 100%;
    min-height: 519px;
    overflow: hidden;
    margin-bottom: 70px;
}

/* Background Container */
.stream-background-container {
    position: absolute;
    background-color: #020202;
    height: 519px;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Background Circle */
.stream-background-circle {
    position: absolute;
    width: 539px;
    height: 539px;
    right: -200px;
    top: -296px;
    z-index: 2;
}

.stream-circle-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Pattern Dots */
.stream-pattern-dot {
    position: absolute;
    height: 305px;
    left: -225px;
    top: 242px;
    width: 332px;
    z-index: 3;
}

.stream-pattern-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Content Wrapper */
.stream-content-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 4;
}

/* Content Border */
.stream-content-border {
    border: 9px solid #22b060;
    border-radius: 83px;
    padding: 70px 0;
    background: transparent;
}

/* Content Inner */
.stream-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    width: 100%;
}

/* Logo Styles */
.stream-logo-left {
    width: 117px;
    height: 117px;
    position: relative;
    left: -60px;
}
.stream-logo-right {
    width: 117px;
    height: 117px;
    flex-shrink: 0;
    position: relative;
    right: -60px;
}

.stream-logo-svg,
.stream-youtube-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Main Content */
.stream-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    flex: 1;
    max-width: 958px;
}

/* Text Content */
.stream-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 100%;
}

.stream-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 49px;
    text-align: center;
    color: white;
    margin: 0;
}

/* CTA Button */
.stream-cta-button {
    background: #007BFF;
    border: 1px solid #007BFF;
    border-radius: 9px;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: #007BFF;
}

.stream-cta-button:hover {
    background-color: #025ec2;
    transform: translateY(-2px);
}

.stream-cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stream-content-wrapper {
        width: 95%;
    }
    
    .stream-content-border {
        padding: 50px 30px;
    }
    
    .stream-content-inner {
        gap: 30px;
    }
    
    .stream-title {
        font-size: 30px;
        line-height: 42px;
    }
    
    .stream-logo-left,
    .stream-logo-right {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .stream-main-container {
        height: fit-content;
        padding: 20px 0;
    }
    
    .stream-background-container {
        height: 100%;
        top: 0;
        transform: none;
    }
    
    .stream-content-border {
        border-radius: 40px;
        border-width: 6px;
        padding: 40px 20px;
    }
    
    .stream-content-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .stream-main-content {
        gap: 30px;
    }
    
    .stream-title {
        font-size: 24px;
        line-height: 34px;
    }
    
    .stream-cta-button {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .stream-logo-left,
    .stream-logo-right {
        width: 80px;
        height: 80px;
        position: relative;
        left: auto;
        right: auto;
    }
    
    .stream-pattern-dot {
        left: -150px;
        width: 250px;
        height: 230px;
    }
    
    .stream-background-circle {
        right: -300px;
        top: -200px;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .stream-content-border {
        border-radius: 30px;
        border-width: 4px;
        padding: 30px 15px;
    }
    
    .stream-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .stream-cta-button {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .stream-logo-left,
    .stream-logo-right {
        width: 60px;
        height: 60px;
    }
    
    .stream-main-content {
        gap: 25px;
    }
    
    .stream-content-inner {
        gap: 20px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .stream-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .stream-cta-button {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* High DPI / Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .stream-logo-svg,
    .stream-youtube-svg,
    .stream-pattern-svg,
    .stream-circle-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .stream-cta-button {
        transition: none;
    }
    
    .stream-cta-button:hover {
        transform: none;
    }
    
    .stream-cta-button:active {
        transform: none;
    }
}

/* Focus states for accessibility */
.stream-cta-button:focus {
    outline: 2px solid #22b060;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .stream-main-container {
        height: auto;
        background: white;
    }
    
    .stream-background-container {
        display: none;
    }
    
    .stream-background-circle,
    .stream-pattern-dot {
        display: none;
    }
    
    .stream-title {
        color: black;
    }
    
    .stream-cta-button {
        border-color: black;
        color: black;
    }
}

/* // sell section */
.sell-section {
    color: #000 !important;
}
.main-heading-sell h2 {
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    font-size: calc(26px + (48 - 26) * (100vw - 400px) / (1920 - 400));
    margin-top: 25px;
}
.main-heading-sell h2 span {
    font-size: 20px;
    font-weight: 500;
    color: #797878;
    line-height: 2;
}
.sell-info {
    display: flex;
    margin-top: 70px;
}
.sell-left {
    padding-top: 50px;
}
.sell-right img {
    max-width: 100%;
}
.sell-left img + h2 + img {
    max-width: 500px;
    margin-top: 15px;
}
.sell-left h2 {
    font-weight: 600;
    font-size: calc(26px + (48 - 26) * (100vw - 400px) / (1920 - 400));
}
.sell-left .client-logo {
    max-width: 500px;
    width: 100%;
    max-width: 500px !important;
}

@media (max-width: 1140px) {
    .sell-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
    }
}

/* // footer */
.adfooter-main-container {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    margin-top: 70px;
}

/* Background Container */
.adfooter-background-container {
    position: absolute;
    background-color: #000000;
    height: 560px;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Pattern Dots */
.adfooter-pattern-dot {
    position: absolute;
    height: 305px;
    width: 332px;
    right: -200px;
    top: -44px;
    z-index: 2;
}

.adfooter-pattern-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Content Wrapper */
.adfooter-content-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1493px;
    z-index: 3;
    padding: 0 20px;
}

/* Content Container */
.adfooter-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* Title Section */
.adfooter-title-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.adfooter-title-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-main-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 954px;
    margin: 0;
}

/* Subtitle Section */
.adfooter-subtitle-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.adfooter-subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: normal;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1283px;
    margin: 0;
}

/* Buttons Section */
.adfooter-buttons-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.adfooter-buttons-container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.adfooter-btn-primary {
    background: #007BFF;
    border: 1px solid #007BFF;
    border-radius: 10.667px;
    padding: 15.535px 22.193px;
    height: 69px;
    width: 294px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fdfdfd;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adfooter-btn-primary:hover {
    background-color: white;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.adfooter-btn-primary:active {
    transform: translateY(0);
}

.adfooter-btn-secondary {
    background: white;
    border: none;
    border-radius: 10.667px;
    padding: 15.535px 22.193px;
    height: 69px;
    width: 294px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adfooter-btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.adfooter-btn-secondary:active {
    transform: translateY(0);
}

/* Disclaimer Section */
.adfooter-disclaimer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-disclaimer-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 64px;
    color: white;
    text-align: center;
    white-space: pre;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .adfooter-content-wrapper {
        max-width: 95%;
    }
    
    .adfooter-main-title {
        font-size: 42px;
        line-height: 56px;
        max-width: 800px;
    }
    
    .adfooter-subtitle {
        font-size: 28px;
        max-width: 1000px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 20px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .adfooter-main-container {
        height: auto;
        padding: 40px 0;
    }
    
    .adfooter-background-container {
        height: 100vh;
        top: 0;
        transform: none;
    }
    
    .adfooter-content-container {
        gap: 40px;
    }
    
    .adfooter-main-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .adfooter-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    
    .adfooter-buttons-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 280px;
        font-size: 18px;
        height: 60px;
        padding: 12px 20px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 16px;
        line-height: 24px;
        white-space: normal;
    }
    
    .adfooter-pattern-dot {
        right: -250px;
        top: -100px;
        width: 280px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .adfooter-content-wrapper {
        padding: 0 15px;
    }
    
    .adfooter-content-container {
        gap: 30px;
    }
    
    .adfooter-main-title {
        font-size: 26px;
        line-height: 34px;
    }
    
    .adfooter-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
        height: 55px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 360px) {
    .adfooter-main-title {
        font-size: 22px;
        line-height: 30px;
    }
    
    .adfooter-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        font-size: 15px;
        height: 50px;
        padding: 10px 16px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* High DPI / Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .adfooter-pattern-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .adfooter-main-title,
    .adfooter-subtitle,
    .adfooter-disclaimer-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        transition: none;
    }
    
    .adfooter-btn-primary:hover,
    .adfooter-btn-secondary:hover {
        transform: none;
    }
    
    .adfooter-btn-primary:active,
    .adfooter-btn-secondary:active {
        transform: none;
    }
}

/* Focus states for accessibility */
.adfooter-btn-primary:focus,
.adfooter-btn-secondary:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.adfooter-btn-secondary:focus {
    outline-color: #000000;
}

/* Print styles */
@media print {
    .adfooter-main-container {
        height: auto;
        min-height: auto;
        background: white;
    }
    
    .adfooter-background-container {
        display: none;
    }
    
    .adfooter-pattern-dot {
        display: none;
    }
    
    .adfooter-main-title,
    .adfooter-subtitle,
    .adfooter-disclaimer-text {
        color: black;
    }
    
    .adfooter-btn-primary {
        border-color: black;
        color: black;
    }
    
    .adfooter-btn-secondary {
        border: 1px solid black;
    }
}

/* Large screen optimizations */
@media (min-width: 1600px) {
    .adfooter-content-container {
        gap: 60px;
    }
    
    .adfooter-main-title {
        font-size: 52px;
        line-height: 68px;
    }
    
    .adfooter-subtitle {
        font-size: 36px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 320px;
        height: 75px;
        font-size: 22px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 26px;
        line-height: 68px;
    }
}

/* Text rendering optimization */
.adfooter-main-title,
.adfooter-subtitle,
.adfooter-disclaimer-text {
    text-rendering: optimizeLegibility;.adfooter-main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 735px;
    overflow: hidden;
}

/* Background Container */
.adfooter-background-container {
    position: absolute;
    background-color: #000000;
    height: 735px;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Pattern Dots */
.adfooter-pattern-dot {
    position: absolute;
    height: 305px;
    width: 332px;
    right: -200px;
    top: -44px;
    z-index: 2;
}

.adfooter-pattern-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Content Wrapper */
.adfooter-content-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1493px;
    z-index: 3;
    padding: 0 20px;
}

/* Content Container */
.adfooter-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* Title Section */
.adfooter-title-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.adfooter-title-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-main-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 954px;
    margin: 0;
}

/* Subtitle Section */
.adfooter-subtitle-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.adfooter-subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: normal;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1283px;
    margin: 0;
}

/* Buttons Section */
.adfooter-buttons-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.adfooter-buttons-container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.adfooter-btn-primary {
    background: transparent;
    border: 1px solid white;
    border-radius: 10.667px;
    padding: 15.535px 22.193px;
    height: 69px;
    width: 294px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fdfdfd;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adfooter-btn-primary:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.adfooter-btn-primary:active {
    transform: translateY(0);
}

.adfooter-btn-secondary {
    background: white;
    border: none;
    border-radius: 10.667px;
    padding: 15.535px 22.193px;
    height: 69px;
    width: 294px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adfooter-btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.adfooter-btn-secondary:active {
    transform: translateY(0);
}

/* Disclaimer Section */
.adfooter-disclaimer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.adfooter-disclaimer-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 64px;
    color: white;
    text-align: center;
    white-space: pre;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .adfooter-content-wrapper {
        max-width: 95%;
    }
    
    .adfooter-main-title {
        font-size: 42px;
        line-height: 56px;
        max-width: 800px;
    }
    
    .adfooter-subtitle {
        font-size: 28px;
        max-width: 1000px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 20px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .adfooter-main-container {
        min-height: 100vh;
        height: auto;
        padding: 40px 0;
    }
    
    .adfooter-background-container {
        height: 100vh;
        top: 0;
        transform: none;
    }
    
    .adfooter-content-container {
        gap: 40px;
    }
    
    .adfooter-main-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .adfooter-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    
    .adfooter-buttons-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 280px;
        font-size: 18px;
        height: 60px;
        padding: 12px 20px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 16px;
        line-height: 24px;
        white-space: normal;
    }
    
    .adfooter-pattern-dot {
        right: -250px;
        top: -100px;
        width: 280px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .adfooter-content-wrapper {
        padding: 0 15px;
    }
    
    .adfooter-content-container {
        gap: 30px;
    }
    
    .adfooter-main-title {
        font-size: 26px;
        line-height: 34px;
    }
    
    .adfooter-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
        height: 55px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 360px) {
    .adfooter-main-title {
        font-size: 22px;
        line-height: 30px;
    }
    
    .adfooter-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        font-size: 15px;
        height: 50px;
        padding: 10px 16px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* High DPI / Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .adfooter-pattern-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .adfooter-main-title,
    .adfooter-subtitle,
    .adfooter-disclaimer-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        transition: none;
    }
    
    .adfooter-btn-primary:hover,
    .adfooter-btn-secondary:hover {
        transform: none;
    }
    
    .adfooter-btn-primary:active,
    .adfooter-btn-secondary:active {
        transform: none;
    }
}

/* Focus states for accessibility */
.adfooter-btn-primary:focus,
.adfooter-btn-secondary:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.adfooter-btn-secondary:focus {
    outline-color: #000000;
}

/* Print styles */
@media print {
    .adfooter-main-container {
        height: auto;
        min-height: auto;
        background: white;
    }
    
    .adfooter-background-container {
        display: none;
    }
    
    .adfooter-pattern-dot {
        display: none;
    }
    
    .adfooter-main-title,
    .adfooter-subtitle,
    .adfooter-disclaimer-text {
        color: black;
    }
    
    .adfooter-btn-primary {
        border-color: black;
        color: black;
    }
    
    .adfooter-btn-secondary {
        border: 1px solid black;
    }
}

/* Large screen optimizations */
@media (min-width: 1600px) {
    .adfooter-content-container {
        gap: 60px;
    }
    
    .adfooter-main-title {
        font-size: 52px;
        line-height: 68px;
    }
    
    .adfooter-subtitle {
        font-size: 36px;
    }
    
    .adfooter-btn-primary,
    .adfooter-btn-secondary {
        width: 320px;
        height: 75px;
        font-size: 22px;
    }
    
    .adfooter-disclaimer-text {
        font-size: 26px;
        line-height: 68px;
    }
}

/* Text rendering optimization */
.adfooter-main-title,
.adfooter-subtitle,
.adfooter-disclaimer-text {
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
}

/* Button interaction improvements */
.adfooter-btn-primary,
.adfooter-btn-secondary {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .adfooter-background-container {
        background-color: #000000;
    }
}
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
}

/* Button interaction improvements */
.adfooter-btn-primary,
.adfooter-btn-secondary {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.adfooter-btn-primary {
    background: #007BFF;
}
.adfooter-btn-primary:hover {
    background: #025ec2;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .adfooter-background-container {
        background-color: #000000;
    }
}


/* // sacale css */
.content-wrapper {
    width: 100%;
    /* // max-width: 1587px; */
    display: flex;
    flex-direction: column;
    gap: 44px;
    padding: 0 20px;
}

/* Header section */
.header-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.main-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 50.894px;
    line-height: 66.162px;
    text-align: center;
    color: white;
    width: 100%;
    margin: 0;
}

/* Features container */
.features-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Feature section */
.feature-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 102px;
    margin-bottom: 0;
}

.feature-section.reverse {
    gap: 102px;
}

/* Feature content */
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 732px;
    padding: 28px 0;
    border-radius: 44px;
    flex: 1;
}

.feature-section.reverse .feature-content {
    width: 763px;
    padding: 28px 46px 28px 0;
}

/* Feature items */
.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.feature-section.reverse .feature-item {
    width: 590px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.feature-icon svg {
    width: auto;
    height: auto;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.5;
    color: white;
    margin: 0;
    width: min-content;
    min-width: 100%;
}

.feature-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: white;
    opacity: 0.7;
    margin: 0;
    width: min-content;
    min-width: 100%;
}

/* Feature image container */
.feature-image-container {
    position: relative;
    width: 743.532px;
    height: 542.577px;
    flex-shrink: 0;
    flex: 1;
}

.feature-section.reverse .feature-image-container {
    width: auto;
    height: auto;
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    flex: 1;
}

.feature-image {
    position: absolute;
    top: 42.92px;
    left: 0.27px;
    width: 100%;
    height: 441px;
    border-radius: 41px;
    overflow: hidden;
}

.feature-section.reverse .feature-image {
    position: relative;
    grid-area: 1 / 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 483px;
    border-radius: 22px;
    margin: 0;
}

.feature-image img {
    position: relative;
    /* // width: 167.36%;
    // height: 185.4%;
    // top: -85.4%;
    // left: -67.36%;
    // max-width: none; */
    object-fit: cover;
    width: 100%;
}

.feature-section.reverse .feature-image img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    height: inherit !important;
}

/* Tooltip callouts */
.tooltip-callout {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13.564px;
    border-radius: 16.277px;
    border: 1.356px solid #b0b0b0;
    box-shadow: 18px 11px 32px -4px rgba(19, 25, 39, 0.48);
    gap: 13.564px;
    background: linear-gradient(260.04deg, #D8FCA2 5.97%, #EAFFCB 96.46%);

}

.tooltip-1 {
    top: 307.92px;
    left: -19.73px;
    width: 392px;
    height: 154.63px;
}

.tooltip-2 {
    grid-area: 1 / 1;
    margin-top: 184px;
    margin-left: 255px;
    width: 217px;
    height: 83px;
}

.tooltip-3 {
    grid-area: 1 / 1;
    margin-top: 283.919px;
    margin-left: 260px;
    width: 259px;
    height: 114px;
}

.tooltip-callout p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #2d2727;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tooltip-1 p {
    font-size: 21.702px;
    line-height: 27.128px;
    width: 330px;
}

.tooltip-2 p {
    font-size: 14px;
    line-height: 18px;
    width: 189px;
}

.tooltip-3 p {
    font-size: 16px;
    line-height: 20px;
    width: 204px;
}

/* Responsive design */
@media (max-width: 1600px) {
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .feature-section {
        gap: 60px;
    }
    
    .feature-section.reverse {
        gap: 40px;
    }
    
    .feature-content {
        width: 600px;
        flex: 1;
    }
    
    .feature-section.reverse .feature-content {
        width: 50%;
        flex: 1;
    }
    
    .feature-image-container {
        width: 600px;
        height: 450px;
        flex: 1;
    }
    
    .feature-image {
        width: 550px;
        height: 360px;
    }
    
    .feature-section.reverse .feature-image {
        width: 100%;
        height: 390px;
    }
}

@media (max-width: 1200px) {
    .main-heading {
        font-size: 42px;
        line-height: 54px;
    }
    
    .feature-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-section.reverse {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .feature-content {
        width: 100%;
        max-width: 700px;
        padding: 20px;
    }
    
    .feature-section.reverse .feature-content {
        width: 100%;
        max-width: 700px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .feature-section.reverse .feature-item {
        width: 100%;
    }
    
    .feature-image-container {
        width: 100%;
        max-width: 600px;
        height: 400px;
        margin: 0 auto;
    }
    
    .feature-image {
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .feature-section.reverse .feature-image {
        width: 100%;
        height: 100%;
    }
    
    .feature-image img {
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    
    .feature-section.reverse .feature-image img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    /* Adjust tooltips for mobile */
    .tooltip-callout {
        position: relative;
        margin: 20px auto;
        max-width: 300px;
    }
    
    .tooltip-1,
    .tooltip-2,
    .tooltip-3 {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto;
        grid-area: auto;
        width: auto;
        max-width: 300px;
        height: auto;
    }
    .tooltip-1{
        top: -70px;
    }
    .tooltip-2{
        top: 70%;
    }
    .tooltip-3{
        top: 50%;
    }
    .feature-section.reverse .feature-image-container {
        width: 100%;
        margin-top: 40px;
        grid-template-columns: auto;
    }
    .feature-section.reverse .feature-image {
        position: relative;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 40px 0;
        gap: 40px;
    }
    
    .content-wrapper {
        padding: 0 16px;
        gap: 32px;
    }
    
    .main-heading {
        font-size: 36px;
        line-height: 46px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 18px;
    }
    
    .feature-content {
        gap: 32px;
        padding: 0;
    }
    
    .feature-image-container {
        height: 300px;
    }
    
    .tooltip-callout p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .feature-image-container {
        height: 250px;
        max-height: 280px;
    }
}

.industry-webinar-section .industry-features li span.font-bold {
    font-weight: 900;
    display: flex;
    flex-direction: column;
    font-size: 24px;
}
.industry-webinar-section .industry-features li span.font-bold .sub-text {
    font-weight: normal;
}

.industry-webinar-section .adds-feature .industry-features li {
    align-items: flex-start;
    margin-bottom: 20px;
}
.industry-webinar-section .adds-feature .industry-features li svg {
    position: relative;
    top: 10px;
}

/* // testimonial */
.testimonials-container {
    display: flex;
    gap: 41px;
    align-items: flex-start;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    margin-top: 40px;
}

/* Testimonial card */
.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    height: 474px;
    border-radius: 21.511px;
    padding: 32.266px 37.644px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    backdrop-filter: blur(8.066px);
    -webkit-backdrop-filter: blur(8.066px);
}

/* Border styles */
.simple-border {
    background: black;
    border: 1px solid #dee0ed;
}

.gradient-border {
    background: 
        radial-gradient(ellipse 23.156px 62.568px at 263.16px -165.9px, rgba(120, 123, 255, 0.06) 0%, rgba(120, 123, 255, 0) 100%),
        linear-gradient(rgba(255, 255, 255, 0) 54.17%, rgba(255, 255, 255, 0.04) 100%),
        linear-gradient(90deg, rgb(5, 5, 5) 0%, rgb(5, 5, 5) 100%);
    border: 1px solid #adadad;
}

/* Video container */
.video-container {
    position: relative;
    width: 334.57px;
    height: 175.315px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.video-wrapper img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: auto;
    max-width: none;
    object-fit: cover;
}

/* Specific positioning for different cards */
/* .testimonial-card:nth-child(2) .video-wrapper img {
    width: 149.86%;
    height: 216.27%;
    top: -91.26%;
    left: -24.51%;
}

.testimonial-card:nth-child(3) .video-wrapper img {
    width: 137.55%;
    height: 147.78%;
    top: -15.37%;
    left: -18.84%;
}

.testimonial-card:nth-child(4) .video-wrapper img {
    width: 150.35%;
    height: 161.44%;
    top: -7.42%;
    left: -37.98%;
}

.testimonial-card:nth-child(5) .video-wrapper img {
    width: 112.08%;
    height: 122.04%;
    top: -3.42%;
    left: -4.18%;
} */

/* Play button overlay */
.play-button {
    position: absolute;
    top: 35.77%;
    left: 43.3%;
    transform: translate(-50%, -50%);
    width: 47px;
    height: 47px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Testimonial content */
.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    width: 100%;
}

.testimonial-card:nth-child(3) .testimonial-content,
.testimonial-card:nth-child(4) .testimonial-content,
.testimonial-card:nth-child(5) .testimonial-content {
    gap: 28px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    margin: 0;
    flex: 1;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

/* Customer info */
.customer-info {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.avatar-container {
    width: 80.665px;
    height: 59.154px;
    padding-right: 21.511px;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.avatar {
    width: 59.154px;
    height: 59.154px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* Specific avatar positioning */
/* .testimonial-card:nth-child(1) .avatar img {
    // width: 169.21%;
    // height: 123.5%;
    // top: 0.19%;
    // left: -36.35%;
}

.testimonial-card:nth-child(2) .avatar img {
    // width: 148.78%;
    // height: 123.35%;
    // top: -5.21%;
    // left: -27.33%;
}

.testimonial-card:nth-child(3) .avatar img {
    // width: 203.72%;
    // height: 114.97%;
    // top: -4.85%;
    // left: -56.41%;
}

.testimonial-card:nth-child(4) .avatar img {
    // width: 135.24%;
    // height: 135.24%;
    // top: -11.7%;
    // left: -13.05%;
}

.testimonial-card:nth-child(5) .avatar img {
    // width: 314.42%;
    // height: 177.56%;
    // top: -21.23%;
    // left: -88.5%;
} */

.customer-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.customer-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.customer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: white;
    margin: 0;
    white-space: nowrap;
}

/* Specific adjustments for different cards */
.testimonial-card:nth-child(2) .customer-name,
.testimonial-card:nth-child(4) .customer-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}

.testimonial-card:nth-child(2) .customer-title,
.testimonial-card:nth-child(4) .customer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.testimonial-card:nth-child(5) .customer-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.testimonial-card:nth-child(5) .customer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.wm-card .ew-intro-video {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}
.wm-card .ew-intro-video iframe {
    width: 100%;
    height: 100%;
}

/* Responsive design */
@media (max-width: 1600px) {
    .testimonials-container {
        gap: 30px;
    }
    
    .testimonial-card {
        width: 350px;
        height: 470px;
    }
    
    .video-container {
        width: 280px;
        height: 150px;
    }
}

@media (max-width: 1200px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 600px;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 400px;
    }
    
    .video-container {
        width: 100%;
        max-width: 400px;
        height: 200px;
        margin: 0 auto;
    }
    
    .video-wrapper img {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        object-fit: cover;
    }
    
    .avatar img {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: min-content;
        padding: 24px;
    }
    
    .video-container {
        width: 100%;
        height: 180px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .customer-name {
        font-size: 15px;
        line-height: 20px;
    }
    
    .customer-title {
        font-size: 13px;
    }
    
    .avatar-container {
        width: 70px;
        padding-right: 16px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
        gap: 16px;
        min-width: 300px;
    }
    
    .video-container {
        height: 150px;
    }
    
    .testimonial-content {
        gap: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .customer-name {
        font-size: 14px;
    }
    
    .customer-title {
        font-size: 12px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
}

.testimonials-container .container-full {
/* // overflow: hidden; */
  white-space: nowrap;
  animation: scroll 50s linear infinite; /* auto-scroll */
  display: flex;

}
.testimonials-container .container-full:hover {
    animation-play-state: paused; /* Pause on hover */
}
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* adjust depending on content width */
    }
  }

  .az-feature svg
 {
    position: relative;
    top: 4px;
}
.page-template-signup-for-easywebinar-2025 .nav-wrapper .login-navigation li:first-child, 
.page-template-signup-for-easywebinar-2025 .nav-wrapper .login-navigation li:nth-child(2) {
    display: none;
}
.page-template-signup-for-easywebinar-2025 #logo-container {
    pointer-events: none;
    opacity: 1 !important;
    transform: scale(1) !important;
}

img.amy-img {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.adfooter-btn-secondary .avatar-group {
    margin-left: 5px;              /* push avatars to the far right */
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 28px;
  }
  
  .adfooter-btn-secondary .avatar-group img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;         /* white ring, matches card */
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
  }
  
  .adfooter-btn-secondary .avatar-group img + img {
    margin-left: -8px;              /* overlap */
  }
  #mobile_nave .menu-signup-page-menu-ads-1-container #menu-signup-page-menu-ads-2 {
    display: flex;
    flex-direction: column;
  }

#mobile_nave .menu-signup-page-menu-ads-1-container #menu-signup-page-menu-ads-2 li {
    border-bottom: 1px dotted #060023;
    position: relative;
    font-size: 18px;
    width: 100%;
    margin: 0;
    padding: 25px 20px;
}
#mobile_nave .menu-signup-page-menu-ads-1-container #menu-signup-page-menu-ads-2 li a {
    font-weight: 500;
    font-family: "galanogrotesque-buploadedfile", sans-serif;
    font-size: 20px;
}
#mobile_nave .menu-signup-page-menu-ads-1-container #menu-signup-page-menu-ads-2 li a {
    font-weight: 500;
    font-family: "galanogrotesque-buploadedfile", sans-serif;
    font-size: 20px;
}

.menu-signup-page-menu-ads-1-container li a::after {
    display: none;
}

.page-template-signup-for-easywebinar-2025 .trust-banner-section {
    background: #0B112F
}

#sticky-header-button {
    transition: opacity 0.3s ease;
}

#sticky-header-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-template-signup-for-easywebinar-2025 a.book-demo {
    position: absolute;
    right: 50px;
    border: 1px solid #cfc5c5;
    border-radius: 15px;
    padding: 2px 9px;
    top: 13px;
    color: #131927;
    background-color: #e9e9e9;
    font-weight: 500;
    display: block !important;
}
.page-template-signup-for-easywebinar-2025 .nav-wrapper .login-navigation .book-demo-button {
    display: block !important;
}

.page-template-signup-for-easywebinar-2025 .nav-wrapper .login-navigation .book-demo-button a button {
    color: #131927;
    text-decoration: none;
    font-weight: 700;
    padding: 0 16px;
    border-radius: 50px;
    background-color: #e9e9e9;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.5px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-wrapper .login-navigation .book-demo-button a button:hover {
    background-color: #000000;
    color: white;
    text-decoration: none;
}

/* Video bg */

.wm-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 100px;
}

.wm-container h2 {
    font-weight: 600;
}

/* Card container */
.wm-card {
    position: relative;
    width: 100%;
    max-width: 1103px;
    height: 628px;
    border-radius: 16px;
    border: 8px solid #22B060;
    overflow: hidden;
}

/* Background container */
.wm-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1169px;
    height: 658px;
    border-radius: 16px;
    overflow: hidden;
}

.wm-background-image {
    width: 100%;
    height: 100%;
}

.wm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.49);
}

/* Content container */
.wm-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #22b060;
    padding: 11px 13px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    top: 50%;
}

/* Play button */
.wm-play-button {
    display: inline-grid;
    place-items: start;
    flex-shrink: 0;
}

.wm-play-icon {
    position: relative;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
}

.wm-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Text content */
.wm-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.wm-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: normal;
    white-space: nowrap;
    margin: 0;
}

.wm-title-capital {
    text-transform: uppercase;
}

.wm-title-rest {
    text-transform: lowercase;
}

/* Professional  */
.az-container.professional-container {
    grid-template-columns: 1fr;
}
.professional-container .az-left {
    text-align: center;
}
.professional-container .az-sub {
    margin: 30px auto;
}
.professional-container .az-features {
    justify-content: center;
}
.az-num.text-black {
    color: #000;
}
.page-template-professional-plan-october-sale-2025 #logo-container,
.page-template-enterprise-signup-demo-contact-sales #logo-container {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wm-card {
        max-width: 95vw;
        height: auto;
        aspect-ratio: 16/9;
        min-height: 400px;
    }
    
    .wm-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .wm-card {
        min-height: 300px;
        border: 3px solid #22B060;
    }
    
    .wm-content {
        bottom: 20px;
        padding: 8px 12px;
        gap: 12px;
        border-radius: 12px;
        top: calc(100% - 30px);
    }
    
    .wm-play-icon {
        width: 32px;
        height: 32px;
    }
    
    .wm-title {
        font-size: 18px;
    }
    .wm-container h2 {
        font-size: 1.4rem;
        line-height: normal;
    }
    .wm-container {
        margin-bottom: 70px;
    }
    .wm-content {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .wm-card {
        min-height: auto;
    }
    
    .wm-content {
        padding: 6px 10px;
        gap: 4px;
        border-radius: 10px;
        height: 45px;
    }
    
    .wm-play-icon {
        width: 28px;
        height: 28px;
    }
    
    .wm-title {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .wm-title {
        font-size: 12px;
        white-space: normal;
        word-break: break-word;
    }
}


/* Professional */
.ew-pro-container {
    background-color: #22b060;
    width: 100%;
    height: 100%;
    position: relative;
}

.ew-pro-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ew-pro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Banner styles */
.ew-pro-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 60px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.ew-pro-text-container {
    display: flex;
    align-items: flex-start;
    height: auto;
    flex-shrink: 0;
}

.ew-pro-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
    font-style: normal;
    color: white;
    letter-spacing: -0.3125px;
    text-align: center;
    margin: 0;
}

.ew-pro-text-regular {
    font-size: 20px;
}

.ew-pro-text-highlight {
    font-size: 36px;
    margin: 0 5px;
}

.ew-pro-emoji {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 40.5px;
    font-style: normal;
    color: #364153;
    font-size: 27px;
    text-align: center;
    white-space: pre;
    letter-spacing: -0.5273px;
    flex-shrink: 0;
    margin: 0;
}
.professional-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.professional-action button {
    background: #007BFF;
    max-width: 420px;
    font-size: 22px;
    font-weight: 500;
    width: 100%;
    height: 60px;
}
.professional-action button:hover, .professional-action button:focus {
    background: #025ec2;
}
.professional-action span {
    color: #4d4d4d;
    text-align: center;
}
.escale-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.escale-action a {
    color: #0B0E1F;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ew-pro-text-regular {
        font-size: 15px;
    }
    .ew-pro-text-highlight {
        font-size: 24px;
        margin: 0 5px;
    }
}
@media (max-width: 768px) {
    .ew-pro-content {
        padding: 0 12px;
    }
    
    .ew-pro-banner {
        height: auto;
        min-height: 60px;
        padding: 16px 0;
        flex-direction: column;
        gap: 12px;
    }
    
    .ew-pro-text-container {
        height: auto;
        align-items: center;
    }
    
    .ew-pro-text {
        white-space: normal;
        line-height: 1.3;
    }
    
    .ew-pro-text-regular {
        font-size: 20px;
    }
    
    .ew-pro-text-highlight {
        font-size: 32px;
    }
    
    .ew-pro-emoji {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .ew-pro-content {
        padding: 0 8px;
    }
    
    .ew-pro-text-regular {
        font-size: 18px;
    }
    
    .ew-pro-text-highlight {
        font-size: 28px;
    }
    
    .ew-pro-emoji {
        font-size: 22px;
    }
}

@media (max-width: 320px) {
    .ew-pro-text-regular {
        font-size: 16px;
    }
    
    .ew-pro-text-highlight {
        font-size: 24px;
    }
    
    .ew-pro-emoji {
        font-size: 20px;
    }
}

.esale-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background-image: 
        linear-gradient(104.844deg, rgb(245, 255, 243) 7.3141%, rgb(218, 255, 211) 99.868%),
        linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%),
        linear-gradient(178.965deg, rgb(25, 24, 24) 7.2792%, rgb(22, 24, 39) 96.22%);
    padding: 70px 0;
}

.esale-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.esale-text-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.esale-heading {
    font-size: 40px;
    line-height: 60px;
    color: #131927;
    margin: 0;
    text-align: center;
    font-weight: 700;
}

.esale-heading-bold {
    font-weight: 700;
}

.esale-heading-black {
    font-weight: 900;
    color: #22b060;
}

.esale-heading-black-large {
    font-weight: 900;
    color: #22b060;
    font-size: 55px;
}

.esale-button {
    background-color: #007bff;
    color: #fdfdfd;
    font-size: 24px;
    font-weight: 600;
    padding: 15.535px 22.193px;
    border: none;
    border-radius: 10.667px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.esale-button:hover {
    background-color: #0056b3;
}

.esale-pattern {
    position: absolute;
    left: -185px;
    top: 233.44px;
    width: 332px;
    height: 305px;
    opacity: 0.5;
    z-index: 1;
}

.esale-pattern svg {
    width: 100%;
    height: 100%;
}

.esale-dot {
    fill: white;
    fill-opacity: 0.24;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .esale-heading {
        font-size: 40px;
        line-height: 52px;
    }
    
    .esale-heading-black-large {
        font-size: 46px;
    }
    
    .esale-button {
        font-size: 22px;
        padding: 14px 20px;
    }
    
    .esale-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .esale-heading {
        font-size: 32px;
        line-height: 42px;
    }
    
    .esale-heading-black-large {
        font-size: 36px;
    }
    
    .esale-button {
        font-size: 20px;
        padding: 12px 18px;
    }
    
    .esale-content {
        gap: 35px;
        padding: 0 15px;
    }
    
    .esale-pattern {
        left: -150px;
        top: 200px;
        width: 280px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .esale-container {
        min-height: auto;
        padding: 50px 0;
    }
    
    .esale-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .esale-heading-black-large {
        font-size: 28px;
    }
    
    .esale-button {
        font-size: 18px;
        padding: 10px 16px;
    }
    
    .esale-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .esale-pattern {
        left: -120px;
        top: 150px;
        width: 240px;
        height: 220px;
    }
}

@media (max-width: 320px) {
    .esale-heading {
        font-size: 20px;
        line-height: 28px;
    }
    
    .esale-heading-black-large {
        font-size: 24px;
    }
    
    .esale-button {
        font-size: 16px;
        padding: 8px 14px;
    }
}

/* price offers */
.eoffer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
    gap: 44px;
    background: #F4F8FF;
    margin-top: 70px;
}

.eoffer-main-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56.831px;
    gap: 11.875px;
}

.eoffer-main-heading h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 50.894px;
    line-height: 66.162px;
    color: #000;
    text-align: center;
    text-transform: lowercase;
}

.eoffer-main-heading h1 .eoffer-capital-e {
    text-transform: uppercase;
}

.eoffer-main-card {
    border-radius: 24px;
    border: 1px solid #e6e6e6;
    box-shadow: 12px 12px 17.5px -2px rgba(19, 25, 39, 0.08);
    overflow: hidden;
    background: #fff;
}

.eoffer-promo-banner {
    background-color: #51ff9d;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1179px;
}

.eoffer-promo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #0c0c0c;
    text-align: center;
    letter-spacing: -0.3125px;
    width: 931px;
}

.eoffer-main-content {
    background: #fff;
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    min-height: 936px;
}

.eoffer-content-grid {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: center;
    height: 681px;
}

.eoffer-left-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    width: 527px;
}

.eoffer-plan-card {
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 265px;
    width: 527px;
}

.eoffer-plan-header {
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    width: 100%;
}

.eoffer-plan-badge-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.eoffer-live-automated-badge {
    background-color: #ecf8ef;
    border: 1px solid #318242;
    border-radius: 12px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.eoffer-badge-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: #318242;
    text-align: center;
    letter-spacing: 0.3516px;
    width: 242px;
}

.eoffer-plan-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 59px;
    line-height: 49px;
    color: #000;
    text-align: center;
    letter-spacing: 0.3516px;
    white-space: nowrap;
}

.eoffer-plan-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #000;
    letter-spacing: -0.4492px;
    width: 483px;
}

.eoffer-capacity-card {
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 191px;
    width: 527px;
}

.eoffer-capacity-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 33.066px;
    line-height: 44.088px;
    color: #000;
    text-align: center;
    letter-spacing: 0.0969px;
    white-space: nowrap;
}

.eoffer-capacity-stats {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.eoffer-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000;
}

.eoffer-stat-number {
    font-size: 34px;
    letter-spacing: 0.0998px;
    font-weight: 500;
}

.eoffer-stat-label {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.0703px;
    white-space: nowrap;
}

.eoffer-stat-divider {
    background-color: rgba(255, 255, 255, 0.3);
    width: 2px;
    height: 74px;
}

.eoffer-pricing-card {
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 197px;
    width: 527px;
}

.eoffer-savings-badge {
    background-color: #000;
    border-radius: 9999px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.eoffer-savings-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    letter-spacing: -0.4395px;
    white-space: nowrap;
}

.eoffer-pricing-section {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.eoffer-old-price {
    font-size: 45.089px;
    line-height: 45.089px;
    letter-spacing: 0.0771px;
    text-decoration: line-through;
    opacity: 0.6;
}

.eoffer-new-price {
    font-weight: 700;
    font-size: 58.397px;
    line-height: normal;
    letter-spacing: 0.0998px;
}

.eoffer-price-period {
    font-size: 24px;
    color: #000;
}

.eoffer-right-column {
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 681px;
    width: 492px;
}

.eoffer-features-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    color: #000;
    letter-spacing: 0.0703px;
    white-space: nowrap;
}

.eoffer-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 448px;
}

.eoffer-feature-item {
    display: flex;
    gap: 12px;
    height: 28px;
    align-items: center;
    width: 100%;
}

.eoffer-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.eoffer-feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    letter-spacing: -0.4395px;
    white-space: nowrap;
}

.eoffer-integrations {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 428px;
}

.eoffer-integration-logos {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 10px;
}

.eoffer-integration-logos-row2 {
    display: flex;
    gap: 31.249px;
    align-items: center;
}

.eoffer-logo-item {
    height: auto;
}

.eoffer-logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.eoffer-cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 1091px;
}

.eoffer-cta-button {
    background-color: #007bff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 721px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.eoffer-cta-button:hover {
    background-color: #0056b3;
}

.eoffer-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.0703px;
    white-space: nowrap;
}

.eoffer-terms-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    letter-spacing: -0.4395px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .eoffer-promo-banner {
        width: 100%;
        max-width: 1179px;
    }
    
    .eoffer-promo-text {
        width: 100%;
        max-width: 931px;
        padding: 0 20px;
    }
    
    .eoffer-content-grid {
        flex-direction: column;
        height: auto;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    
    .eoffer-left-column,
    .eoffer-plan-card,
    .eoffer-capacity-card,
    .eoffer-pricing-card {
        width: 100%;
        max-width: 527px;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .eoffer-right-column {
        width: 100%;
        max-width: 527px;
        height: auto;
    }
    
    .eoffer-cta-section {
        width: 100%;
        max-width: 1091px;
        padding: 0 20px;
    }
    
    .eoffer-cta-button {
        width: 100%;
        max-width: 721px;
    }
}

@media (max-width: 768px) {
    .eoffer-main-card {
        width: 100%;
    }
    .eoffer-container {
        padding: 32px 0;
        gap: 32px;
    }
    
    .eoffer-main-heading h1 {
        font-size: 32px;
        line-height: 42px;
        white-space: normal;
        text-align: center;
    }
    
    .eoffer-promo-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .eoffer-main-content {
        padding: 24px;
        gap: 32px;
    }
    
    .eoffer-plan-card {
        padding: 24px;
        height: auto;
    }
    
    .eoffer-plan-title {
        font-size: 48px;
        line-height: 48px;
    }
    
    .eoffer-plan-description {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
    }
    
    .eoffer-capacity-stats {
        /* flex-direction: column; */
        gap: 16px;
        align-items: center;
        width: 85%;
        justify-content: center;
    }
    
    .eoffer-stat-divider {
        width: 200px;
        height: 2px;
    }
    
    .eoffer-pricing-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .eoffer-new-price {
        font-size: 48px;
        line-height: 48px;
    }
    
    .eoffer-old-price {
        font-size: 36px;
        line-height: 36px;
    }
    
    .eoffer-right-column {
        padding: 24px;
    }
    
    .eoffer-integrations {
        width: 100%;
    }
    
    .eoffer-integration-logos,
    .eoffer-integration-logos-row2 {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .eoffer-main-heading h1 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 16px;
    }
    
    .eoffer-promo-text {
        font-size: 18px;
        line-height: 24px;
    }
    
    .eoffer-main-content {
        padding: 16px;
        gap: 24px;
    }
    
    .eoffer-plan-card,
    .eoffer-capacity-card,
    .eoffer-pricing-card,
    .eoffer-right-column {
        padding: 16px;
    }
    
    .eoffer-plan-title {
        font-size: 36px;
        line-height: 36px;
    }
    
    .eoffer-badge-text {
        font-size: 20px;
        width: auto;
    }
    
    .eoffer-capacity-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .eoffer-stat-number {
        font-size: 28px;
    }
    
    .eoffer-stat-label {
        font-size: 18px;
    }
    
    .eoffer-new-price {
        font-size: 36px;
        line-height: 36px;
    }
    
    .eoffer-old-price {
        font-size: 28px;
        line-height: 28px;
    }
    
    .eoffer-features-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .eoffer-feature-text {
        font-size: 16px;
        line-height: 24px;
        white-space: normal;
    }
    
    .eoffer-cta-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .eoffer-cta-button {
        height: 56px;
    }
}

.page-template-enterprise-signup-demo-contact-sales li:nth-child(3) {
    display: none;
}