/* =================
   Embedded Fonts
   ================= */
/* Fonts embedded locally - no external dependencies */

/* =================
   CSS Variables & Fonts
   ================= */
:root {
    /* Logo-inspired Colors */
    --primary-green: hsl(160 85% 25%);
    --primary-green-light: hsl(160 85% 35%);
    --primary-green-dark: hsl(160 85% 20%);
    --accent-blue: hsl(210 100% 50%);
    --accent-blue-light: hsl(210 100% 60%);
    --accent-blue-dark: hsl(210 100% 40%);
    --accent-purple: hsl(280 100% 60%);
    --accent-pink: hsl(320 100% 65%);

    /* Beautiful Light Core Colors */
    --background: hsl(0 0% 100%);
    --background-secondary: hsl(210 100% 98%);
    --background-tertiary: hsl(160 50% 97%);
    --foreground: hsl(240 10% 3.9%);
    --muted: hsl(240 4.8% 95.9%);
    --muted-foreground: hsl(240 3.8% 46.1%);
    --border: hsl(240 5.9% 90%);
    --destructive: hsl(0 84% 60%);

    /* Typography */
    --font-family: 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-large: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-3d: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

/* =================
   Reset & Base Styles
   ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background: linear-gradient(135deg,
            hsl(0 0% 100%) 0%,
            hsl(210 100% 98%) 25%,
            hsl(160 50% 97%) 50%,
            hsl(280 30% 98%) 75%,
            hsl(0 0% 100%) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =================
   Layout Components
   ================= */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* =================
   Navigation
   ================= */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.2);
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
}

.nav-container {
    padding: 0.75rem 1rem;
}

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

.logo-image {
    height: 3rem;
    width: auto;
    transform: scale(1);
    transition: all 0.5s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-cta {
    margin-left: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 2.5rem;
    }

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

/* =================
   Buttons
   ================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(22, 163, 74, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    box-shadow: 0 15px 35px -5px rgba(22, 163, 74, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.cta-button.secondary {
    background: var(--muted);
    color: var(--foreground);
    border: 2px solid var(--border);
}

.cta-button.secondary:hover {
    background: var(--background);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* =================
   Hero Section
   ================= */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg,
            rgba(22, 163, 74, 0.05) 0%,
            rgba(59, 130, 246, 0.08) 25%,
            rgba(280, 100%, 60%, 0.06) 50%,
            rgba(320, 100%, 65%, 0.08) 75%,
            rgba(22, 163, 74, 0.05) 100%);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(22, 163, 74, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(280, 100%, 60%, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.3) 1px, transparent 0);
    background-size: 150px 150px, 120px 120px, 100px 100px, 20px 20px;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transform-style: preserve-3d;
    transition: all 0.8s ease;
}

.hero-title:hover {
    transform: translateZ(20px) scale(1.02);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.text-primary {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.badge-3d {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(22, 163, 74, 0.08) 30%,
            rgba(59, 130, 246, 0.06) 70%,
            rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.15);
}

.badge-3d:hover {
    transform: translateY(-10px) rotateZ(5deg) scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-green);
}

.badge-icon.accent {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

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

/* =================
   Hero Image Section
   ================= */
.hero-image-section {
    padding: 4rem 0;
}

.hero-image-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.save-badge {
    background: var(--destructive);
    color: white;
}

.setup-badge {
    background: var(--accent-blue);
    color: white;
}

/* =================
   Services Section
   ================= */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(22, 163, 74, 0.06) 0%,
            rgba(59, 130, 246, 0.08) 25%,
            rgba(280, 100%, 60%, 0.05) 50%,
            rgba(320, 100%, 65%, 0.07) 75%,
            rgba(22, 163, 74, 0.06) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.90) 0%,
            rgba(22, 163, 74, 0.05) 30%,
            rgba(59, 130, 246, 0.06) 70%,
            rgba(255, 255, 255, 0.90) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
}

.service-card:hover {
    transform: translateY(-20px) rotateY(5deg) rotateX(5deg) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.card-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary-green);
}

.section-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(22, 163, 74, 0.08) 25%,
            rgba(59, 130, 246, 0.06) 50%,
            rgba(280, 100%, 60%, 0.05) 75%,
            rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius-large);
    margin-top: 3rem;
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* =================
   Pricing Section
   ================= */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(280, 100%, 60%, 0.06) 25%,
            rgba(22, 163, 74, 0.07) 50%,
            rgba(320, 100%, 65%, 0.08) 75%,
            rgba(59, 130, 246, 0.08) 100%);
    position: relative;
}

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

.pricing-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(59, 130, 246, 0.06) 30%,
            rgba(280, 100%, 60%, 0.04) 70%,
            rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.pricing-card:hover {
    transform: translateY(-25px) scale(1.08);
    box-shadow: 0 50px 100px -25px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.popular-plan {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(22, 163, 74, 0.08) 30%,
            rgba(59, 130, 246, 0.06) 70%,
            rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 0 25px rgba(22, 163, 74, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.popular-glow {
    position: relative;
}

.popular-glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-blue), var(--primary-green));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: glow-pulse 2s ease-in-out infinite;
}

.popular-glow:hover::after {
    opacity: 0.3;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.plan-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.period {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.sandbox-price {
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.feature-check {
    width: 1rem;
    height: 1rem;
    color: var(--primary-green);
}

.plan-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button.primary {
    background: var(--primary-green);
    color: white;
}

.plan-button:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* =================
   Contact Form Section
   ================= */
.trial-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(22, 163, 74, 0.08) 0%,
            rgba(59, 130, 246, 0.10) 25%,
            rgba(280, 100%, 60%, 0.06) 50%,
            rgba(320, 100%, 65%, 0.08) 75%,
            rgba(22, 163, 74, 0.08) 100%);
    position: relative;
}

.form-container {
    max-width: 100%;
    margin: 0 auto;
}

.trial-form {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(22, 163, 74, 0.06) 25%,
            rgba(59, 130, 246, 0.05) 50%,
            rgba(280, 100%, 60%, 0.04) 75%,
            rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    transform-style: preserve-3d;
    transition: all 0.8s ease;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.12);
}

.trial-form:hover {
    transform: translateZ(10px) scale(1.02);
    box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    color: var(--destructive);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loading {
    display: none;
}

.button-loading .spin {
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .trial-form {
        padding: 2rem;
    }
}

/* =================
   Footer
   ================= */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 3rem;
    width: auto;
}

.footer-tagline {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* =================
   Toast Notification
   ================= */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    background: var(--primary-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.toast-message {
    font-weight: 600;
}

/* =================
   3D Effects & Animations
   ================= */
.icon-3d {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-3d:hover {
    transform: rotateY(360deg) scale(1.2);
}

.card-3d {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card-3d {
    transform-style: preserve-3d;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

/* =================
   FAQ Section Styles 
   ================= */
.faq-section {
    background: linear-gradient(135deg,
            var(--bg-gradient-start) 0%,
            var(--bg-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%,
            rgba(29, 155, 113, 0.1) 0%,
            transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(29, 155, 113, 0.1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
    background: linear-gradient(135deg,
            rgba(29, 155, 113, 0.05) 0%,
            rgba(29, 155, 113, 0.02) 100%);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-green);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    padding-top: 0.5rem;
}

/* =================
   Toast Styles 
   ================= */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =================
   Responsive Design
   ================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

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

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 5rem 0 3rem;
    }

    .services-section,
    .pricing-section,
    .trial-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

/* =================
   Utility Classes
   ================= */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}