/* Global Styles */
:root {
    --primary: #4461F2;
    --primary-light: #5A75F3;
    --primary-dark: #3350D9;
    --secondary: #12B76A;
    --secondary-light: #32D583;
    --text-dark: #1D2939;
    --text-medium: #475467;
    --text-light: #667085;
    --gray-light: #F2F4F7;
    --gray-medium: #E4E7EC;
    --white: #FFFFFF;
    --radius: 8px;
    --shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}
:root {
    --dot-size: 12px;
    --btn-size: 48px;
    --accent: #19578e;
    --bg: #fff;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--gray-medium);
}

.btn-secondary:hover {
    background-color: var(--gray-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 15px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
    padding-bottom: 59.25%;
    padding-top: 0px;
    height: 0;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero-image iframe{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--gray-light);
    padding: 40px 0;
}

.trusted-by h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    font-weight: 500;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(68, 97, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--gray-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

/* Pricing Section */
/* .pricing {
    background-color: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 16px;
}

.save {
    background-color: #FEF3F2;
    color: #D92D20;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 16px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-medium);
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-medium);
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.yearly {
    display: none;
} */

.description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 3px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-light);
}

.testimonial-container {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: auto;
    font-style: italic;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prev,
.next {
    background-color: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.indicators {
    display: flex;
    gap: 10px;
}

.indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
}

.indicators span.active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* FAQ Section 
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-medium);
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.icon {
    font-size: 1rem;
    color: var(--primary);
}

