/* Base Styles */
:root {
    --primary: #3A7CA5;
    --primary-light: #80B3D4;
    --primary-dark: #16425B;
    --accent: #16425B;
    --text: #2D2D2D;
    --text-light: #757575;
    --background: #FFFFFF;
    --background-alt: #F8F9FA;
    --card: #FFFFFF;
    --card-border: #E5E5E5;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.form-container {
    position: relative;
    width: 100%;
    max-width: 640px; /* Match the original iframe width */
    margin: 0 auto; /* Center the container */
    overflow: hidden; /* Prevent content overflow */
}

.form-container iframe {
    width: 100%;
    height: 751px; /* Original height */
    border: none;
    display: block; /* Remove any default inline spacing */
}

/* Maintain aspect ratio using padding (optional, for better control) */
.form-container::before {
    content: '';
    display: block;
    padding-top: 117.34%; /* 751px / 640px = ~1.1734 (aspect ratio) */
}

.form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media query for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%; /* Full width on mobile */
    }

    .form-container iframe {
        height: auto; /* Allow height to adjust */
        min-height: 500px; /* Minimum height for usability */
    }
}

@media (max-width: 480px) {
    .form-container iframe {
        min-height: 400px; /* Further reduce for very small screens */
    }
}

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

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

.btn-outline:hover {
    background-color: rgba(58, 124, 165, 0.1);
}

/* Header & Navigation */
header {
    padding: 20px 0;
    background-color: var(--background);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

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

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-button span {
    height: 3px;
    width: 25px;
    background-color: var(--text);
    margin: 3px 0;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

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

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badge img {
    height: 40px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats {
    background-color: var(--primary);
    padding: 60px 0;
    color: white;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    text-align: center;
}

.stats-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stats-item p {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

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

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(58, 124, 165, 0.1);
    border-radius: 50%;
}

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

.feature-card h3 {
    margin-bottom: 15px;
}

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

/* How It Works Section */
.how-it-works {
    text-align: center;
}

.steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

/* App Showcase Section */
.app-showcase {
    background-color: var(--background-alt);
    padding: 100px 0;
}

.app-showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-content h2 {
    margin-bottom: 20px;
}

.showcase-content p {
    margin-bottom: 30px;
    font-size: 1.125rem;
}

.showcase-features {
    margin-bottom: 30px;
}

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

.showcase-features i {
    color: var(--success);
    margin-right: 10px;
}

.showcase-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Pricing Section */
.pricing {
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

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

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

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-header p {
    color: var(--text-light);
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
}

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

.pricing-features i {
    margin-right: 10px;
    color: var(--success);
}

.pricing-features .feature-disabled i {
    color: var(--text-light);
}

.annual-discount {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(58, 124, 165, 0.1);
    border-radius: var(--border-radius);
    display: inline-block;
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 50px;
}

.testimonial {
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--card) transparent;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--card-border);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
}

/* FAQ Section */
.faq {
    text-align: center;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    text-align: left;
}

.faq-toggle i {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background-color: var(--background-alt);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

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

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.cta .btn-primary:hover {
    background-color: var(--background-alt);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background-color: var(--background-alt);
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-company {
    max-width: 300px;
}

.footer-company p {
    margin: 20px 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(58, 124, 165, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s;
}

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

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-link-group h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

.footer-link-group a {
    color: var(--text-light);
}

.footer-link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero .container,
    .app-showcase .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-features {
        display: inline-block;
        text-align: left;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-company {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-link-group {
        min-width: 120px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}