:root {
    --primary: #0166ff;
    --primary-dark: #0047b3;
    --primary-light: #e6f0ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    --success: #00e676;
    --warning: #ff9100;
    --danger: #ff5252;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
    color: var(--gray);
}

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

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

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(1, 102, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn-primary:hover, .btn-primary-cta:hover  {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 102, 255, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 8px;
}

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

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    height: 80px;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    /* height: 40px; */
    width: 100%;
    transition: var(--transition);
}

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

.nav-menu li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--black);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
    overflow: hidden;
}

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

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray);
}

.badge-item i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.2rem;
}

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

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    box-shadow: var(--box-shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    display: flex;
    align-items: center;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 12px;
}

.floating-card span {
    font-weight: 600;
    white-space: nowrap;
}

.card-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -20px;
    right: -20px;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Brands Section */
.brands {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.brands p {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1rem;
}

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

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

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

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(1, 102, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(1, 102, 255, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(1, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Tools Section */
.features-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid var(--gray);
    border-radius: 30px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.filter-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.tool-card {
    width: 365px;
    height: 500px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(1, 102, 255, 0.1);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tool-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
}

.tool-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.tool-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tool-status {
    position: absolute;
    top: 65px;
    right: 25px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-available {
    background-color: var(--success);
    color: var(--white);
}

.status-development {
    background-color: var(--warning);
    color: var(--white);
}

.status-coming {
    background-color: var(--gray);
    color: var(--white);
}

.tool-body {
    padding: 25px;
}

.tool-description {
    margin-bottom: 20px;
    min-height: 72px;
}

.tool-features {
    margin-bottom: 25px;
}

.tool-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.tool-cta {
    text-align: center;
}

.development-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 30px;
    text-align: center;
}

.development-overlay h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.loading-animation {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* How It Works Section */
.steps {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 40px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(1, 102, 255, 0.2);
}

.step-content {
    padding-top: 15px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-demo {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.video-wrapper {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.video-wrapper img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.play-button i {
    color: var(--primary);
    font-size: 30px;
    margin-left: 5px;
    transition: var(--transition);
}

.play-button:hover i {
    color: var(--white);
}

.video-cta {
    flex: 1;
}

.video-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pricing-tab {
    padding: 12px 28px;
    background-color: transparent;
    border: 1px solid var(--gray);
    border-radius: 30px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.pricing-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pricing-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.price-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(1, 102, 255, 0.1);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.recommended {
    border: 2px solid var(--primary);
}

.price-header {
    padding: 30px;
    text-align: center;
    background-color: var(--light-gray);
}

.price-card.recommended .price-header {
    background-color: rgba(1, 102, 255, 0.1);
}

.price-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

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

.price-body {
    padding: 30px;
}

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

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.price-cta {
    text-align: center;
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(1, 102, 255, 0.3);
}

.pricing-footer {
    text-align: center;
    margin-top: 50px;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 380px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid rgba(1, 102, 255, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    font-size: 1.05rem;
}

.testimonial-text:before {
    content: '"';
    font-size: 5rem;
    color: rgba(1, 102, 255, 0.1);
    position: absolute;
    top: -30px;
    left: -15px;
    line-height: 1;
    z-index: 0;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-gray);
}

.faq-answer p {
    padding: 0 25px 25px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.cta-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    font-display: flex;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

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

.cta-box p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.cta-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-form input {
    flex: 1;
    padding: 16px 25px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.cta-form input:focus {
    border-color: var(--primary);
}

.cta-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 16px 30px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray);
}

.benefit-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col:first-child {
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

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

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

.footer-bottom p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-links a {
    color: #adb5bd;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* WhatsApp Float Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 1110px) {
    iframe{
        width: 100%;
        height: 500px;
    }

    .video-wrapper{
        width: 90%;
        height: 500px;
    }

    .container{
        width: 90%;
    }

    section {
        padding: 80px 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 60px;
        max-width: 100%;
    }

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

    .trust-badges {
        justify-content: center;
    }

    .video-demo {
        flex-direction: column;
        gap: 40px;
    }

    .video-wrapper {
        width: 100%;
    }
    
    .video-cta {
        text-align: center;
    }
    
    .logo{
        width: 20%;
        display: flex;
        align-items: center;
    }

    .logo img {
        /* height: 40px; */
        width: 100%;
        transition: var(--transition);
    }

    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
    }

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

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

    .hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .floating-card {
        /* display: none; */
    }
    
    .steps:before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        margin-right: 30px;
    }
    
    .testimonial-card {
        min-width: 320px;
    }
}

@media (max-width: 900px) {
    .tool-card {
        max-width: 365px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .step-content {
        width: 80%;
        margin-left: 20%;
    }

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

    .logo img {
        /* height: 40px; */
        width: 100%;
        transition: var(--transition);
    }

    section {
        padding: 60px 0;
    }
    
    .section-header{
        text-align: left;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .hero-content{
        text-align: left;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .cta-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .steps:before {
        left: 35px;
        height: calc(100% - 80px);
        top: 80px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.recommended {
        transform: scale(1);
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        text-align: left;
        font-size: 1.8rem;
        margin-left: 10px;
    }

    .video-cta {
        text-align: left;
    }

    .video-cta h3{
        font-size: 1.8rem;
    }
}