/* assets/css/site.css - Core site & header stylesheet */
:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --red: #ef4444;
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s;
}

header.scrolled .navbar {
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: all 0.3s;
}

header.scrolled .logo img {
    height: 36px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s;
}

header.scrolled .logo-text {
    font-size: 1.4rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 1.2rem;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    font-size: 1.05rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(79, 70, 229, 0.4);
}

.cta-button i {
    font-size: 0.95rem;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.hero-image-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotateY(-15deg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
    will-change: transform;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image:hover .hero-image-inner {
    transform: rotateY(-8deg) translateY(-10px);
}

.tagline {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    font-weight: 500;
}

.tagline i {
    font-size: 0.9rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 .line-2 {
    display: block;
    margin-top: -0.3em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 90%;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 25px;
}

.secondary-button {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
}

.secondary-button:hover {
    background-color: #f5f3ff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title p {
    color: var(--dark);
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px) translateZ(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #e0e7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--dark);
    line-height: 1.7;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.feature-card:hover p {
    color: var(--dark);
}

/* How It Works */
.how-it-works {
    padding: 50px 0;
    background-color: #f8fafc;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 1;
    opacity: 0.15;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 23%;
    perspective: 1000px;
}

.step-inner {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    transform-style: preserve-3d;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.step:hover .step-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.4s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.step h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.5rem;
}

.step p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background-color: white;
}

.pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 35px;
    margin-top: 60px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.pricing-card {
    flex: 0 0 calc(25% - 27px);
    scroll-snap-align: start;
    background-color: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    min-width: 280px;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.pricing-card.popular::after {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary);
    color: white;
    padding: 6px 40px;
    font-size: 1rem;
    font-weight: 500;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
    border-color: #d1d5db;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.price span {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 400;
    margin-top: 12px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-features li i {
    color: var(--dark);
    margin-top: 4px;
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background-color: #f8fafc;
}

.testimonial-slider {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.6s ease;
    gap: 35px;
    padding-bottom: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: calc(33.333% - 24px);
    position: relative;
    transition: all 0.4s;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 6rem;
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-section p {
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.9;
    font-size: 1.2rem;
}

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

.white-button {
    background-color: white;
    color: var(--primary);
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
}

.white-button:hover {
    background-color: #f1f5f9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.white-button i {
    font-size: 1.1rem;
}

.outline-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.outline-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.outline-button i {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave .shape-fill {
    fill: var(--primary-dark);
}

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

.footer-main {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-logo img {
    height: 50px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 500px;
}

.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-text {
    color: #94a3b8;
    font-size: 1.05rem;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.links-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.links-list li a i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.links-list li a:hover {
    color: white;
    transform: translateX(5px);
}

.links-list li a:hover i {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.95rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.legal-links a:hover {
    color: white;
}

.copyright {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
}

.animated {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .testimonial-card {
        min-width: calc(50% - 18px);
    }

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

    .pricing-card {
        flex: 0 0 calc(33.333% - 24px);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .cta-section h2 {
        font-size: 2.4rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        margin-top: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }

    .steps::before {
        display: none;
    }

    .step {
        width: 100%;
    }

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

    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        flex: 0 0 calc(50% - 18px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.4rem;
    }

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

    .hero {
        padding: 180px 0 100px;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .feature-card {
        padding: 35px;
    }

    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 40px;
    }

    .footer-wave svg {
        height: 60px;
    }

    .pricing-card {
        flex: 0 0 calc(100% - 0px);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .feature-card {
        padding: 30px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .step-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .price {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons a {
        width: 80%;
        justify-content: center;
    }

    .testimonial-card {
        padding: 35px 30px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
