/* Base Styles */
:root {
    --primary-blue: #1DA1F2;
    /* Vibrant sky-blue */
    --secondary-blue: #2796D6;
    /* Medium blue */
    --dark-navy: #0C2742;
    /* Dark navy for text */
    --neutral-light: #F2F5F8;
    /* Soft gray for backgrounds */
    --accent: #B3E5FC;
    /* Light turquoise for accents */
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--white);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

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

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    border: none;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--dark-navy);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--dark-navy);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-navy);
}

/* Hero Section */
.hero {
    background-color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.features h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.how-it-works h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 10px;
    position: relative;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.quote::before {
    content: "" ";
 font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.author {
    font-weight: 600;
    color: var(--dark-navy);
}

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

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Media Queries */
@media screen and (max-width: 968px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

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

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Page Header Styles */
.page-header {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
    position: relative;
    z-index: 5;
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    margin-bottom: 4rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-navy);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 0.5rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Features List Styles */
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.features-list i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.features-list div {
    flex: 1;
}

.features-list h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}

/* Vision Section Styles */
.vision-section {
    margin-top: 5rem;
}

.vision-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 0.5rem;
}

.vision-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.vision-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vision-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

.vision-text {
    flex: 1;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Company History Styles */
.history-section {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.history-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-navy);
}

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.history-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.history-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--primary-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.history-item:nth-child(odd) {
    left: 0;
}

.history-item:nth-child(even) {
    left: 50%;
}

.history-item:nth-child(odd)::after {
    right: -12px;
}

.history-item:nth-child(even)::after {
    left: -12px;
}

.history-content {
    padding: 20px;
    background-color: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history-date {
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Team Section Styles */
.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-navy);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
    font-size: 1.3rem;
}

.team-position {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--neutral-light);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

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

/* Stats Section Styles */
.stats-section {
    padding: 5rem 0;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

/* Scroll Animation Styles */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animations */
.features-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.features-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.features-list li:nth-child(4) {
    transition-delay: 0.3s;
}

.team-card:nth-child(2) {
    transition-delay: 0.1s;
}

.team-card:nth-child(3) {
    transition-delay: 0.2s;
}

.team-card:nth-child(4) {
    transition-delay: 0.3s;
}

.history-item:nth-child(2) {
    transition-delay: 0.1s;
}

.history-item:nth-child(3) {
    transition-delay: 0.2s;
}

.history-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* Product Pages Common Styles */
.product-intro {
    padding: 5rem 0;
}

.product-intro .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.product-content,
.product-image {
    flex: 1;
    min-width: 300px;
}

.product-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-section,
.benefits-section {
    padding: 5rem 0;
}

.features-section h2,
.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.alt-bg {
    background-color: var(--neutral-light);
}

.target-audience {
    padding: 5rem 0;
    background-color: var(--neutral-light);
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Pricing Page Styles */
.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.pricing-plans {
    padding: 2rem 0 5rem;
}

.plan-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border: 2px solid var(--primary-blue);
    transform: translateY(-10px) scale(1.05);
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.plan-header h3 {
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.currency {
    font-size: 0.9rem;
    vertical-align: super;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.period {
    font-size: 0.8rem;
    color: var(--gray);
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.plan-features i {
    color: var(--primary-blue);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.plan-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.add-ons,
.payment-terms {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.add-ons h2,
.payment-terms h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.add-ons-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.add-ons-table table {
    width: 100%;
    border-collapse: collapse;
}

.add-ons-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.add-ons-table tr:last-child td {
    border-bottom: none;
}

.add-ons-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.term-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.term-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.contact-content {
    padding: 2rem 0 5rem;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-form-column,
.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-details {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.contact-details h3 {
    margin-bottom: 0.3rem;
}

.support-list {
    list-style: none;
}

.support-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.support-list i {
    color: var(--primary-blue);
    margin-right: 0.8rem;
}

.map-section {
    padding: 3rem 0 5rem;
    text-align: center;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Media Queries for Page Specific Styles */
@media screen and (max-width: 768px) {
    .plan-card.featured {
        transform: translateY(0) scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .vision-content,
    .product-intro .container {
        flex-direction: column;
    }

    .product-image {
        order: -1;
    }
}

/* Phone Animation */
.phone-animation {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.phone-animation img {
    max-width: 100%;
    transition: transform 0.2s ease;
}

.phone-animation img.ringing {
    animation: ring 0.2s ease infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* Workflow Section */
.workflow-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.workflow-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-navy);
}

.workflow-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.workflow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-blue);
    z-index: 1;
    transform: translateX(-50%);
}

.workflow-steps {
    position: relative;
    z-index: 2;
}

.workflow-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.workflow-content {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-left: 2rem;
    flex: 1;
}

.workflow-content h3 {
    margin-top: 0;
    color: var(--dark-navy);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.workflow-content p {
    margin-bottom: 0;
    color: var(--gray);
}

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background-color: var(--neutral-light);
}

.use-cases-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-navy);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(29, 161, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.use-case-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.use-case-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-navy);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: "" ";
 font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(29, 161, 242, 0.1);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0;
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Integrations Section */
.integrations-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--neutral-light) 0%, var(--white) 100%);
}

.integrations-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-navy);
}

.integrations-section p.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--gray);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.integration-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.integration-item h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-navy);
}

/* Pricing Plans Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-navy);
}

.pricing-section p.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-plan.popular {
    border: 2px solid var(--primary-blue);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-plan h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.pricing-cta {
    margin-top: auto;
}

/* Responsive adjustments for workflow and features sections */
@media screen and (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }

    .workflow-content {
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .workflow-line {
        left: 30px;
    }

    .use-cases-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.additional-pricing-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-pricing-info h3 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.additional-pricing-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.additional-pricing-info li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.additional-pricing-info p {
    text-align: center;
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.additional-pricing-info strong {
    color: var(--primary-blue);
}

@media screen and (max-width: 768px) {
    .additional-pricing-info ul {
        grid-template-columns: 1fr;
    }
}