:root {
    --primary: #f5800b;
    --primary-hover: #e0740a;
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --card-bg: #ffffff;
    --card-border: #eeeeee;
    --accent-color: #f5800b;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
.header {
    width: 100%;
    z-index: 9999;
}

.header.scrolled {
    padding-top: 0;
}

.nav-container.floating-nav {
    position: fixed !important;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: auto;
    min-width: 950px;
    max-width: 1400px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container.floating-nav.scrolled {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    min-width: 950px;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 2rem;
    border-top: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-dark-pill {
    background: #121212;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;


    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-dark-pill i {
    font-size: 1rem;
    opacity: 0.8;






}

.btn-dark-pill:hover {
    background: #000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

    color: white;
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff8f0;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid #ffe8cc;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.hero h1.accent {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 2rem auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-cta {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, background 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    border: 1px solid #ddd;
    color: var(--text-main);
}

.hero-image {
    position: relative;
    margin-top: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.dashboard-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Logo Slider Section */
.logo-slider-section {
    padding: 4rem 0 7rem;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slider-title {
    text-align: center;
    color: #8b8b8b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.logo-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: scrollLogos 50s linear infinite;
    padding: 1rem 0;
    white-space: nowrap;
}

.logo-item {
    flex: 0 0 auto;
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #cbd5e0;
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    user-select: none;
}

.logo-item:hover .brand-logo {
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 3rem));
    }
}

/* Features Grid */
.features {
    padding: 8rem 2rem;
    background: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #fff8f0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f0f0f0;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Bottom */
.cta-bottom {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item summary {
    padding: 1.5rem 0;
    list-style: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    border-top: 1px solid #eee;
    padding: 5rem 2rem 2rem;
    background: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* FAQ Page */
.faq-page {
    padding: 10rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-sticky h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: block;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: #fff8f0;
    color: var(--primary);
}

.sidebar-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-category-section {
    margin-bottom: 5rem;
}

.faq-category-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.faq-item-premium {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-premium:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.faq-item-premium summary {
    padding: 1.5rem 2rem;
    list-style: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item-premium summary i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item-premium[open] summary i {
    transform: rotate(45deg);
}

.faq-item-premium .faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: none;
    }
}

/* Pricing Page */
.pricing-page {
    padding: 10rem 2rem 5rem;
    max-width: 100%;
    margin: 0 auto;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.pricing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(224, 247, 250, 0.5) 0%, rgba(224, 247, 250, 0) 40%),
        radial-gradient(circle at 90% 10%, rgba(252, 228, 236, 0.5) 0%, rgba(252, 228, 236, 0) 40%),
        radial-gradient(circle at 50% 90%, rgba(255, 243, 224, 0.5) 0%, rgba(255, 243, 224, 0) 40%);
    z-index: 0;
    pointer-events: none;
}

.pricing-page::after {
    display: none;
}

.pricing-header,
.pricing-grid,
.pricing-guarantee {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-main);
}

.discount-badge {
    background: #e6f7ef;
    color: #22c55e;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem 1.2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 0.3rem;
    display: inline-block;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.period {
    color: var(--text-muted);
    font-size: 1rem;
}

.plan-limits {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.limit-item:last-child {
    margin-bottom: 0;
}

.limit-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.plan-features li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.plan-cta .btn-cta {
    width: 100%;
    justify-content: center;
}

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: #fdfaf6;
    border: 1px dashed #f5800b;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.5rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* Features Page */
.features-page {
    padding: 8rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 6rem;
}

.features-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.features-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 6rem;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row-even {
    /* default layout: content left, visual right */
}

.feature-row-odd {
    direction: rtl;
    /* simple way to reverse layout */
}

.feature-row-odd .feature-content,
.feature-row-odd .feature-visual {
    direction: ltr;
    /* reset content direction */
}

.feature-icon-main {
    width: 64px;
    height: 64px;
    background: #fff8f0;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.feature-details-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-detail-card {
    display: flex;
    gap: 1.2rem;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-color: #ffe8cc;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--text-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.feature-detail-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Mockup Placeholder */
.feature-visual {
    position: relative;
}

.mockup-placeholder {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: #f3f4f6;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fafafa;
}

.mockup-skeleton-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    width: 100%;
}

.mockup-skeleton-line.short {
    width: 60%;
}

.mockup-skeleton-box {
    flex-grow: 1;
    background: #e5e7eb;
    border-radius: 12px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #fdfaf6 0%, #fff 100%);
    border: 1px dashed var(--primary);
    padding: 5rem 2rem;
    border-radius: 32px;
    margin-top: 4rem;
}

.features-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.features-cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .feature-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row-odd {
        direction: ltr;
    }

    .features-container {
        gap: 5rem;
    }
}

/* Mega Menu Dropdown Styles */
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown>a {
    display: flex;
    align-items: center;
}

.spy-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    pointer-events: none;
}

.nav-item-dropdown:hover .spy-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* Arrow for dropdown */
.spy-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Invisible bridge to prevent hover loss */
.spy-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.spy-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spy-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.2s;
}

.spy-dropdown-item:hover {
    background: #fdfaf6;
}

.spy-dropdown-item i {
    font-size: 1.25rem;
    color: var(--primary);
    background: #fff4ea;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.spy-dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spy-dropdown-item strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.spy-dropdown-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sopyo Exact Replication - Isolated CSS to prevent site.css conflicts */
.spy-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

.spy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero */
.spy-hero {
    text-align: center;
    padding: 7rem 0 5rem;
}

.spy-badge {
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.spy-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1.2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.spy-hero p {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.spy-btn-orange {
    background: #f26d21;
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(242, 109, 33, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
}

.spy-btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 109, 33, 0.35);
    color: #fff;
}

/* Advantages Bar */
.spy-adv {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.5rem 0;
    margin-bottom: 8rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.spy-adv-title {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.spy-adv-title span {
    color: #0d6efd;
    /* Sopyo Blue */
}

.spy-adv-text {
    flex: 1;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Z-Pattern Content Rows */
.spy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 10rem;
}

.spy-row.reverse {
    flex-direction: row-reverse;
}

.spy-text {
    flex: 1;
    max-width: 50%;
}

.spy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.spy-text>p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.spy-sub {
    margin-bottom: 1.5rem;
}

.spy-sub h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.spy-sub p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.spy-btn-dark {
    background: #1a1a1a;
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 1.5rem;
}

.spy-btn-dark:hover {
    background: #333;
    color: #fff;
}

/* Mockup Visuals - Sopyo Blobs & Cards */
.spy-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    max-width: 50%;
}

.spy-blob {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spy-blob.blue {
    background: radial-gradient(circle, rgba(235, 244, 255, 1) 0%, rgba(235, 244, 255, 0) 70%);
}

.spy-blob.pink {
    background: radial-gradient(circle, rgba(255, 240, 245, 1) 0%, rgba(255, 240, 245, 0) 70%);
}

.spy-blob.orange {
    background: radial-gradient(circle, rgba(255, 245, 235, 1) 0%, rgba(255, 245, 235, 0) 70%);
}

.spy-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#e2e8f0 2.5px, transparent 2.5px);
    background-size: 18px 18px;
    z-index: 2;
    bottom: 20px;
    left: 20px;
}

.spy-row.reverse .spy-dots {
    left: auto;
    right: 20px;
}

/* The Main Center Card */
.spy-card-group {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 400px;
}

.spy-main-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 3.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.spy-visual:hover .spy-main-card {
    transform: translateY(-8px);
}

/* Floating Mini Cards for Sopyo effect */
.spy-sub-card {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

.spy-sub-card i {
    font-size: 1.2rem;
}

.sc-top-right {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.sc-bottom-left {
    bottom: -30px;
    left: -30px;
    animation-delay: 3s;
}

.sc-top-left {
    top: -20px;
    left: -40px;
    animation-delay: 1.5s;
}

.sc-bottom-right {
    bottom: -20px;
    right: -40px;
    animation-delay: 4.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* FAQ Section (Melontik Style) */
.spy-faq-section {
    background: linear-gradient(135deg, rgba(255, 240, 235, 0.7) 0%, rgba(235, 245, 255, 0.7) 100%);
    padding: 6rem 0;
    position: relative;
}

.spy-faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.spy-faq-subtitle {
    color: #f26d21;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.spy-faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.spy-faq-desc {
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.spy-faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
}

.spy-faq-accordion .accordion-item {
    background: #ffffff;
    border: none !important;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 0 !important;
    overflow: hidden;
}

.spy-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-radius: 30px;
}

.spy-faq-accordion .accordion-button {
    border: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: transparent;
    color: #1a1a1a;
    font-weight: 600;
    padding: 1.25rem 2rem;
    border-radius: 50px !important;
    box-shadow: none !important;
    font-size: 1.05rem;
}

.spy-faq-accordion .accordion-button:not(.collapsed) {
    background: #f26d21;
    color: #ffffff;
}

.spy-faq-accordion .accordion-button::after {
    display: none;
}

.spy-faq-accordion .faq-icon {
    margin-left: auto;
    font-size: 1.5rem;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spy-faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: #ffffff;
    color: #f26d21;
    border-radius: 50%;
    font-size: 1.2rem;
}

.spy-faq-accordion .accordion-body {
    padding: 0.5rem 2rem 1.5rem 2rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.spy-faq-footer {
    text-align: right;
    max-width: 850px;
    margin: 2rem auto 0;
}

.spy-btn-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spy-btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .spy-adv {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        margin-bottom: 5rem;
    }

    .spy-row,
    .spy-row.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .spy-text,
    .spy-visual {
        max-width: 100%;
    }

    .spy-text {
        text-align: center;
    }

    .spy-hero {
        padding: 4rem 0 3rem;
    }

    .spy-hero h1 {
        font-size: 2.5rem;
    }

    .spy-blob {
        width: 350px;
        height: 350px;
    }

    .spy-sub-card {
        display: none;
        /* hide floating elements on mobile to prevent overflow */
    }
}

.spy-faq-accordion .accordion-collapse.collapse:not(.show) {
    display: none !important;
}


/* WhatsApp Widget Refined */
.spy-wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spy-wa-widget:hover {
    transform: scale(1.05) translateY(-5px);
}

.spy-wa-icon {
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.spy-wa-text {
    background-color: #25d366;
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 10px 18px 10px 32px;
    margin-left: -28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.spy-wa-text span {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .spy-wa-text {
        display: none;
    }

    .spy-wa-icon {
        margin-left: 0;
    }
}

/* Contact Page (Melontik Style) */
.spy-contact-page {
    background: linear-gradient(135deg, rgba(255, 240, 235, 0.7) 0%, rgba(235, 245, 255, 0.7) 100%);
    padding: 6rem 0;
    min-height: 80vh;
}

.spy-contact-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.spy-contact-subtitle {
    color: #f26d21;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.spy-contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.spy-contact-hero p {
    color: #666;
    font-size: 1.05rem;
}

.spy-contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.spy-contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 3rem;
}

.spy-form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.spy-form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.spy-form-row .spy-form-group {
    margin-bottom: 0;
}

.spy-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.spy-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

.spy-input:focus {
    outline: none;
    border-color: #f26d21;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 109, 33, 0.1);
}

.spy-textarea {
    resize: vertical;
    min-height: 120px;
}

.spy-btn-submit {
    width: 100%;
    background: #2b2b2b;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.spy-btn-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spy-contact-info-cards {
    display: flex;
    gap: 2rem;
}

.spy-info-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.spy-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.spy-info-card .info-icon {
    font-size: 2rem;
    color: #f26d21;
    margin-bottom: 1rem;
}

.spy-info-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.spy-info-card p,
.spy-info-card a {
    color: #f26d21;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
}

.spy-info-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .spy-form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .spy-form-row .spy-form-group {
        margin-bottom: 1.5rem;
    }

    .spy-contact-form-card {
        padding: 2rem 1.5rem;
    }

    .spy-contact-info-cards {
        flex-direction: column;
    }
}


/* Documentation Page 3-Column Layout */
.spy-docs-page {
    padding: 8rem 0 6rem;
    background-color: #ffffff;
    min-height: 800px;
}

.spy-docs-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Ensure flex layout for the row */
.spy-docs-page .row {
    display: flex !important;
    flex-wrap: wrap;
}

/* Left Sidebar */
.spy-docs-sidebar-left {
    position: sticky;
    top: 140px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 1.5rem;
    border-right: 1px solid #f0f0f0;
}

.sidebar-widget {
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.2rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.sidebar-nav a:hover {
    color: #111;
    background: #f8f9fa;
}

.sidebar-nav a.active {
    color: #f26d21;
    background: #fff8f4;
    font-weight: 700;
}

/* Center Content Area */
.spy-docs-content-main {
    padding: 0 4rem;
    flex: 1;
    /* Take remaining space */
}

.docs-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.docs-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Right Sidebar: On this page */
.spy-docs-sidebar-right {
    position: sticky;
    top: 140px;
    height: fit-content;
    padding-left: 1.5rem;
    border-left: 1px solid #f0f0f0;
}

.toc-widget {
    padding-left: 1rem;
}

.toc-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.toc-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-links li {
    margin-bottom: 0.6rem;
}

.toc-links a {
    text-decoration: none;
    color: #777;
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.toc-links a:hover {
    color: #111;
}

.toc-links a.active {
    color: #f26d21;
    border-left-color: #f26d21;
}

@media (max-width: 991px) {

    .spy-docs-sidebar-left,
    .spy-docs-sidebar-right {
        position: static;
        height: auto;
        max-height: none;
        padding: 0;
        border: none;
        margin-bottom: 2rem;
    }

    .spy-docs-content-main {
        padding: 0;
    }
}

.spy-docs-content-main {
    padding: 0;
}

.toc-widget {
    border: none;
    padding: 0;
}

.toc-links a {
    margin-left: 0;
}


.spy-docs-content {
    padding-left: 0;
}

.docs-title {
    font-size: 2.5rem;
}


.docs-feature-card {
    display: block;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.docs-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(242, 109, 33, 0.2);
}

.dfc-icon {
    width: 50px;
    height: 50px;
    background: rgba(242, 109, 33, 0.1);
    color: #f26d21;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.docs-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.docs-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dfc-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f26d21;
    display: flex;
    align-items: center;
    gap: 5px;
}

.docs-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
}

.docs-pagination a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.docs-pagination .dp-prev {
    text-align: left;
}

.docs-pagination .dp-next {
    text-align: right;
}

.dp-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.dp-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.docs-pagination a:hover .dp-title {
    color: #f26d21;
}

@media (max-width: 991px) {
    .spy-docs-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-right: 0;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .spy-docs-content {
        padding-left: 0;
    }
}

/* Detailed Features Section */
.detailed-features {
    padding: 8rem 2rem;
    background: #fff;
}

.detailed-features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-header {
    text-align: center;
    margin-bottom: 6rem;
}

.sub-badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.detailed-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #111;
}

.detailed-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
}

.visual-card {
    background: #fcfcfc;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.visual-card img {
    width: 100%;
    border-radius: 12px;
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111;
}

.feature-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-info .btn-dark-pill {
    margin-top: 1rem;
    width: fit-content;
}

@media (max-width: 991px) {

    .detailed-features .feature-row,
    .detailed-features .feature-row.reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .detailed-features .feature-info .btn-dark-pill {
        margin: 1rem auto 0;
    }
}

/* MODERN FEATURE PAGE COMPONENTS */
.feature-page-container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #111;
    overflow-x: hidden;
}

.hero-main-style {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.sub-badge-home {
    background: #fff4ed;
    color: #f26d21;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main-style h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-main-style .lead {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions-centered {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-orange-home {
    background: #f26d21;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-orange-home:hover {
    background: #d95a16;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 109, 33, 0.2);
    color: #fff;
}

.btn-outline-home {
    background: #fff;
    color: #111;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.btn-outline-home:hover {
    background: #f9f9f9;
    border-color: #111;
}

.btn-home-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f26d21;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-home-pill:hover {
    gap: 12px;
}

.detailed-features-light {
    padding: 100px 0;
}

.feature-row-home {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-row-home.reverse {
    flex-direction: row-reverse;
}

.feature-info-home {
    flex: 1;
}

.feature-visual-home {
    flex: 1;
}

.feature-info-home h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.feature-info-home p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.visual-card-home {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.features-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.grid-item-home {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.grid-item-home:hover {
    transform: translateY(-5px);
    border-color: #f26d21;
    box-shadow: 0 15px 30px rgba(242, 109, 33, 0.08);
}

.grid-icon-box {
    width: 60px;
    height: 60px;
    background: #fff4ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.grid-item-home i {
    font-size: 2rem;
    color: #f26d21;
    margin-bottom: 0;
    display: block;
}

.grid-item-home h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.grid-item-home p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.feature-faq-light {
    padding: 100px 0;
    background: #fff;
}

.faq-item-home {
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.faq-item-home summary {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
}

.faq-item-home summary::-webkit-details-marker {
    display: none;
}

.faq-answer-home {
    padding-top: 15px;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.marquee-wrapper {
    overflow: hidden;
    background: linear-gradient(90deg, #f26d21 0%, #ffb74d 100%);
    padding: 15px 0;
    white-space: nowrap;
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-flex;
    animation: marquee-anim 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-right: 60px;
    letter-spacing: 1px;
}

.marquee-item i {
    font-size: 1.4rem;
    margin-left: 5px;
    opacity: 0.8;
}

@keyframes marquee-anim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.final-cta-home {
    padding: 120px 0;
    background: #fffcf9;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
}

.cta-visual-grid {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(#f26d21 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.glow-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(242, 109, 33, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    border: 1px solid #ffe6d5;
}

.glow-icon i {
    font-size: 3rem;
    color: #f26d21;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: 0.3s;
}

.cta-pill-badge:hover {
    transform: scale(1.05);
    background: #333;
}

.badge-tag {
    background: #f26d21;
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.final-cta-home h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.accent-text {
    color: #f26d21;
}

.final-cta-home p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-main-style h1 {
        font-size: 2.8rem;
    }

    .hero-actions-centered {
        flex-direction: column;
        padding: 0 20px;
    }

    .feature-row-home,
    .feature-row-home.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .features-grid-home {
        grid-template-columns: 1fr;
    }

    .final-cta-home h2 {
        font-size: 2.2rem;
    }

    .final-cta-home {
        padding: 80px 20px;
    }
}

/* PREMIUM PRICING PAGE (Melontik Inspired) */
.pricing-page {
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-page::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(224, 242, 254, 0.4) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pricing-page::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 237, 213, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #111;
}

.pricing-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: #f26d21;
}

.pricing-card.popular {
    border-color: #f26d21;
    background: #fff;
    box-shadow: 0 30px 60px rgba(242, 109, 33, 0.08);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f26d21;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    color: #111;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: #666;
}

.plan-price .period {
    font-size: 1rem;
    color: #999;
    font-weight: 500;
}

.plan-limits {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.limit-item {
    background: #f9f9f9;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
}

.limit-item i {
    color: #f26d21;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    flex-grow: 1;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.plan-features li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.plan-features li i {
    color: #f26d21;
    font-size: 1rem;
}

.plan-cta {
    margin-top: auto;
}

.plan-cta .btn-cta {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    background: #fcfcfc;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.guarantee-icon i {
    font-size: 2rem;
    color: #22c55e;
}

.guarantee-text h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 1rem;
}

.guarantee-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        max-width: 450px;
    }

    .pricing-header h1 {
        font-size: 2.2rem;
    }
}

/* ANIMATED ROTATING BORDER TOGGLE */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    gap: 20px;
    align-items: center;
}

.pricing-toggle-glow {
    position: relative;
    display: inline-flex;
    padding: 2px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-toggle-glow::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(#fff0 0%, #ff7855 30%, #55dcff 40%, #fff0 70%);
    animation: slow-rotate 3s linear infinite;
    transform-origin: 50%;
    will-change: transform;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pricing-toggle {
    background: #fff;
    padding: 4px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.toggle-switch-rect {
    position: absolute;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: #f26d21;
    border-radius: 100px;
    transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 0;
    left: 4px;
}

input:checked~.toggle-switch-rect {
    left: 50%;
}

.toggle-label {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    user-select: none;
    margin: 0;
}

input:not(:checked)~#monthly-label,
input:checked~#yearly-label {
    color: #fff;
}

.yearly-discount-tooltip {
    background: #1a1513;
    color: #ffb74d;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
}

.yearly-discount-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1a1513;
}

/* MELONTIK CUSTOM UTILITIES */
.stack-h {
    display: flex;
    flex-direction: row;
}

.stack-v {
    display: flex;
    flex-direction: column;
}

.br-full {
    border-radius: 9999px !important;
}

.br-12 {
    border-radius: 12px;
}

.br-16 {
    border-radius: 16px;
}

.br-24 {
    border-radius: 24px;
}

.w-100% {
    width: 100%;
}

.h-100% {
    height: 100%;
}

.grow {
    flex-grow: 1;
}

.zoom-09 {
    zoom: 0.9;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-16 {
    font-size: 1rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-32 {
    font-size: 2rem;
}

.bg-primary-own {
    background-color: #f26d21 !important;
    color: #fff !important;
}

.text-primary-own {
    color: #f26d21 !important;
}

.bg-dark-own {
    background-color: #1a1513 !important;
    color: #fff !important;
}

.bg-secondary-own {
    background-color: #fffcf9;
}

.shadow-custom-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.slow-rotate-linear {
    transform-origin: 50%;
    will-change: transform;
    animation: slow-rotate 3s linear infinite;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================================
   RESPONSIVE & MOBILE — Senior Frontend Audit
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* --- Hamburger Button --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Overlay --- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 19998;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* --- Mobile Drawer --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 90vw);
    height: 100dvh;
    background: #fff;
    z-index: 19999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile-drawer-close {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s;
}

.mobile-drawer-close:hover {
    background: #eee;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    flex-grow: 1;
    gap: 4px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #f26d21;
}

.mobile-nav-group {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-group-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    padding-top: 6px;
}

.mobile-nav-sublink {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 2px;
}

.mobile-nav-sublink i {
    color: #f26d21;
    font-size: 1rem;
}

.mobile-nav-sublink:hover {
    background: #fff4ed;
    color: #f26d21;
}

.mobile-drawer-cta {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

/* ============================================================
   TABLET — 1024px
   ============================================================ */
@media (max-width: 1024px) {

    /* Nav: remove min-width, show hamburger */
    .nav-container.floating-nav {
        min-width: unset;
        width: calc(100% - 32px);
        max-width: 100%;
        padding: 0.6rem 1.2rem;
        gap: 1rem;
    }

    .nav-container.floating-nav.scrolled {
        min-width: unset;
        width: 100%;
        border-radius: 0 0 20px 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    /* Feature rows */
    .feature-row-home,
    .feature-row-home.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }

    .feature-info-home h2 {
        font-size: 2rem;
    }

    /* Features grid: 2 cols on tablet */
    .features-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero */
    .hero-main-style h1 {
        font-size: 3rem;
    }

    .hero-main-style .lead {
        font-size: 1.15rem;
    }

    /* Spy rows */
    .spy-row,
    .spy-row.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .spy-text {
        max-width: 100%;
    }

    .spy-adv {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* ============================================================
   MOBILE — 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Global padding */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Hero */
    .hero-main-style {
        padding: 100px 20px 60px;
    }

    .hero-main-style h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-main-style .lead {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-actions-centered {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-orange-home,
    .btn-outline-home {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 28px;
    }

    /* Feature page sections */
    .detailed-features-light {
        padding: 60px 0;
    }

    .feature-faq-light {
        padding: 60px 20px;
    }

    .final-cta-home {
        padding: 70px 20px;
    }

    .final-cta-home h2 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .final-cta-home p {
        font-size: 1rem;
    }

    /* Feature rows */
    .feature-row-home {
        gap: 30px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .feature-info-home h2 {
        font-size: 1.7rem;
    }

    .feature-info-home p {
        font-size: 1rem;
    }

    /* Features grid: 1 col on mobile */
    .features-grid-home {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
        padding: 0 20px;
    }

    .grid-item-home {
        padding: 28px 24px;
    }

    /* Stats row */
    .stat-card-home {
        margin-bottom: 10px;
    }

    /* FAQ */
    .faq-item-home {
        padding: 16px;
    }

    .faq-item-home summary {
        font-size: 0.95rem;
    }

    /* Marquee */
    .marquee-item {
        font-size: 0.9rem;
        margin-right: 40px;
    }

    /* Pricing */
    .pricing-page {
        padding: 80px 20px 40px;
    }

    .pricing-header h1 {
        font-size: 1.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0;
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pricing-toggle-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .yearly-discount-tooltip::before {
        display: none;
    }

    /* FAQ Page */
    .faq-page {
        padding: 90px 20px 40px;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: none;
    }

    /* Glow icon CTA */
    .glow-icon {
        width: 70px;
        height: 70px;
    }

    .glow-icon i {
        font-size: 2rem;
    }

    .cta-pill-badge {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }

    /* Old hero */
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* CTA bottom */
    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   SMALL MOBILE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero-main-style h1 {
        font-size: 1.8rem;
    }

    .final-cta-home h2 {
        font-size: 1.65rem;
    }

    .feature-info-home h2 {
        font-size: 1.5rem;
    }

    .sub-badge-home {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .nav-container.floating-nav {
        top: 1rem;
        padding: 0.5rem 1rem;
    }

    .pricing-header h1 {
        font-size: 1.65rem;
    }
}

/* ============================================================
   LARGE SCREENS — Wide & Ultra-Wide Monitors
   Breakpoints: 1440px (large desktop), 1920px (FHD 27"), 2560px (QHD 32")
   ============================================================ */

/* --- 1440px: Large Desktop / 24" --- */
@media (min-width: 1440px) {
    .nav-container.floating-nav {
        min-width: 1100px;
        max-width: 1500px;
        padding: 0.7rem 2.5rem;
        gap: 2.5rem;
    }

    .hero-main-style h1 {
        font-size: 4.5rem;
    }

    .hero-main-style .lead {
        font-size: 1.5rem;
        max-width: 860px;
    }

    .feature-row-home {
        gap: 100px;
        margin-bottom: 140px;
    }

    .grid-item-home {
        padding: 48px;
    }

    .final-cta-home h2 {
        font-size: 4rem;
    }

    .final-cta-home {
        padding: 140px 0;
    }

    .pricing-header h1 {
        font-size: 3.2rem;
    }

    .pricing-grid {
        max-width: 1100px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .container {
        max-width: 1320px;
    }

    .spy-container {
        max-width: 1320px;
    }
}

/* --- 1920px: Full HD 27" / Large Monitors --- */
@media (min-width: 1920px) {
    .nav-container.floating-nav {
        min-width: 1300px;
        max-width: 1700px;
        padding: 0.8rem 3rem;
    }

    .hero-main-style {
        padding: 160px 0 100px;
    }

    .hero-main-style h1 {
        font-size: 5.5rem;
        letter-spacing: -3px;
    }

    .hero-main-style .lead {
        font-size: 1.6rem;
        max-width: 960px;
    }

    .feature-row-home {
        gap: 130px;
        margin-bottom: 160px;
    }

    .feature-info-home h2 {
        font-size: 3rem;
    }

    .feature-info-home p {
        font-size: 1.25rem;
    }

    /* Grid: 4 columns on large monitors */
    .features-grid-home {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .grid-item-home {
        padding: 56px 48px;
    }

    .grid-item-home h3 {
        font-size: 1.7rem;
    }

    .grid-item-home p {
        font-size: 1.1rem;
    }

    .final-cta-home h2 {
        font-size: 5rem;
    }

    .final-cta-home {
        padding: 160px 0;
    }

    .glow-icon {
        width: 120px;
        height: 120px;
    }

    .glow-icon i {
        font-size: 3.5rem;
    }

    .faq-item-home summary {
        font-size: 1.1rem;
    }

    .pricing-header h1 {
        font-size: 3.6rem;
    }

    .pricing-grid {
        max-width: 1300px;
        gap: 30px;
    }

    .pricing-card {
        padding: 50px 36px;
    }

    .plan-price {
        font-size: 3rem;
    }

    .container {
        max-width: 1600px;
    }

    .spy-container {
        max-width: 1600px;
    }

    .footer-container {
        max-width: 1600px;
    }
}

/* --- 2560px: QHD / 32" Monitors --- */
@media (min-width: 2560px) {
    .nav-container.floating-nav {
        min-width: 1600px;
        max-width: 2200px;
        padding: 0.9rem 4rem;
        font-size: 1.05rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero-main-style {
        padding: 200px 0 120px;
    }

    .hero-main-style h1 {
        font-size: 7rem;
        letter-spacing: -4px;
    }

    .hero-main-style .lead {
        font-size: 1.8rem;
        max-width: 1100px;
    }

    .btn-orange-home,
    .btn-outline-home {
        padding: 18px 44px;
        font-size: 1.05rem;
    }

    .feature-row-home {
        gap: 160px;
        margin-bottom: 200px;
    }

    .feature-info-home h2 {
        font-size: 3.8rem;
        letter-spacing: -1.5px;
    }

    .feature-info-home p {
        font-size: 1.35rem;
        line-height: 1.9;
    }

    .features-grid-home {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
    }

    .grid-item-home {
        padding: 64px;
        border-radius: 28px;
    }

    .grid-item-home h3 {
        font-size: 2rem;
    }

    .grid-item-home p {
        font-size: 1.15rem;
    }

    .grid-icon-box {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }

    .grid-item-home i {
        font-size: 2.5rem;
    }

    .faq-item-home {
        padding: 28px 32px;
        border-radius: 16px;
    }

    .faq-item-home summary {
        font-size: 1.2rem;
    }

    .final-cta-home {
        padding: 200px 0;
    }

    .final-cta-home h2 {
        font-size: 6rem;
        letter-spacing: -3px;
    }

    .final-cta-home p {
        font-size: 1.4rem;
    }

    .glow-icon {
        width: 140px;
        height: 140px;
        border-radius: 35px;
    }

    .glow-icon i {
        font-size: 4rem;
    }

    .pricing-header h1 {
        font-size: 4.5rem;
    }

    .pricing-header p {
        font-size: 1.3rem;
        max-width: 750px;
    }

    .pricing-grid {
        max-width: 1600px;
        gap: 40px;
    }

    .pricing-card {
        padding: 60px 44px;
        border-radius: 32px;
    }

    .plan-price {
        font-size: 3.8rem;
    }

    .plan-header h3 {
        font-size: 1.6rem;
    }

    .footer {
        padding: 8rem 4rem 3rem;
    }

    .footer-container {
        max-width: 2200px;
        gap: 8rem;
    }

    .footer-links {
        gap: 8rem;
    }

    .container {
        max-width: 2100px;
    }

    .spy-container {
        max-width: 2100px;
    }

    .sub-badge-home {
        font-size: 1rem;
        padding: 10px 24px;
    }
}


/* Error Page Styles */
.error-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.error-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 900;
    color: #f26d21;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -5px;
    animation: pulseCode 3s ease-in-out infinite;
}

.error-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.error-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.btn-orange-home {
    background: #f26d21;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(242, 109, 33, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-orange-home:hover {
    background: #e65c0d;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 109, 33, 0.4);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(242, 109, 33, 0.1);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(242, 109, 33, 0.05);
    bottom: -50px;
    right: -50px;
}

@keyframes pulseCode {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(242, 109, 33, 0));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 10px 20px rgba(242, 109, 33, 0.2));
    }
}

/* Pricing Detail Features Styles */
.pricing-features-detailed {
    padding: 8rem 0;
    background: #fff;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-visual {
    flex: 1;
}

.visual-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-info {
    flex: 1;
    text-align: left;
}

.feature-info h3 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.feature-info p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.feature-bullets {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    list-style: none;
}

.bullet-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bullet-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.5;
}

.btn-dark-pill {
    background: #111;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-dark-pill:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
}


/* Fix for Feature Bullets */
.feature-bullets {
    list-style: none !important;
    padding: 0 !important;
    margin-left: 0 !important;
}

.bullet-item {
    list-style: none !important;
}


/* Global fix for ALL pricing and feature lists to remove bullets */
.pricing-page ul,
.pricing-page li,
.plan-features,
.plan-features li,
.feature-bullets,
.feature-bullets li,
.bullet-item {
    list-style-type: none !important;
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* Pricing Contact Section */
.pricing-contact-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
}

.pricing-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-contact-header .sub-badge-home {
    color: #f26d21;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.pricing-contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.pricing-contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.pricing-contact-form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.pricing-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-form-group {
    margin-bottom: 1.5rem;
}

.pricing-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.pricing-form-group input,
.pricing-form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.3s ease;
}

.pricing-form-group input:focus,
.pricing-form-group textarea:focus {
    outline: none;
    border-color: #f26d21;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(242, 109, 33, 0.1);
}

.pricing-form-group textarea {
    height: 150px;
    resize: none;
}

.pricing-form-submit {
    margin-top: 2rem;
    text-align: center;
}

.btn-form-submit {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 1.2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-form-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .pricing-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-contact-visual {
        order: 2;
        height: 400px;
    }

    .pricing-contact-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .pricing-form-row {
        grid-template-columns: 1fr;
    }

    .pricing-contact-form-card {
        padding: 2rem 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 10rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Blur/Fade Overlay */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 300px;
    /* Increased height for better transition */
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(2px);
    /* Subtle blur effect */
    -webkit-backdrop-filter: blur(2px);
}

.testimonials-section::before {
    top: 0;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-section::after {
    bottom: 0;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #f26d21;
}

.testimonial-stars {
    color: #f26d21;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
}

/* Center Content in Middle Column */
.testimonials-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: transparent;
    z-index: 2;
}

.testimonials-center-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.btn-testimonial-cta {
    background: #111;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-testimonial-cta:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-column:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-center-content h2 {
        font-size: 2.2rem;
    }
}

/* Homepage Testimonial Slider */
.home-testimonial-slider {
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

.slider-container-home {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    height: 450px;
}

.slider-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #eee;
    width: 600px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.7);
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.slider-card.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    position: relative;
    z-index: 5;
    box-shadow: 0 25px 60px rgba(242, 109, 33, 0.08);
    border-color: rgba(242, 109, 33, 0.2);
    pointer-events: auto;
}

.slider-card.prev {
    opacity: 0.3;
    filter: blur(4px);
    transform: translateX(-60%) scale(0.8);
    z-index: 1;
    display: block;
}

.slider-card.next {
    opacity: 0.3;
    filter: blur(4px);
    transform: translateX(60%) scale(0.8);
    z-index: 1;
    display: block;
}

.slider-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.slider-card .role {
    font-size: 1rem;
    font-weight: 600;
    color: #f26d21;
    margin-bottom: 2rem;
    display: block;
}

.slider-card .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 4rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #111;
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .slider-card {
        width: 100%;
        position: relative;
        display: none;
    }

    .slider-card.active {
        display: block;
    }

    .slider-card.prev,
    .slider-card.next {
        display: none;
    }

    .slider-wrapper {
        height: auto;
    }
}

/* Screenshot Slider Section */
.screenshot-slider-section {
    padding: 8rem 0;
    background: #fdfdfd;
    text-align: center;
}

.screenshot-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
}

.screenshot-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    padding: 2rem 0;
}

.screenshot-item {
    flex: 0 0 60%;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0.5;
    transform: scale(0.9);
    display: none;
}

.screenshot-item.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 70px rgba(242, 109, 33, 0.15);
}

.screenshot-item img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.nav-btn:hover {
    background: #f26d21;
    color: #fff;
    border-color: #f26d21;
}

/* Who is this for Section */
.who-is-this-for {
    padding: 10rem 0;
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.who-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.who-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border-color: rgba(242, 109, 33, 0.2);
}

.who-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(242, 109, 33, 0.1);
    color: #f26d21;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
}

.who-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.who-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .screenshot-item {
        flex: 0 0 100%;
    }

    .slider-nav {
        display: none;
    }
}

/* Otopratik Style Testimonial Slider */
.testimonial-slider-otopratik {
    padding: 8rem 0;
    background: #fdfdfd;
    text-align: center;
}

.section-header-otopratik {
    margin-bottom: 4rem;
}

.satisfaction-badge {
    color: #555;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header-otopratik h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.otopratik-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
}

.otopratik-slider-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    height: 380px;
}

.otopratik-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    width: 400px;
    text-align: left;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.otopratik-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 5;
    transform: scale(1);
}

.otopratik-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) scale(0.9);
    display: flex;
    pointer-events: auto;
}

.otopratik-card.next {
    opacity: 0.4;
    transform: translateX(80%) scale(0.9);
    display: flex;
    pointer-events: auto;
}

.card-header-otopratik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.user-name {
    font-weight: 700;
    color: #444;
}

.quote-icon-otopratik {
    color: rgba(242, 109, 33, 0.2);
    font-size: 2rem;
}

.card-body-otopratik {
    flex-grow: 1;
}

.card-body-otopratik p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-footer-otopratik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 1px solid #f5f5f5;
    padding-top: 1rem;
}

.stars-otopratik {
    color: #f26d21;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.date-otopratik {
    color: #999;
    font-size: 0.85rem;
}

.otopratik-nav-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 1px solid #eee;
    color: #999;
}

.otopratik-nav-btn:hover {
    background: #f26d21;
    color: #fff;
}

.otopratik-nav-btn.prev { left: 0; }
.otopratik-nav-btn.next { right: 0; }

.otopratik-footer-btn {
    margin-top: 3rem;
}

.btn-otopratik-orange {
    background: #f26d21;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-otopratik-orange:hover {
    background: #d95a16;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242,109,33,0.2);
    color: #fff;
}

@media (max-width: 991px) {
    .otopratik-card {
        width: 100%;
        position: relative;
        opacity: 0;
        display: none;
    }
    .otopratik-card.active {
        display: flex;
        opacity: 1;
    }
    .otopratik-card.prev, .otopratik-card.next {
        display: none;
    }
    .otopratik-slider-wrapper {
        height: auto;
    }
}

/* Premium Who Is This For Section */
.who-is-this-for-premium {
    padding: 8rem 0;
    background: #fff;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-header-premium p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.who-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card-premium {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.who-card-premium:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #eee;
}

.who-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.who-card-premium:hover .who-icon-wrapper {
    background: #f26d21;
}

.who-icon-wrapper i {
    font-size: 1.8rem;
    color: #f26d21;
    transition: all 0.4s ease;
}

.who-card-premium:hover .who-icon-wrapper i {
    color: #fff;
}

.who-card-premium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.who-card-premium p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .who-is-this-for-premium {
        padding: 5rem 0;
    }
    
    .section-header-premium h2 {
        font-size: 2rem;
    }
    
    .who-grid-premium {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

/* Premium Screenshot Carousel */
.screenshot-slider-section-premium {
    padding: 8rem 0;
    background: #fdfdfd;
    overflow: hidden;
}

.screenshot-slider-section-premium .section-header-premium h2 span {
    color: #f26d21;
}

.screenshot-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.screenshot-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.screenshot-box {
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
}

.screenshot-img-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.screenshot-box:hover .screenshot-img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.screenshot-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.screenshot-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.carousel-nav-premium {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    border: none;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-btn:hover {
    background: #f26d21;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .screenshot-box {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .screenshot-box {
        flex: 0 0 100%;
    }
    .carousel-nav-premium {
        left: 10px;
        right: 10px;
    }
}

/* Testimonials Page Styles */
.testimonials-page {
    padding: 10rem 0;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 6rem;
}

.testimonials-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
}

.testimonials-header span {
    color: #f26d21;
    font-weight: 700;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-masonry .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonials-masonry .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #f26d2133;
}

.testimonials-masonry .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonials-masonry .user-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.testimonials-masonry .bi-quote {
    color: rgba(242, 109, 33, 0.15);
    font-size: 2.2rem;
}

.testimonials-masonry .card-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonials-masonry .card-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonials-masonry .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 1.2rem;
}

.testimonials-masonry .stars {
    color: #f26d21;
    letter-spacing: 2px;
}

.testimonials-masonry .date {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .testimonials-masonry {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-header h1 {
        font-size: 2.2rem;
    }
    .testimonials-masonry {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

/* Sectoral Solutions Section */
.sectoral-solutions {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(242, 109, 33, 0.2);
}

.sector-icon {
    width: 54px;
    height: 54px;
    background: rgba(242, 109, 33, 0.08);
    color: #f26d21;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    background: #f26d21;
    color: #fff;
    transform: rotateY(180deg);
}

.sector-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sector-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sectoral-solutions {
        padding: 5rem 0;
    }
    
    .sector-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .sector-card {
        padding: 2rem;
    }
}


