/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --max-width: 1200px;
    --header-height: 90px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.23);
}

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

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

.section {
    padding: 100px 0;
}

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

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Header */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
}

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

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.stat-item .label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.image-wrapper {
    position: relative;
    perspective: 1000px;
}

.placeholder-img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover .placeholder-img {
    transform: rotateY(-2deg) rotateX(2deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    min-width: 200px;
}

.floating-card i {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 10px;
}

.card-1 {
    top: 40px;
    left: -40px;
    z-index: 2;
}

.card-1 i {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
}

.card-2 {
    bottom: 40px;
    right: -40px;
    z-index: 2;
    animation-delay: 3s;
}

.card-2 i {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.floating-card .text {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 0.9rem;
    color: var(--text-color);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

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

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

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Plugins Section */
.bg-light {
    background-color: var(--bg-light);
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.check-list i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.plugin-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-circle {
    width: 120px;
    height: 120px;
    background: var(--text-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.05);
}

.orbit-item {
    position: absolute;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: orbit 20s linear infinite;
}

.orbit-item i {
    color: var(--primary-color);
}

.item-1 {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
    animation-delay: -0s;
}

.item-2 {
    transform: rotate(72deg) translateX(150px) rotate(-72deg);
    animation-delay: -4s;
}

.item-3 {
    transform: rotate(144deg) translateX(150px) rotate(-144deg);
    animation-delay: -8s;
}

.item-4 {
    transform: rotate(216deg) translateX(150px) rotate(-216deg);
    animation-delay: -12s;
}

.item-5 {
    transform: rotate(288deg) translateX(150px) rotate(-288deg);
    animation-delay: -16s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Pricing Section */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+label {
    background-color: var(--primary-color);
}

.toggle-switch input:checked+label:before {
    transform: translateX(22px);
}

.badge-save {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.popular-tag {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--text-color);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.setup-fee {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 500;
}

.plan-desc {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
    font-size: 0.95rem;
}

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

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #10b981;
    min-width: 16px;
}

.full-width {
    width: 100%;
}

/* Plugins Table */
.plugins-section {
    margin-top: 80px;
    text-align: center;
}

.plugins-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.plugins-section p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.table-responsive {
    overflow-x: auto;
}

.plugins-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.plugins-table th {
    background: #f3f4f6;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
}

.plugins-table td {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
    color: var(--text-color);
}

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

.table-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.btn-sm {
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Cost Justification */
.cost-justification {
    margin-top: 80px;
}

.cost-justification h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
}

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

.justification-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.justification-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.justification-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.justification-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ROI Calculator */
.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
    transition: var(--transition);
}

.range-value {
    color: var(--primary-color);
    font-weight: 700;
}

.roi-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 40px;
    border-left: 1px solid #f3f4f6;
}

.result-card {
    background: #f9fafb;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card.highlight {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.result-card.highlight .result-label,
.result-card.highlight .result-value {
    color: var(--white);
}

.result-label {
    font-weight: 600;
    color: var(--text-light);
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
}

.roi-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 200px;
    /* Approximate max height */
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer & Legal */
footer {
    background: #111827;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .logo {
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 20px;
}

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

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .stats {
        justify-content: center;
    }

    .plugin-visual {
        margin-top: 50px;
    }

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

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .roi-results {
        border-left: none;
        border-top: 1px solid #f3f4f6;
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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