.faq-answer {
    padding: 0 0 20px;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon .fa-plus::before {
    content: "\f068";
}*/
 .faq-section { }
 .faq-list{width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;}
.faq-section h2 { font-size: 2rem; margin-bottom: 1rem; text-align: center; }
.faq-list details { border-bottom: 1px solid #ddd; padding: 0.8rem 0; }
.faq-list summary { cursor: pointer; font-weight: 600; font-size: 1rem; outline: none; }
.faq-list summary::marker { font-size: 1.2rem; }
.faq-list p, .faq-list ul, .faq-list ol { margin: 0.5rem 0 0 1rem; font-size: 0.95rem; }
.faq-list ul { list-style: disc; }
.faq-list ol { list-style: decimal; }

/* CTA Section */
.cta {
    background-color: #000;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn {
    margin-bottom: 20px;
}

.no-credit-card {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background-color: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 5px;
    width: 30px;
}

.info-item div {
    margin-left: 15px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    background-color: #1D2939;
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.store-links {
    display: flex;
    gap: 15px;
}

.footer-logo a {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.language-selector select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .pricing-grid {
        gap: 20px;
    }

    .pricing-card.popular {
        transform: scale(1.03);
    } */
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap:0;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links,
    .cta-buttons {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .cta-buttons.active {
        display: flex;
        flex-direction: column;
        padding: 0 20px 20px;
        background-color: var(--white);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    /* .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    } */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .logos {
        gap: 20px;
    }

    .logos img {
        max-height: 40px;
    }

    .testimonial {
        padding: 20px;
    }
}

/* Show yearly prices when toggle is checked */
/* .pricing.yearly .yearly {
    display: inline;
}

.pricing.yearly .monthly {
    display: none;
} */

/* —— APP OVERVIEW SECTION —— */
.appOverview {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  .appOverview h2 {
    font-size: 2rem;
    color: #1A1F25;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .appOverview-subtitle {
    color: #556772;
    margin-bottom: 2rem;
  }
  
  /* hide radio buttons */
  .appOverview-tabs input {
    display: none;
  }
  
  .appOverview-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  
  /* —— NAV —— */
  .appOverview-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 240px;
  }
  .appOverview-nav label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    color: #8E9BA8;
    transition: background 0.2s, color 0.2s;
  }
  .appOverview-nav label .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .appOverview-nav label:hover {
    background: #F5F7FA;
  }
  
  /* active‑tab styling */
  #tab-general:checked   ~ .appOverview-layout .appOverview-nav label[for="tab-general"],
  #tab-agri:checked      ~ .appOverview-layout .appOverview-nav label[for="tab-agri"],
  #tab-electronics:checked~ .appOverview-layout .appOverview-nav label[for="tab-electronics"] {
    color: #D6336C;
    background: #FFF;
  }
  
  /* —— CONTENT —— */
  .appOverview-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .appOverview-content .panel {
    display: none;
    padding: 0;
  }
  #tab-general:checked    ~ .appOverview-layout .appOverview-content #content-general,
  #tab-agri:checked       ~ .appOverview-layout .appOverview-content #content-agri,
  #tab-electronics:checked~ .appOverview-layout .appOverview-content #content-electronics {
    display: block;
  }
  .appOverview-content video,
  .appOverview-content img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* —— RESPONSIVE —— */
  @media (max-width: 768px) {
    .testimonial-container{
        min-height: 530px;
    }
    .appOverview-layout {
      flex-direction: column;
    }
    .appOverview-nav {
      width: 100%;
      flex-direction: row;
      overflow-x: auto;
    }
    .appOverview-nav label {
      flex: 1;
      white-space: nowrap;
      justify-content: center;
    }
  }
  
  /* ========== SCREENSHOT GALLERY ========== */
.screenshot-gallery {
    padding: 2rem 1rem;
    background: #fff;
  }
  
  /* GRID CONTAINER: wraps into multiple rows */
  .screenshot-gallery__grid {
    display: grid;
    gap: 1.5rem;
    /* on narrow: 1 column, on medium: 2, on large: up to 5 */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-items: center;
  }
  
  /* PHONE “CARDS” */
  .screenshot-gallery__grid img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
  }
  
  /* OPTIONAL: tighten up spacing on very wide screens */
  @media (min-width: 1200px) {
    .screenshot-gallery {
      padding: 3rem 2rem;
    }
    .screenshot-gallery__grid {
      gap: 2rem;
    }
  }
  .sleek-carousel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--bg);
  }
  .sleek-carousel__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .sleek-carousel__viewport {
    position: relative;
    overflow: hidden;
  }
  .sleek-carousel__track {
    display: flex;
    transition: transform 0.6s ease;
  }
  .sleek-carousel__slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .sleek-carousel__slide img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
  }
  .sleek-carousel__slide:hover img {
    transform: scale(0.95);
  }
  .sleek-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--btn-size);
    height: var(--btn-size);
    border: none;
    background: rgba(255,255,255,0.8);
    font-size: 2rem;
    color: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  .sleek-carousel__btn:hover {
    background: rgba(255,255,255,1);
  }
  .sleek-carousel__btn--prev { left: 10px; }
  .sleek-carousel__btn--next { right: 10px; }
  .sleek-carousel__dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .sleek-carousel__dot {
    width: var(--dot-size);
    height: var(--dot-size);
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .sleek-carousel__dot.active {
    background: var(--accent);
    transform: scale(1.2);
  }
  @media (max-width: 768px) {
    .sleek-carousel__slide { min-width: 50%; }
  }
  @media (max-width: 480px) {
    .sleek-carousel__slide { min-width: 100%; }
  }  

  .business-types {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    background-color: var(--gray-light);
  }
  .business-types__heading {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
  }
  .business-types__text {
    font-size: 2rem;
    color: var(--accent);
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
  }
  .business-types__text .cursor {
    display: inline-block;
    animation: blink 0.8s steps(2) infinite;
    margin-left: 2px;
    color: #333;
  }
  @keyframes blink {0%,100% {opacity: 0} 50% {opacity: 1}}
  .business-types__text.fade-out {opacity: 0; transition: opacity 0.4s;}


  .download-section {
    background: #eef2ff;
    padding: 2rem;
}

.download-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.download-button img {
    width: 150px;
}

.download-button p {
    font-size: 0.9rem;
    color: #555;
}

.trusted-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Mobile App Preview */
.mobile-preview img {
    width: 300px;
    max-width: 100%;
}

.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s;
  }
  .whatsapp-sticky:hover {
    background-color: #1DA851;
  }

  @media (max-width: 1200px) {
    .hero{
        padding-top: 20px;
    }
    /* show the hamburger */
    .hamburger {
      display: flex;
    }
  
    /* hide nav links & CTAs by default */
    .nav-links{
        display: none;
    }
    .cta-buttons {
        display: flex;
    gap: 12px; 
    max-height: 42px;
    font-size: 12px;
    }
  
    /* style the slide-out container when opened */
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;               /* just below header */
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        z-index: 999;
    }
  
    /* show the CTAs inside the same menu when active */
    .cta-buttons.active {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  }
  .hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  .pricing-container {
    width: 90%;
    max-width: 1170px;
    margin: 4em auto;
  }
  .toHideClass{
      display: block !important;
  }
  #toHide{
      display: none;
  }
  .pricing-container {
      margin: 6em auto;
      margin-top: 20px;
  }
  .pricing-container.full-width {
      width: 100%;
      max-width: none;
  }
  
  .pricing-switcher {
    text-align: center;
  }
  
  .pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    border: 2px solid #2d3e50;
    background-color: #000;
  }
  
  .pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .pricing-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    width: 90px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    color: #ffffff;
  }
  
  .pricing-switcher .switch {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 40px;
    width: 90px;
    background-color: #2d3e50;
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  
  .pricing-switcher input[type="radio"]:checked + label + .switch,
  .pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
  }
  
  .no-js .pricing-switcher {
    display: none;
  }
  
  .pricing-list {
    margin: 2em 0 0;
    display: flex;
      justify-content: center;
  }
  
  .pricing-list > li {
    position: relative;
    margin-bottom: 1em;
  }
  
  @media only screen and (min-width: 768px) {
  
    .pricing-list:after {
      content: "";
      display: table;
      clear: both;
    }
    .pricing-list > li {
      width: 33.3333333333%;
      float: left;
      padding-left: 5px;
      padding-right: 5px;
    }
    .has-margins .pricing-list > li {
      width: 32.3333333333%;
      float: left;
      margin-right: 1.5%;
    }
    .has-margins .pricing-list > li:last-of-type {
      margin-right: 0;
    }
  }
  
  .pricing-wrapper {
    position: relative;
  }
  
  .touch .pricing-wrapper {
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
  }
  
  .pricing-wrapper.is-switched .is-visible {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: rotate 0.5s;
    -moz-animation: rotate 0.5s;
    animation: rotate 0.5s;
  }
  
  .pricing-wrapper.is-switched .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse 0.5s;
    -moz-animation: rotate-inverse 0.5s;
    animation: rotate-inverse 0.5s;
    opacity: 0;
  }
  
  .pricing-wrapper.is-switched .is-selected {
    opacity: 1;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-visible {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: rotate-back 0.5s;
    -moz-animation: rotate-back 0.5s;
    animation: rotate-back 0.5s;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse-back 0.5s;
    -moz-animation: rotate-inverse-back 0.5s;
    animation: rotate-inverse-back 0.5s;
    opacity: 0;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
  }
  
  .pricing-wrapper > li {
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    border: 1px solid;
  }
  
  .pricing-wrapper > li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    pointer-events: none;
    background: -webkit-linear-gradient( right , #ffffff, rgba(255, 255, 255, 0));
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
  }
  
  .pricing-wrapper > li.is-ended::after {
    display: none;
  }
  
  .pricing-wrapper .is-visible {
    position: relative;
    z-index: 5;
  }
  
  .pricing-wrapper .is-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  
  .pricing-wrapper .is-selected {
    z-index: 3 !important;
  }
  
  @media only screen and (min-width: 768px) {
    .pricing-wrapper > li::before {
      content: '';
      position: absolute;
      z-index: 6;
      left: -1px;
      top: 50%;
      bottom: auto;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      height: 50%;
      width: 1px;
      background-color: #b1d6e8;
    }
    .pricing-wrapper > li::after {
      display: none;
    }
    .exclusive .pricing-wrapper > li {
      box-shadow: inset 0 0 0 3px #2d3e50;
    }
    .has-margins .pricing-wrapper > li,
    .has-margins .exclusive .pricing-wrapper > li {
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
    :nth-of-type(1) > .pricing-wrapper > li::before {
      display: none;
    }
    .has-margins .pricing-wrapper > li {
      border-radius: 4px 4px 6px 6px;
    }
    .has-margins .pricing-wrapper > li::before {
      display: none;
    }
  }
  
  @media only screen and (min-width: 1500px) {
    .full-width .pricing-wrapper > li {
      padding: 2.5em 0;
    }
  }
  
  .no-js .pricing-wrapper .is-hidden {
    position: relative;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    margin-top: 1em;
  }
  
  @media only screen and (min-width: 768px) {
      
    .exclusive .pricing-wrapper > li::before {
      display: none;
    }
    .exclusive + li .pricing-wrapper > li::before {
      display: none;
    }
  }
  @media only screen and (min-width: 328px) and (max-width: 600px) {
      .pricing-list{
          display: flow-root;
      }
    .exclusive .pricing-wrapper > li::before {
      display: none;
    }
    .exclusive + li .pricing-wrapper > li::before {
      display: none;
    }
  }
  .pricing-header h2 {
    /* padding: 0.9em 0.9em 0.6em; */
      font-weight: 400;
      margin-bottom: 30px;
      margin-top: 10px;
      text-transform: uppercase;
    text-align: center;
  }
  
  .pricing-header {
      height: auto;
      padding: 1.9em 0 1.6em;
      pointer-events: auto;
      text-align: center;
      color: #173d50;
      background-color: transparent;
  }
  
  .exclusive .pricing-header {
      /* color: #4261f1; */
      background-color: transparent;
  }
  
  .pricing-header h2 {
      font-size: 2.8rem;
      letter-spacing: 2px;
  }
  
  .currency,
  .value {
    font-size: 3rem;
    font-weight: 300;
  }
  
  .duration {
    font-weight: 700;
    font-size: 1.3rem;
    color: #8dc8e4;
    text-transform: uppercase;
  }
  
  .exclusive .duration {
    color: #f3b6ab;
  }
  
  .duration::before {
    content: '/';
    margin-right: 2px;
  }
  
  .value {
      font-size: 3rem;
      font-weight: bold;
  }
  
  .currency, 
  .duration {
      color: #173d50;
  }
  
  .exclusive .currency,
  .exclusive .duration {
      color: #2d3e50;
  }
  
  .currency {
      display: inline-block;
      margin-top: 10px;
      vertical-align: top;
      font-size: 2rem;
      font-weight: 700;
  }
  
  .duration {
      font-size: 1.4rem;
  }
  
  .pricing-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .is-switched .pricing-body {
    overflow: hidden;
  }
  
  .pricing-body {
      overflow-x: visible;
  }
  
  .pricing-features {
    width: 600px;
  }
  
  .pricing-features:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .pricing-features li {
    width: 100px;
    float: left;
    padding: 1.6em 1em;
    font-size: 1.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .pricing-features em {
    display: inline-block;
    margin-bottom: 0;
    font-size: 15px;
    text-wrap: auto;
    font-style: normal;
  }
  
  .pricing-features {
      width: auto;
  }
  
  .pricing-features li {
      float: none;
      width: auto;
      padding: 0.5em;
  }
  
  .exclusive .pricing-features li {
      margin: 0 3px;
  }
    
  .pricing-features em {
      display: inline-block;
      margin-bottom: 0;
  }
  
  .has-margins .exclusive .pricing-features li {
      margin: 0;
  }
  
  .pricing-footer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
  }
  
  .pricing-footer {
      position: relative;
      height: auto;
      padding: 1.8em 0;
      text-align: center;
      width: 80%;
    margin: 0 auto;
  }
  
  .pricing-footer::after {
      display: none;
  }
  
  .has-margins .pricing-footer {
      padding-bottom: 0;
  }
  
  .select {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
  }
  
  .select {
      position: static;
      display: inline-block;
      height: auto;
      padding: 1.3em 2em;
      color: #4261f1;
      border-radius: 8px;
      border: 2px solid #4261f1;
      font-size: 1.4rem;
      text-indent: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    transition: all .6s;
    width: 70%;
  }
  .newFeatures{
      color: #1abc9d;
      border-top: 1px solid #fff;
  }
  
  .no-touch .select:hover {
      background-color: #4261f1;
    color: #ffffff;
  }
  
  .exclusive .select {
      background-color: #4261f1;
    color: #ffffff;
  }
    
  .no-touch .exclusive .select:hover {
      background-color: #24e0ba;
  }
    
  .secondary-theme .exclusive .select {
      background-color: #4261f1;
  }
    
  .no-touch .secondary-theme .exclusive .select:hover {
      background-color: #112e3c;
  }
    
  .has-margins .select {
      display: block;
      padding: 1.7em 0;
      border-radius: 0 0 4px 4px;
  }
  
  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @-moz-keyframes rotate {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(200deg);
      -moz-transform: perspective(2000px) rotateY(200deg);
      -ms-transform: perspective(2000px) rotateY(200deg);
      -o-transform: perspective(2000px) rotateY(200deg);
      transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @-webkit-keyframes rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-moz-keyframes rotate-inverse {
    0% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @keyframes rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(20deg);
      -moz-transform: perspective(2000px) rotateY(20deg);
      -ms-transform: perspective(2000px) rotateY(20deg);
      -o-transform: perspective(2000px) rotateY(20deg);
      transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-webkit-keyframes rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @-moz-keyframes rotate-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @keyframes rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-200deg);
      -moz-transform: perspective(2000px) rotateY(-200deg);
      -ms-transform: perspective(2000px) rotateY(-200deg);
      -o-transform: perspective(2000px) rotateY(-200deg);
      transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @-webkit-keyframes rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-moz-keyframes rotate-inverse-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @keyframes rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-20deg);
      -moz-transform: perspective(2000px) rotateY(-20deg);
      -ms-transform: perspective(2000px) rotateY(-20deg);
      -o-transform: perspective(2000px) rotateY(-20deg);
      transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }