/*
Theme Name: AFI Documentation Theme
Theme URI: https://advancedformintegration.com
Description: Modern, professional documentation theme for Advanced Form Integration plugin. Features responsive design, gradient accents, and comprehensive documentation layout.
Version: 1.0.0
Author: Advanced Form Integration
Author URI: https://advancedformintegration.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: afi-theme
Tags: documentation, modern, responsive, gradient, professional

This theme, like WordPress, is licensed under the GPL.
*/


/* =========================================
   Main Stylesheet
   ========================================= */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo i {
    font-size: 1.75rem;
}

.logo-icon {
    height: 28px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-login {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
    font-size: 0.95rem;
    border-radius: 10px;
}

.nav-login:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #475569;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 1.25rem;
    }

    .logo-icon {
        height: 24px;
    }

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

    .nav-right {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 20px 20px !important;
        gap: 0 !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
    }

    .nav-right.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-login,
    .nav-cta {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 8px;
        text-align: left;
    }

    .nav-login {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
}

/* Homepage Styles */
/* Index Page Specific Styles */
header {
    transition: all 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-100%);
}

.logo {
    transition: all 0.3s;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s;
}

.nav-links a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links .dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    margin-left: 0.35rem;
    transition: transform 0.3s;
    opacity: 0.7;
}

.nav-links li:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 10px;
    gap: 0.35rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    padding-left: 1.25rem;
}

.dropdown-item-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.dropdown-item-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.5;
}

/* Nav CTA animation effect for index page */
.nav-cta {
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e293b;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    color: #673de6;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu.active .hamburger {
    background: transparent;
}

.mobile-menu.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.mobile-nav.active {
    max-height: calc(100vh - 70px);
    padding: 1rem;
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

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

.mobile-nav-links li {
    border-bottom: 1px solid #f1f5f9;
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}

.mobile-nav.active .mobile-nav-links li {
    animation: slideIn 0.3s ease forwards;
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(6) {
    animation-delay: 0.35s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-links a:hover {
    background: #f8fafc;
    padding-left: 1.5rem;
}

.mobile-dropdown-content {
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-content a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.mobile-nav-links .fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-nav-links a.expanded .fa-chevron-down {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(217, 70, 239, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #10b981;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
    display: block;
    font-size: 3rem;
    margin-top: 0.5rem;
    background: linear-gradient(to right, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(3px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.integration-flow {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.integration-flow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 24px;
    z-index: -1;
}

.flow-header {
    text-align: center;
    margin-bottom: 2rem;
}

.flow-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flow-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.flow-step:nth-child(2) {
    animation-delay: 0.5s;
}

.flow-step:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {

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

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

.flow-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.flow-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.flow-item i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-item svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    fill: #6366f1;
}

.flow-item-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.flow-item-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.flow-arrow {
    color: #10b981;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Social Proof */
.social-proof {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.trust-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.trust-logo-item i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.trust-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.trust-logo-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    text-align: center;
}

.trust-logo-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial {
    font-size: 1.05rem;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.testimonial-stars {
    color: #fbbf24;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Customer Reviews */
.customer-reviews {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.customer-reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.customer-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 1rem;
    border: 1px solid #fbbf24;
}

.customer-reviews-badge i {
    font-size: 1rem;
}

.customer-reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.customer-reviews-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.customer-review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customer-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e7ff;
    flex-shrink: 0;
}

.customer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.customer-designation {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.verified-buyer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #dcfce7;
    color: #16a34a;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.verified-buyer-badge i {
    font-size: 0.85rem;
}

.review-content {
    flex: 1;
}

.review-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.review-message {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    font-size: 1.1rem;
}

/* What Is AFI */
.what-is-afi {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.what-is-afi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.what-is-afi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.what-is-afi-text {
    text-align: left;
}

.what-is-afi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
    border: 1px solid #c7d2fe;
}

.what-is-afi-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.2;
}

.what-is-afi-title .gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-is-afi-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.what-is-afi-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.what-is-afi-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.what-is-afi-feature:hover {
    border-color: #6366f1;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.what-is-afi-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.what-is-afi-feature-text {
    flex: 1;
}

.what-is-afi-feature-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.what-is-afi-feature-desc {
    font-size: 0.9rem;
    color: #64748b;
}

.what-is-afi-visual {
    position: relative;
}

.what-is-afi-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.what-is-afi-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.what-is-afi-diagram {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diagram-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.diagram-box {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.diagram-row-apps {
    justify-content: center;
}

.diagram-box-app {
    flex: 0 1 auto;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.diagram-box:hover {
    border-color: #6366f1;
    transform: scale(1.05);
}

.diagram-box i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.diagram-box-icon {
    width: 2rem;
    height: 2rem;
    fill: #6366f1;
    margin: 0 auto 0.5rem;
    display: block;
}

.diagram-box-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.diagram-arrow {
    color: #6366f1;
    font-size: 1.5rem;
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.diagram-connector {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Key Benefits */
.benefits {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.benefit-card-inner {
    position: relative;
    z-index: 1;
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 18px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s;
}

.benefit-card:hover .benefit-icon-wrapper::after {
    inset: -8px;
    opacity: 0.3;
}

.benefit-icon {
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
    line-height: 1.3;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.benefit-link i {
    transition: transform 0.3s;
}

.benefit-link:hover {
    gap: 0.75rem;
}

.benefit-link:hover i {
    transform: translateX(3px);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    transition: all 0.4s;
}

.benefit-card:hover .benefit-number {
    color: #e0e7ff;
    transform: scale(1.2);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.how-it-works-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-timeline {
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #d946ef);
    transform: translateX(-50%);
    z-index: 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step:nth-child(even) .step-content {
    order: 3;
    text-align: left;
}

.step:nth-child(odd) .step-content {
    order: 1;
    text-align: right;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #6366f1;
}

.step:nth-child(odd) .step-content::before {
    right: -22px;
    transform: translateY(-50%);
}

.step:nth-child(even) .step-content::before {
    left: -22px;
    transform: translateY(-50%);
}

.step-content:hover {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.step-number-wrapper {
    order: 2;
    position: relative;
    z-index: 2;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-placeholder {
    order: 3;
}

.step:nth-child(even) .step-placeholder {
    order: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.step-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-feature-tag {
    background: #f1f5f9;
    color: #6366f1;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.step-time i {
    font-size: 0.8rem;
}

/* Integrations Gallery */
.integrations {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.integrations-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.integrations-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.integrations-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.integrations-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.integrations-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.integration-logo-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    text-align: center;
}

.integration-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.integration-logo-card img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.integration-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.integration-logo-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.integration-logo-card:hover .integration-logo-title {
    color: #1e293b;
}

.integrations-view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.view-all-button i {
    transition: transform 0.3s;
}

.view-all-button:hover i {
    transform: translateX(5px);
}

/* Features */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #d946ef);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 18px;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon-wrapper::after {
    inset: -8px;
    opacity: 0.3;
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.feature-header-text {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature-label {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    color: #6366f1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.feature-benefit i {
    color: #10b981;
    font-size: 0.9rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.feature-link i {
    transition: transform 0.3s;
}

.feature-link:hover {
    gap: 0.75rem;
}

.feature-link:hover i {
    transform: translateX(3px);
}

.feature-visual {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.feature-code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #6366f1;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.use-cases-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.use-cases-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.use-cases-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.use-cases-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.use-case-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-case-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s;
}

.use-case-card:hover .use-case-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.use-case-icon {
    font-size: 1.8rem;
    color: white;
}

.use-case-category {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    color: #6366f1;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
}

.use-case-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.use-case-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.use-case-stat {
    display: flex;
    flex-direction: column;
}

.use-case-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
}

.use-case-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.use-case-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.use-case-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.use-case-feature i {
    color: #10b981;
    font-size: 0.9rem;
}

.use-case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.use-case-link i {
    transition: transform 0.3s;
}

.use-case-link:hover {
    gap: 0.75rem;
}

.use-case-link:hover i {
    transform: translateX(3px);
}

.use-case-visual {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.use-case-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.use-case-diagram {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.use-case-flow-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.use-case-card:hover .use-case-flow-item {
    border-color: #6366f1;
}

.use-case-flow-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.use-case-flow-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.use-case-flow-arrow {
    text-align: center;
    color: #6366f1;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison {
    padding: 4rem 0;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.comparison-table .highlight {
    background: #eff6ff;
}

.check {
    color: #10b981;
    font-size: 1.2rem;
}

.cross {
    color: #ef4444;
    font-size: 1.2rem;
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.pricing-title-main {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-weight: 600;
    color: #64748b;
}

.pricing-toggle-label.active {
    color: #6366f1;
}

.pricing-toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-toggle-switch.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.pricing-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle-switch.active .pricing-toggle-slider {
    transform: translateX(30px);
}

.pricing-save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #6366f1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
}

.pricing-card .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #6366f1;
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.pricing-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-price {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
}

.pricing-cta:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.pricing-card.featured .pricing-cta:hover {
    background: linear-gradient(135deg, #5730c9, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 20px;
    border: 2px solid #c7d2fe;
}

.pricing-footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-footer-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.pricing-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.faq-question {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.faq-toggle {
    color: #6366f1;
    transition: all 0.3s;
    font-size: 1rem;
}

.faq-item.active .faq-toggle {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.75rem 1.75rem;
}

.faq-answer-content {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

.faq-sidebar {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #c7d2fe;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.faq-sidebar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-sidebar-text {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    width: 100%;
    justify-content: center;
}

.faq-sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.faq-sidebar-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #c7d2fe;
}

.faq-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.faq-sidebar-link:hover {
    color: #6366f1;
    padding-left: 0.5rem;
}

.faq-sidebar-link i {
    color: #6366f1;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #6366f1;
    font-size: 1.75rem;
}

.footer-logo-icon {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    transform: translateY(-3px);
}

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

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.footer-badge i {
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 968px) {

    .nav-center,
    .nav-right {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

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

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .cta-button,
    .hero-cta-group .cta-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .hero-decoration-1,
    .hero-decoration-2 {
        display: none;
    }

    .trust-logos {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .trust-logo-item {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial {
        font-size: 1rem;
    }

    .customer-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .customer-reviews-title {
        font-size: 2rem;
    }

    .customer-review-card {
        padding: 1.5rem;
    }

    .review-title {
        font-size: 1.1rem;
    }

    .review-message {
        font-size: 0.95rem;
    }

    .what-is-afi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .what-is-afi-text {
        text-align: center;
    }

    .what-is-afi-title {
        font-size: 2rem;
    }

    .what-is-afi-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .diagram-row {
        flex-direction: column;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }

    .integrations-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .integration-logo-card {
        padding: 1rem;
    }

    .integration-logo-card img {
        max-height: 40px;
    }

    .integration-logo-title {
        font-size: 0.75rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        grid-template-columns: 1fr;
    }

    .use-case-visual {
        min-height: 250px;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        margin-top: 2rem;
    }

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

    .benefits-grid,
    .features-grid,
    .use-cases-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        display: none;
    }

    .step {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .step-content,
    .step-placeholder {
        order: 2 !important;
        text-align: center !important;
    }

    .step-number-wrapper {
        order: 1 !important;
        margin: 0 auto;
    }

    .step-placeholder {
        display: none;
    }

    .step-content::before {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* -------------------------------------------------------------
   Blog Archive
   ------------------------------------------------------------- */

.blog-archive {
    padding: 140px 0 4rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 60%);
}

.blog-hero {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.blog-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.blog-hero__kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: inline-block;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
    color: #0f172a;
}

.blog-hero p {
    font-size: 1.15rem;
    color: #475569;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-search {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.blog-search__field {
    flex: 1;
    border: none;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
    font-weight: 500;
}

.blog-search__field:focus {
    outline: none;
}

.blog-search__button {
    border: none;
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-search__button:hover {
    opacity: 0.9;
}

.blog-search__status {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 600;
    color: #475569;
}

.blog-search__status span {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

.blog-filter-chips {
    margin: 0 auto 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.blog-filter-chip {
    padding: 0.55rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.blog-filter-chip span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.blog-filter-chip:hover,
.blog-filter-chip.active {
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.blog-filter-chip.reset {
    border-style: dashed;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
}

.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.blog-card__media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f8fafc;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #94a3b8;
}

.blog-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: #64748b;
}

.blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card__title {
    font-size: 1.55rem;
    line-height: 1.3;
    margin: 0;
}

.blog-card__title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__title a:hover {
    color: #6366f1;
}

.blog-card__excerpt {
    color: #475569;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.blog-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.blog-card__chip {
    font-size: 0.85rem;
    text-decoration: none;
    color: #475569;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.05);
    transition: all 0.2s ease;
}

.blog-card__chip:hover {
    color: #6366f1;
    border-color: #6366f1;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
}

.blog-card__read-more i {
    transition: transform 0.2s ease;
}

.blog-card__read-more:hover i {
    transform: translateX(4px);
}

.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: center;
}

.pagination a {
    padding: 0.65rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination a:hover,
.pagination a.active {
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.18);
}

.pagination-dots {
    color: #94a3b8;
    font-weight: 700;
    padding: 0 0.4rem;
}

.pagination-prev,
.pagination-next {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.blog-empty-state {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    border: 1px dashed #cbd5f5;
    border-radius: 24px;
    background: rgba(99, 102, 241, 0.04);
}

.blog-empty-state i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.blog-empty-state h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.blog-empty-state p {
    color: #475569;
    margin: 0;
}

@media (max-width: 767px) {
    .blog-card__body {
        padding: 1.5rem;
    }

    .blog-card__meta {
        flex-direction: column;
        gap: 0.35rem;
    }

    .blog-search {
        flex-direction: column;
        border-radius: 24px;
        padding: 1rem;
    }

    .blog-search__button {
        width: 100%;
        justify-content: center;
    }

    .blog-filter-chips {
        justify-content: flex-start;
    }
}

/* Pricing Page Styles */
/* Pricing Page Specific Styles */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 70, 239, 0.3) 0%, transparent 50%);
}

.pricing-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-hero-badge 2s ease-in-out infinite;
}

@keyframes pulse-hero-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.pricing-badge i {
    animation: fire-flicker 1.5s ease-in-out infinite;
}

@keyframes fire-flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pricing-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.pricing-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.3rem;
    color: #10b981;
}

.pricing-hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-left: -15px;
    transition: all 0.3s;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle:last-child {
    background: white;
    color: #6366f1;
    font-size: 0.85rem;
    font-weight: 700;
}

.avatar-circle:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.social-proof-text {
    text-align: left;
}

.social-proof-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #fbbf24;
}

.social-proof-stars span {
    margin-left: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.social-proof-text p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.pricing-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta-button i {
    position: relative;
    z-index: 1;
}

.hero-cta-primary {
    background: white;
    color: #6366f1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Pricing Dropdown */
.pricing-dropdown {
    width: 100%;
    margin-bottom: 2rem;
}

.pricing-dropdown label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.select-css {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.select-css:hover {
    border-color: #6366f1;
}

.select-css:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.select-css optgroup {
    font-weight: 700;
    color: #1e293b;
    padding: 0.5rem 0;
}

.select-css option {
    padding: 0.75rem;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-cards-section {
    padding: 6rem 0 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .plan-price {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-period {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

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

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.plan-features li i {
    color: #10b981;
    font-size: 1rem;
}

.plan-features li.unavailable {
    opacity: 0.4;
}

.plan-features li.unavailable i {
    color: #94a3b8;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
}

.plan-cta:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.pricing-card.featured .plan-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.pricing-card.featured .plan-cta:hover {
    background: linear-gradient(135deg, #5730c9, #7c3aed);
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.secure-payment-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.secure-payment-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.secure-payment-text strong {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 700;
}

.secure-payment-text span {
    font-size: 0.8rem;
    color: #64748b;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 5rem;
}

/* Plan Details */
.plan-details {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.plan-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.plan-details-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.plan-details-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.plan-details-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-details-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.plan-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #d946ef);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.detail-card:hover::before {
    transform: scaleY(1);
}

.detail-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.detail-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s;
}

.detail-card:hover .detail-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.detail-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.detail-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.detail-card-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.detail-card-feature i {
    color: #10b981;
    font-size: 1rem;
}

.detail-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.detail-card-link i {
    transition: transform 0.3s;
}

.detail-card-link:hover {
    gap: 0.75rem;
}

.detail-card-link:hover i {
    transform: translateX(3px);
}



/* FAQ Section */
.pricing-faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pricing-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.pricing-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.pricing-faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-faq-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.faq-question {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.faq-toggle {
    color: #6366f1;
    transition: all 0.3s;
    font-size: 1rem;
}

.faq-item.active .faq-toggle {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.75rem 1.75rem;
}

.faq-answer-content {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content strong {
    color: #1e293b;
    font-weight: 600;
}

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

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c7d2fe, transparent);
}

.guarantee-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 2rem;
    border: 1px solid #c7d2fe;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    position: relative;
    animation: pulse-guarantee 3s ease-in-out infinite;
}

@keyframes pulse-guarantee {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
    }
}

.guarantee-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.guarantee-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guarantee-subtitle {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #c7d2fe;
    transition: all 0.3s;
}

.guarantee-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.guarantee-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.guarantee-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guarantee-feature-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.guarantee-cta {
    margin-top: 3rem;
}

.guarantee-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.guarantee-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.final-cta>.container>.final-cta-content>p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.final-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.final-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

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

.cta-primary {
    background: white;
    color: #6366f1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.trust-item i {
    font-size: 1.2rem;
    color: #10b981;
}

.final-cta-testimonial {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.support-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    border: 1px solid #c7d2fe;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.support-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.support-card-featured {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.support-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.support-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.support-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s;
}

.support-card:hover .support-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.support-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.support-card-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.support-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
}

.support-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.support-meta-item i {
    color: #6366f1;
    font-size: 1rem;
}

.support-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.support-card-button:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.support-button-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.support-button-primary:hover {
    background: linear-gradient(135deg, #5730c9, #7c3aed);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 20px;
    border: 1px solid #c7d2fe;
}

.support-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.support-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.support-stat-content {
    text-align: left;
}

.support-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.support-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.support-resources {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.support-resources-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.support-resources-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.support-resource-link:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.support-resource-link i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-hero {
        padding: 120px 0 80px;
    }

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

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

    .pricing-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .pricing-hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .pricing-hero-social-proof {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .social-proof-text {
        text-align: center;
    }

    .social-proof-stars {
        justify-content: center;
    }

    .pricing-hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }

    .pricing-cards,
    .plan-details-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta>.container>.final-cta-content>p {
        font-size: 1.1rem;
    }

    .final-cta-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .cta-stat-number {
        font-size: 2.5rem;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .final-cta-testimonial {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

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

    .support-subtitle {
        font-size: 1.05rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-card-featured {
        transform: scale(1);
    }

    .support-card-featured:hover {
        transform: translateY(-8px);
    }

    .support-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .support-stat {
        justify-content: center;
    }

    .support-stat-content {
        text-align: center;
    }

    .support-resources-links {
        flex-direction: column;
        align-items: stretch;
    }

    .support-resource-link {
        justify-content: center;
    }
}

/* Documentation Page Styles */
.docs-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.docs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
}

.docs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.docs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.docs-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.docs-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.docs-search {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.docs-search input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.docs-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 1.2rem;
}

.docs-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 20px 4rem;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.docs-sidebar::-webkit-scrollbar {
    width: 4px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.docs-sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.docs-sidebar-title i {
    font-size: 0.875rem;
    color: #64748b;
}

.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.docs-nav-section {
    margin-bottom: 0;
}

.docs-nav-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    position: relative;
    border-radius: 0;
    margin-bottom: 0.5rem;
}

.docs-nav-section-header:hover .docs-nav-section-header-title {
    color: #6366f1;
}

.docs-nav-section-header.active .docs-nav-section-header-title {
    color: #1e293b;
}

.docs-nav-section-header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
    flex: 1;
}

.docs-nav-section-header-title i {
    font-size: 0.875rem;
    color: inherit;
    transition: all 0.2s;
}

.section-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    margin-left: auto;
    margin-right: 0.5rem;
    transition: all 0.2s;
}

.docs-nav-section-header:hover .section-count {
    color: #6366f1;
}

.docs-nav-section-toggle {
    transition: transform 0.2s;
    color: #cbd5e1;
    font-size: 0.75rem;
}

.docs-nav-section-header.active .docs-nav-section-toggle {
    transform: rotate(180deg);
}

.docs-nav-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    border-left: 1px solid #e2e8f0;
    margin-left: 0.5rem;
}

.docs-nav-section-content.active {
    max-height: 3000px;
    padding: 0.25rem 0 0 0;
}

.docs-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0 0.5rem 1.25rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 400;
    position: relative;
    border-left: 2px solid transparent;
    margin-left: -1px;
}

.docs-nav-link:hover {
    color: #1e293b;
    border-left-color: #cbd5e1;
}

.docs-nav-link.active {
    color: #6366f1;
    font-weight: 500;
    border-left-color: #6366f1;
}

.docs-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #e2e8f0;
    min-height: 600px;
}

.docs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

.docs-breadcrumb a {
    color: #6366f1;
    text-decoration: none;
}

.docs-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.docs-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.docs-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .docs-container {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
    }
}


/* Contact Page Styles */
.contact-page {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(to right, #10b981, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-content {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #6366f1;
    font-size: 0.9rem;
}

.form-control {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366f1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.75rem;
}

.checkbox-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-info-link:hover {
    gap: 0.75rem;
}

.contact-social {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #c7d2fe;
    text-align: center;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.contact-social-links a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    transform: translateY(-3px);
}

.contact-faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-faq-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq-grid .faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

.contact-faq-grid .faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.contact-faq-grid .faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.contact-faq-grid .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.contact-faq-grid .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.contact-faq-grid .faq-question:hover h3 {
    color: #6366f1;
}

.contact-faq-grid .faq-question i {
    color: #6366f1;
    font-size: 1rem;
    transition: transform 0.3s;
}

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

.contact-faq-grid .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.contact-faq-grid .faq-answer.active {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.contact-faq-grid .faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.contact-faq-grid .faq-answer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.contact-faq-grid .faq-answer a:hover {
    text-decoration: underline;
}

/* Blog Archive Styles */
.blog-archive {
    padding: 140px 0 4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.blog-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
    border: 1px solid #c7d2fe;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-search {
    /* max-width: 600px; */
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    gap: 0.75rem;
}

.blog-search__field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.blog-search__field:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.blog-search__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.blog-search__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.blog-search__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.95rem;
}

.blog-search__clear {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.blog-search__clear:hover {
    gap: 0.75rem;
}

.blog-filter-chips {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.blog-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-filter-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.blog-filter-chip:hover::before {
    left: 100%;
}

.blog-filter-chip:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.blog-filter-chip.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.blog-filter-chip.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse-chip 2s ease-in-out infinite;
}

@keyframes pulse-chip {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

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

.blog-filter-chip span {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s;
}

.blog-filter-chip:hover span,
.blog-filter-chip.active span {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.blog-filter-chip.reset {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: #fca5a5;
    color: #991b1b;
    font-weight: 700;
}

.blog-filter-chip.reset:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.blog-filter-chip.reset i {
    font-size: 0.75rem;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.blog-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6366f1;
}

.blog-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card__meta i {
    color: #6366f1;
}

.blog-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card__title a:hover {
    color: #6366f1;
}

.blog-card__excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.blog-card__categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-card__chip {
    padding: 0.35rem 0.75rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card__chip:hover {
    background: #6366f1;
    color: white;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.blog-card__read-more:hover {
    gap: 0.75rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-prev,
.pagination-next,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-prev:hover,
.pagination-next:hover,
.pagination-number:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.pagination-number.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
}

.pagination-dots {
    color: #94a3b8;
    padding: 0 0.5rem;
}

.blog-empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.blog-empty-state i {
    font-size: 5rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.blog-empty-state h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-empty-state p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-hero p {
        font-size: 1.05rem;
    }

    .blog-search {
        flex-direction: column;
    }

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

    .blog-filter-chips {
        justify-content: flex-start;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* =========================================
   Single Post Page Styles
   ========================================= */

.single-post {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Hero Section */
.single-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    overflow: hidden;
}

.single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(217, 70, 239, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.single-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.single-hero .container {
    position: relative;
    z-index: 1;
}

.single-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

/* Post Categories */
.post-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.category-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Single Title */
.single-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.meta-value:hover {
    text-decoration: underline;
}

/* Content Section */
.single-content-section {
    padding: 4rem 0;
}

.single-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar */
.single-sidebar {
    position: relative;
}

.sticky-widget {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.sticky-widget:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.widget-title i {
    color: #6366f1;
    font-size: 1rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.share-email:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
}

.share-copy:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Table of Contents */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s;
    font-size: 0.9rem;
    line-height: 1.5;
}

.toc-list a:hover,
.toc-list a.active {
    color: #6366f1;
    border-left-color: #6366f1;
    background: #f8fafc;
    padding-left: 1.25rem;
}

/* Main Content */
.single-content {
    max-width: 800px;
}

.featured-image-wrapper {
    margin-bottom: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    position: relative;
}

.featured-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
    border-radius: 24px;
    z-index: -1;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.02);
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.content-wrapper h2 {
    font-size: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #e2e8f0;
}

.content-wrapper h3 {
    font-size: 1.5rem;
}

.content-wrapper h4 {
    font-size: 1.25rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-wrapper a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.content-wrapper a:hover {
    border-bottom-color: #6366f1;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-wrapper blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    font-style: italic;
    color: #475569;
}

.content-wrapper code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #6366f1;
}

.content-wrapper pre {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
}

.content-wrapper pre code {
    background: none;
    color: #e2e8f0;
    padding: 0;
}

/* Post Tags */
.post-tags {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    margin-bottom: 3rem;
}

.tags-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.tags-title i {
    color: #6366f1;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tag-item:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #c7d2fe;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.author-bio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.author-bio-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.author-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.author-role {
    color: #6366f1;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.author-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-item i {
    color: #6366f1;
}

.author-description {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.author-social {
    position: relative;
    z-index: 1;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.author-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.nav-post {
    position: relative;
    padding: 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-post:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.nav-placeholder {
    background: transparent;
    border: 2px dashed #e2e8f0;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.nav-thumbnail {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.2;
    transition: all 0.4s;
}

.nav-post:hover .nav-thumbnail {
    opacity: 1;
}

.nav-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-next {
    text-align: right;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-next .nav-thumbnail {
    right: auto;
    left: 1rem;
}

/* Related Posts */
.related-posts {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title i {
    color: #6366f1;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.related-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.related-card-link {
    text-decoration: none;
    display: block;
}

.related-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

.related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.related-card:hover .related-card-overlay {
    opacity: 1;
}

.related-card-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: translateX(-10px);
    transition: transform 0.4s;
}

.related-card:hover .related-card-overlay i {
    transform: translateX(0);
}

.related-card-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    font-size: 3rem;
    color: #6366f1;
}

.related-card-content {
    padding: 2rem;
}

.related-card-category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    color: #6366f1;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.related-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.related-card:hover .related-card-title {
    color: #6366f1;
}

.related-card-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.related-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-card-meta i {
    color: #6366f1;
}

/* Comments Section */
.comments-section {
    padding: 4rem 0;
    background: white;
}

.comments-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .single-title {
        font-size: 2.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .single-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .single-sidebar {
        order: 2;
    }

    .single-content {
        order: 1;
    }

    .sticky-widget {
        position: static;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .nav-next .nav-label {
        justify-content: flex-start;
    }

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

    .author-bio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-stats {
        justify-content: center;
    }
}

/* =========================================
   Contact Form 7 Integration Styles
   ========================================= */

/* CF7 Form Structure */
.contact-form .wpcf7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* CF7 Form Inputs - Match Custom Styles */
.contact-form .wpcf7 input[type="text"],
.contact-form .wpcf7 input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form .wpcf7 input[type="url"],
.contact-form .wpcf7 textarea,
.contact-form .wpcf7 select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    transition: all 0.3s;
    background: white;
}

.contact-form .wpcf7 input:focus,
.contact-form .wpcf7 textarea:focus,
.contact-form .wpcf7 select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form .wpcf7 textarea {
    resize: vertical;
    min-height: 150px;
}

/* CF7 Submit Button */
.contact-form .wpcf7 input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contact-form .wpcf7 input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.contact-form .wpcf7 input[type="submit"]:active {
    transform: translateY(-1px);
}

/* CF7 Validation Messages */
.contact-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-acceptance-missing {
    padding: 1rem 1.25rem;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #dc2626;
    border-radius: 12px;
    margin: 0;
    font-weight: 600;
}

.contact-form .wpcf7-mail-sent-ok {
    padding: 1rem 1.25rem;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
    border-radius: 12px;
    margin: 0;
    font-weight: 600;
}

/* CF7 Spinner */
.contact-form .wpcf7-spinner {
    margin: 0 0 0 1rem;
}

/* CF7 Response Output */
.contact-form .wpcf7-response-output {
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Hide CF7 Form After Success */
.contact-form .wpcf7-mail-sent-ok ~ form {
    display: none;
}

/* CF7 Checkbox Styling for Newsletter */
.contact-form .wpcf7 .wpcf7-list-item {
    margin: 0;
}

.contact-form .wpcf7 .wpcf7-list-item-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form .wpcf7 input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    margin: 2px 0 0 0;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #6366f1;
}

/* Responsive CF7 Styles */
@media (max-width: 968px) {
    .contact-form .wpcf7 input[type="submit"] {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* CF7 Auto-Layout for First/Last Name Row */
.contact-form .wpcf7-form p:nth-child(1),
.contact-form .wpcf7-form p:nth-child(2) {
    display: inline-block;
    width: calc(50% - 0.75rem);
    margin-right: 1.5rem;
}

.contact-form .wpcf7-form p:nth-child(2) {
    margin-right: 0;
}

/* Labels for CF7 fields */
.contact-form .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.contact-form .wpcf7-form br {
    display: none;
}

/* CF7 Labels Styling */
.contact-form .wpcf7-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Mobile: Stack First/Last Name */
@media (max-width: 968px) {
    .contact-form .wpcf7-form p:nth-child(1),
    .contact-form .wpcf7-form p:nth-child(2) {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

/* CF7 Enhanced Layout Fixes */
.contact-form .wpcf7-form {
    width: 100%;
}

.contact-form .wpcf7-form p {
    margin: 0 0 1.5rem 0;
}

/* Make labels block and add spacing */
.contact-form .wpcf7-form label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Remove CF7 auto-added line breaks */
.contact-form .wpcf7-form label br {
    display: none;
}

/* Style all CF7 input types */
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form input[type="url"],
.contact-form .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    transition: all 0.3s;
    background: white;
    box-sizing: border-box;
}

/* Focus states */
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Textarea height */
.contact-form .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Two column layout for first and last name */
.contact-form .wpcf7-form > p:nth-child(1),
.contact-form .wpcf7-form > p:nth-child(2) {
    display: inline-block;
    width: calc(50% - 0.75rem);
    vertical-align: top;
}

.contact-form .wpcf7-form > p:nth-child(1) {
    margin-right: 1.5rem;
}

.contact-form .wpcf7-form > p:nth-child(2) {
    margin-right: 0;
}

/* Submit button styling */
.contact-form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    text-align: center;
}

.contact-form .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Checkbox styling */
.contact-form .wpcf7-checkbox {
    display: flex;
    align-items: flex-start;
}

.contact-form .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
}

.contact-form .wpcf7-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 2px 10px 0 0;
    cursor: pointer;
    accent-color: #6366f1;
}

.contact-form .wpcf7-checkbox .wpcf7-list-item-label {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

/* Validation errors */
.contact-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.contact-form span.wpcf7-not-valid {
    border-color: #dc2626 !important;
}

/* Response messages */
.contact-form .wpcf7-response-output {
    margin: 1.5rem 0 0 0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
}

.contact-form .wpcf7-validation-errors {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #dc2626;
}

.contact-form .wpcf7-mail-sent-ok {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .contact-form .wpcf7-form > p:nth-child(1),
    .contact-form .wpcf7-form > p:nth-child(2) {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .contact-form .wpcf7-form input[type="submit"] {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* Override: Make all fields full width (no 2-column layout) */
.contact-form .wpcf7-form > p:nth-child(1),
.contact-form .wpcf7-form > p:nth-child(2) {
    display: block !important;
    width: 100% !important;
    margin-right: 0 !important;
}

/* Reduce gap between fields */
.contact-form .wpcf7-form p {
    margin: 0 0 1rem 0 !important;
}

/* Reduce label spacing */
.contact-form .wpcf7-form label {
    margin-bottom: 0.5rem !important;
}
