/* ----------------------------------------------
   ULTRA MODERN APPLE STYLE HEADER (SCALED UP)
   ---------------------------------------------- */

:root {
    /* Light Mode Variables */
    --header-bg: rgba(255, 255, 255, 0.72);
    --header-border: rgba(0, 0, 0, 0.08);
    --header-shadow: rgba(0, 0, 0, 0.04);
    --text-color: #1d1d1f;
    --text-muted: #86868b;
    --nav-hover-bg: rgba(99, 102, 241, 0.08); /* Indigo tinted */
    --btn-bg: #6366f1;
    --btn-hover: #4f46e5;
    --btn-text: #ffffff;
    --icon-filter: none;
    --bg-color: #fbfbfd;
    --bg-gradient: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 113, 227, 0.08) 0, transparent 50%),
        #fbfbfd;
    --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.nav-login-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #6366f1 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #6366f1;
    margin-right: 1.25rem;
}

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

@media (max-width: 991.98px) {
    .nav-login-link {
        font-size: 1.5rem;
        padding: 1rem 0;
        width: 100%;
        display: block;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--header-border);
        margin-right: 0;
    }
}

body.dark {
    /* Dark Mode Variables */
    --header-bg: rgba(22, 22, 24, 0.72);
    --header-border: rgba(255, 255, 255, 0.12);
    --header-shadow: rgba(0, 0, 0, 0.3);
    --text-color: #f5f5f7;
    --text-muted: #86868b;
    --nav-hover-bg: rgba(99, 102, 241, 0.15);
    --btn-bg: #6366f1;
    --btn-hover: #818cf8;
    --btn-text: #ffffff;
    --icon-filter: brightness(0) invert(1);
    --bg-color: #000000;
    --bg-gradient: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.2) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 113, 227, 0.15) 0, transparent 50%),
        #000000;
}

/* Base */
body {
    background: var(--bg-gradient) !important;
    background-color: var(--bg-color) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    color: var(--text-color);
    font-family: var(--font-stack);
    transition: background 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    padding-top: 110px;
}

#page,
.site,
.site-content {
    background: transparent !important;
}

body.dark {
    background: var(--bg-gradient) !important;
    background-color: var(--bg-color) !important;
}

/* Full-Width Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    z-index: 1010;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--header-border);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 1.25rem 0;
}

/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 34px;
    width: auto;
    display: block;
    filter: var(--icon-filter);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-logo:hover {
    opacity: 0.7;
    transform: scale(0.97);
}

/* Navigasyon */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    /* Linkler arası boşluk artırıldı */
}

.main-navigation a {
    display: block;
    padding: 0.5rem 1.2rem;
    /* Tıklama alanı büyütüldü */
    font-size: 1rem;
    /* BÜYÜTÜLDÜ: 0.85rem -> 1rem */
    font-weight: 500;
    /* Biraz daha kalın ve okunaklı */
    letter-spacing: -0.01em;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background: rgba(99, 102, 241, 0.08); /* Brand Indigo tint */
    color: #6366f1;
}

.main-navigation .current-menu-item>a {
    font-weight: 600;
}

/* Dropdown */
.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    /* Genişletildi */
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 16px;
    padding: 0.75rem;
    /* İç boşluk artırıldı */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px var(--header-shadow);
    border: 1px solid var(--header-border);
}

.main-navigation li {
    position: relative;
}

.main-navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-navigation .sub-menu a {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    /* Dropdown fontu büyütüldü */
    border-radius: 10px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Butonlar arası boşluk artırıldı */
    flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    /* BÜYÜTÜLDÜ: 32px -> 40px */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    background: var(--nav-hover-bg);
}

.theme-toggle:active {
    transform: scale(0.9);
}

.theme-toggle-icon {
    display: block;
    width: 22px;
    /* BÜYÜTÜLDÜ: 18px -> 22px */
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Tanımlanmış SVG renklerini kullandığımız için filtreyi kaldırdık */
    transition: opacity 0.3s ease;
}

body:not(.dark) .theme-toggle-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231d1d1f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z' /%3E%3C/svg%3E");
}

body.dark .theme-toggle-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5f5f7'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z' /%3E%3C/svg%3E");
}

/* Modern Buton */
.btn-primary {
    background: #6366f1;
    color: var(--btn-text) !important;
    padding: 0.6rem 1.5rem;
    /* BÜYÜTÜLDÜ */
    border-radius: 50px;
    font-size: 0.95rem;
    /* BÜYÜTÜLDÜ: 0.8rem -> 0.95rem */
    font-weight: 600;
    /* Daha kalın bir duruş */
    letter-spacing: 0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #5659ce;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.97);
}

/* Mobil Menü Butonu */
.menu-toggle {
    display: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1002;
    -webkit-appearance: none;
    appearance: none;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 24px;
    /* Hamburger çizgileri uzatıldı */
    height: 2px;
    /* Çizgiler kalınlaştırıldı */
    background: var(--text-color);
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    left: 2px;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    content: '';
    top: -8px;
    /* Aralarındaki boşluk artırıldı */
    left: 0;
}

.menu-icon::after {
    content: '';
    top: 8px;
    /* Aralarındaki boşluk artırıldı */
    left: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsive (Modern Apple-Style Mobile Header) */
@media (max-width: 991.98px) {
    .site-header {
        top: 0;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--header-border);
    }

    .header-container {
        padding: 0 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-branding {
        position: relative;
        left: auto;
        transform: none;
        z-index: 1010;
    }

    .header-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        margin-left: auto; /* Push to right just in case */
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1010;
    }

    .theme-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1010;
    }

    .desktop-actions {
        display: none;
    }

    .mobile-menu-actions {
        display: flex !important;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color); /* Use solid background from variable */
        z-index: 1005;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5.5rem 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        transform: translateX(100%);
    }

    .main-navigation.toggled {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
        padding: 0;
    }

    .main-navigation a {
        text-align: left;
        width: 100%;
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .mobile-menu-actions {
        display: flex !important;
        align-items: flex-start;
        padding: 0 !important;
        margin-top: 1rem !important;
    }

    .main-navigation a {
        font-size: 1.8rem;
        /* Mobil menü linkleri dev yapıldı */
        font-weight: 500;
        padding: 0.5rem;
    }

    .main-navigation .sub-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        text-align: center;
    }

    .main-navigation li.menu-item-has-children.open>.sub-menu {
        display: block;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .header-actions {
        gap: 0.75rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .site-logo {
        height: 28px;
        /* BÜYÜTÜLDÜ: 20px -> 28px */
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }
}

/* ----------------------------------------------
   ADVANCED SEO-OPTIMIZED FOOTER
   ---------------------------------------------- */

.site-footer {
    background: var(--bg-muted);
    border-top: 1px solid var(--header-border);
    padding: 8rem 0 4rem 0;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    height: 38px;
    margin-bottom: 1.5rem;
    filter: var(--icon-filter);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 280px;
}

.footer-social-btns {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
}

.footer-social-btns a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-btns a:hover {
    color: #6366f1;
    transform: translateY(-3px);
}

.footer-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #6366f1;
    padding-left: 5px;
}

.footer-bottom-bar {
    padding-top: 3rem;
    border-top: 1px solid var(--header-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.secure-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

body.dark .secure-badge {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .brand-block {
        grid-column: span 2;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .brand-block {
        grid-column: span 1;
    }

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

/* ----------------------------------------------
   HERO SLIDER & ANIMATIONS
   ---------------------------------------------- */

.hero-slider-section {
    position: relative;
    padding: 8rem 0 6rem 0;
    overflow: hidden;
    min-height: 750px;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3.5rem !important;
    font-size: 1.25rem !important;
    width: fit-content;
    border-radius: 100px !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-visual {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

/* Slide 1: AI Connectivity Animation */
.ai-connectivity-animation {
    position: relative;
    width: 450px;
    height: 350px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    z-index: 20;
    backdrop-filter: blur(10px);
}

.central-node img {
    width: 55px;
    height: 55px;
}

.ai-node {
    position: absolute;
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 5;
    padding: 12px;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid var(--header-border);
}

.ai-node:hover {
    transform: scale(1.1);
    border-color: #6366f1;
}

.ai-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-node .text-node {
    font-size: 9px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
}

.ai-node.n-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-node.n-2 {
    top: 15px;
    right: 20px;
}

.ai-node.n-3 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.ai-node.n-4 {
    bottom: 15px;
    right: 20px;
}

.ai-node.n-5 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-node.n-6 {
    bottom: 15px;
    left: 20px;
}

.ai-node.n-7 {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.ai-node.n-8 {
    top: 15px;
    left: 20px;
}

.conn-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-path {
    stroke: #6366f1;
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 8;
    opacity: 0.2;
    animation: dashMove 4s linear infinite;
}

@keyframes dashMove {
    from {
        stroke-dashoffset: 200;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Dashboard Preview (Slide 2) */
.dashboard-preview {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    backdrop-filter: blur(20px);
}

.preview-header {
    height: 40px;
    border-bottom: 1px solid var(--header-border);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}

.preview-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-content {
    height: 350px;
    background: var(--bg-muted);
    position: relative;
    padding: 2rem;
}

/* Upload Visual Mock (Slide 3) */
.upload-visual-mock {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
}

.upload-zone {
    width: 100%;
    height: 100%;
    background: var(--header-bg);
    border: 2px dashed #6366f1;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.05);
}

.upload-zone svg {
    color: #6366f1;
}

.ai-feedback-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feedback-node {
    position: absolute;
    background: #6366f1;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    animation: floatAnim 4s ease-in-out infinite;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .feedback-node {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

@keyframes floatAnim {

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

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

/* Slider Pagination */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 4rem;
}

@media (max-width: 991px) {
    .slider-dots {
        margin-top: 2rem;
    }
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--header-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-dots .dot.active {
    background: #6366f1;
    width: 32px;
    border-radius: 20px;
}

/* Mobile Responsive Slider */
@media (max-width: 991px) {
    .hero-slider-section {
        padding: 5rem 0 4rem 0;
        min-height: auto;
    }

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

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-main-btn {
        padding: 1rem 2.5rem !important;
        font-size: 1.1rem !important;
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 2rem;
        overflow: visible; /* Labels want to be seen */
    }

    .ai-connectivity-animation {
        width: 280px;
        height: 240px;
        margin: 0 auto;
        transform: scale(0.9);
    }

    /* Hard reset mockups for mobile */
    .dashboard-preview, 
    .upload-visual-mock, 
    .pinpoint-visual {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        transform: scale(1) !important;
    }

    .hero-visual {
        min-height: auto !important;
        margin-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .central-node {
        width: 60px !important;
        height: 60px !important;
    }

    .central-node img {
        width: 36px;
        height: 36px;
    }

    .ai-node {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .ai-connectivity-animation {
        width: 260px;
        height: 220px;
        transform: scale(0.9);
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .dashboard-preview, 
    .upload-visual-mock, 
    .pinpoint-visual {
        max-width: 280px !important;
    }
}

/* ----------------------------------------------
   FEATURES SECTION
   ---------------------------------------------- */

.features {
    padding: 0;
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1240px;
    margin: 0 auto 12rem;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-mockup {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .feature-mockup {
        min-height: 280px;
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

body.dark .feature-mockup {
    background: rgba(255, 255, 255, 0.02);
}

.mock-line {
    height: 10px;
    background: var(--header-border);
    border-radius: 10px;
}

.mock-circle {
    width: 40px;
    height: 40px;
    background: var(--header-border);
    border-radius: 50%;
}

/* Feature Specific Visuals */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.visual-box {
    background: var(--header-border);
    border-radius: 12px;
    position: relative;
}

.visual-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 8px;
    background: #6366f1;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Responsive Features */
@media (max-width: 991.98px) {
    .features {
        padding: 6rem 0;
    }

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

    .feature-item,
    .feature-item:nth-child(even) {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        margin-bottom: 8rem;
    }

    .feature-item {
        transform: translateY(20px);
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 2.2rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }
}

/* ----------------------------------------------
   ACCURATE PRODUCT UI ELEMENTS
   ---------------------------------------------- */

.issue-tag {
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff5f57;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 95, 87, 0.4);
    border: 2px solid white;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.issue-b {
    background: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.ai-label {
    position: absolute;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 8px;
    z-index: 5;
}

@media (max-width: 480px) {
    .ai-label {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

.label-gpt {
    border-left: 3px solid #10a37f;
}

.label-claude {
    border-left: 3px solid #d97757;
}

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

@media (max-width: 767px) {
    .consensus-preview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .consensus-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1.25rem;
    }
}

.consensus-item {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.consensus-item .model-name {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.consensus-item .mini-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
}

.consensus-item .mini-score small {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* New Feature Visuals */
.consensus-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-avatar-group {
    display: flex;
    gap: -10px;
    margin-bottom: 20px;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    border: 3px solid var(--header-bg);
    margin-left: -8px;
}

.consensus-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
    width: 120px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-in-out;
}

.consensus-quote {
    margin-top: 20px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
}

body.dark .consensus-quote {
    background: rgba(255, 255, 255, 0.05);
}

.pinpoint-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-skeleton {
    width: 90%;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 12px;
    padding: 15px;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .ui-skeleton {
        width: 100%;
        padding: 10px;
    }
}

.skel-nav {
    height: 10px;
    background: var(--header-border);
    margin-bottom: 10px;
    border-radius: 5px;
    width: 60%;
}

.skel-hero {
    height: 60px;
    background: var(--header-border);
    margin-bottom: 15px;
    border-radius: 5px;
}

.skel-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.skel-card {
    height: 40px;
    background: var(--header-border);
    border-radius: 5px;
}

.matrix-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

@media (max-width: 767px) {
    .matrix-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.matrix-col {
    background: rgba(0, 0, 0, 0.03);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.dark .matrix-col {
    background: rgba(255, 255, 255, 0.03);
}

.matrix-col.active {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.col-head {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.gauge-container {
    position: relative;
    text-align: center;
    width: 200px;
}

.gauge-svg {
    width: 100%;
    transform: rotate(0deg);
}

.gauge-val {
    position: absolute;
    bottom: 0px !important;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 950;
    color: var(--text-color);
}

.gauge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-top: 35px !important; /* Push it way down */
    display: block;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .gauge-container {
        width: 180px !important;
        margin: 0 auto !important;
    }
    
    .gauge-val {
        font-size: 2.2rem !important;
        bottom: 5px !important;
    }
    
    .gauge-label {
        font-size: 0.7rem !important;
        margin-top: 30px !important;
    }
}

.gauge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 5px;
}

/* ----------------------------------------------
   ROADMAP SECTION (CRO RESULT PREVIEW)
   ---------------------------------------------- */

.roadmap {
    padding: 10rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 6rem;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mobile-mockup {
    background: white;
    border: 12px solid #e5e7eb;
    border-radius: 48px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9/19;
}

body.dark .mobile-mockup {
    background: #1a1a1a;
    border-color: #333;
}

.mockup-header {
    width: 60px;
    height: 4px;
    background: #eee;
    border-radius: 4px;
    margin: 0 auto 2rem;
}

body.dark .mockup-header {
    background: #333;
}

.mock-img {
    height: 180px;
    background: linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.skel-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.red-pin {
    width: 28px;
    height: 28px;
    background: #ff5f57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    position: absolute;
    box-shadow: 0 4px 15px rgba(255, 95, 87, 0.4);
    border: 2px solid white;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.pin-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0.2s;
}

.pin-2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

.pin-3 {
    top: 65%;
    left: 10%;
    animation-delay: 0.8s;
}

.pin-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.1s;
}

.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.roadmap-item {
    position: relative;
    padding-left: 20px;
}

.roadmap-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.time-est {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

body.dark .time-est {
    background: rgba(255, 255, 255, 0.05);
}

.roadmap-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Roadmap */
@media (max-width: 991px) {
    .roadmap-container {
        padding: 0 1.5rem;
    }

    .roadmap {
        padding: 6rem 0;
    }

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

    .roadmap-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-mockup {
        max-width: 260px;
        border-width: 8px;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .roadmap-item h4 {
        font-size: 1rem;
    }
    
    .roadmap-item p {
        font-size: 0.85rem;
    }
}

/* ----------------------------------------------
   COMPARISON SECTION (AGENCY VS UXCHECK)
   ---------------------------------------------- */

.comparison {
    padding: 10rem 0;
    background: var(--bg-muted);
    position: relative;
    border-top: 1px solid var(--header-border);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

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

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--header-border);
    font-size: 1rem;
}

.comparison-table thead th {
    background: rgba(0, 0, 0, 0.02);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

body.dark .comparison-table thead th {
    background: rgba(255, 255, 255, 0.02);
}

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

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-color);
    width: 30%;
}

.comparison-table td:nth-child(2) {
    color: var(--text-muted);
}

.comparison-table .highlight-col {
    background: rgba(99, 102, 241, 0.03);
    color: #6366f1;
    font-weight: 700;
    text-align: center;
    border-left: 1px solid rgba(99, 102, 241, 0.1);
    border-right: 1px solid rgba(99, 102, 241, 0.1);
}

body.dark .comparison-table .highlight-col {
    background: rgba(99, 102, 241, 0.08);
}

.comparison-table thead th.highlight-col {
    background: rgba(99, 102, 241, 0.1);
    border-top: 3px solid #6366f1;
}

/* Responsive Comparison */
@media (max-width: 767px) {
    .comparison {
        padding: 6rem 0;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
    }

    .comparison-table td:first-child {
        width: 40%;
    }
    
    .comparison-table-wrapper {
        margin: 0 -0.5rem;
        border-radius: 16px;
    }
}

/* ----------------------------------------------
   WHY CHOOSE SECTION
   ---------------------------------------------- */

.why-choose {
    padding: 10rem 0;
    background: var(--bg-color);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 6rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-card {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Why Choose */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card {
        padding: 2rem;
    }
}

/* ----------------------------------------------
   PRICING SECTION
   ---------------------------------------------- */

.pricing {
    padding: 10rem 0;
    background: var(--bg-muted);
    border-top: 1px solid var(--header-border);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 2.5rem 1.5rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* Featured Tier Styling */
.pricing-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 40px 100px rgba(99, 102, 241, 0.1);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 0.1em;
}

.tier-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap; /* Graceful wrap if needed but flex keeps baseline */
}

.tier-price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    min-height: 3.2rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--header-border);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

/* Responsive Pricing */
@media (max-width: 1100px) {
    .pricing-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 3rem;
    }

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

/* ----------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------- */

.testimonials {
    padding: 10rem 0;
    background: var(--bg-color);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 6rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    padding: 3rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-text strong {
    color: #6366f1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------------------------
   FAQ SECTION (NATIVE ACCORDION)
   ---------------------------------------------- */

.faq {
    padding: 10rem 0;
    background: var(--bg-muted);
    border-top: 1px solid var(--header-border);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.faq-item {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    list-style: none;
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236366f1' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive FAQ */
@media (max-width: 767px) {
    .faq-item summary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ----------------------------------------------
   PROVEN STATS SECTION
   ---------------------------------------------- */

.proven-stats {
    padding: 10rem 0;
    background: var(--bg-color);
    border-top: 1px solid var(--header-border);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: #6366f1;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.stat-source {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Responsive Stats */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-num {
        font-size: 2.5rem;
    }
}

/* ----------------------------------------------
   BLOG & ARCHIVE PAGES
   ---------------------------------------------- */

.archive-container,
.singular-container {
    max-width: 1200px;
    margin: 4rem auto 8rem auto;
    padding: 0 2rem;
}

.singular-container {
    max-width: 820px;
    /* Optimal readability width */
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #6366f1;
}

.breadcrumb-nav .sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.archive-header {
    text-align: center;
    margin-bottom: 6rem;
}

.archive-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

/* Entry Card (Archive) */
.entry-card {
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-thumb {
    height: 220px;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entry-card:hover .card-thumb img {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-cat {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1;
    margin-bottom: 1rem;
    display: block;
}

.card-cat a {
    color: #6366f1;
    text-decoration: none;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.card-title a {
    color: var(--text-color);
    text-decoration: none;
}

.card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--header-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-top: auto;
}

.card-read-more {
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
}

/* Singular Post Style */
.article-entry {
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.entry-meta-top {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.entry-header h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.entry-meta-bottom {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--header-border);
}

.entry-featured-image {
    margin-bottom: 4rem;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.entry-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 2rem;
}

.entry-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 4rem 0 1.5rem 0;
}

.entry-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1rem 0;
}

/* Post Navigation (Single) */
.post-navigation-advanced {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid var(--header-border);
}

.post-navigation-advanced .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.nav-card {
    padding: 2.5rem;
    background: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.nav-card:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-title,
    .entry-header h1 {
        font-size: 2.5rem;
    }

    .post-navigation-advanced .nav-links {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------
   ABOUT US PAGE STYLES
   ---------------------------------------------- */

.about-page {
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-container.small {
    max-width: 800px;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Hero */
.about-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Story Section */
.about-story {
    padding: 8rem 0;
}

.about-story .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-image {
    position: relative;
    padding-right: 2rem;
}

.story-visual-container {
    height: 540px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--header-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.expert-fusion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: #6366f1;
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    z-index: 10;
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.story-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.story-quote {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid #6366f1;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text-color);
}

/* Process Section */
.about-process {
    padding: 8rem 0;
    background: var(--bg-muted);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.process-card {
    background: var(--header-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--header-border);
    transition: all 0.3s ease;
}

.process-card.active {
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.process-card .icon {
    font-size: 0.9rem;
    font-weight: 900;
    color: #6366f1;
    margin-bottom: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.process-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Outcomes */
.about-outcomes {
    padding: 8rem 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--header-bg);
    border-radius: 20px;
    border: 1px solid var(--header-border);
    font-size: 1.15rem;
    font-weight: 700;
}

.outcome-item svg {
    color: #10b981;
}

/* Manifesto */
.about-manifesto {
    padding: 8rem 0;
}

.manifesto-card {
    background: #000;
    color: #fff;
    padding: 6rem;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}

.manifesto-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.m-item strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.m-item span {
    font-size: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Premium Upsell */
.about-premium {
    padding: 8rem 0;
}

.premium-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 5rem;
    border-radius: 40px;
    color: white;
    align-items: center;
}

.premium-box .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.premium-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.video-mock {
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #4f46e5;
}

/* About FAQ */
.about-faq {
    padding: 8rem 0;
}

.faq-list-simple {
    margin-top: 4rem;
}

.faq-simple {
    border-bottom: 1px solid var(--header-border);
    padding: 1.5rem 0;
}

.faq-simple summary {
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-simple summary::-webkit-details-marker {
    display: none;
}

.faq-simple .ans {
    padding-top: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive About */
@media (max-width: 1024px) {

    .about-story .grid-2,
    .premium-box {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .manifesto-items {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {

    .process-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-card,
    .premium-box {
        padding: 2.5rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .num {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------
   PRICING PAGE STYLES
   ---------------------------------------------- */

.pricing-page {
    overflow-x: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-container.small {
    max-width: 800px;
}

/* Pricing Hero */
.pricing-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
}

.pricing-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.pricing-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Pricing Grid */
.pricing-grid-section {
    padding: 4rem 0 8rem 0;
}

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.pricing-card-detail {
    background: var(--header-bg);
    padding: 3rem 2.5rem;
    border-radius: 32px;
    border: 1px solid var(--header-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-detail.featured {
    border-color: #6366f1;
    box-shadow: 0 40px 80px rgba(99, 102, 241, 0.15);
}

.p-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.p-tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.p-tier-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.p-price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.p-price span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
}

.p-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.p-features li {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    gap: 0.75rem;
    color: var(--text-color);
}

.p-check {
    color: #10b981;
}

.p-features li.p-disabled {
    opacity: 0.3;
    text-decoration: line-through;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--header-border);
    border-radius: 100px;
    font-weight: 800;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* Comparison Table */
.pricing-comparison {
    padding: 8rem 0;
    background: var(--bg-muted);
}

.comp-header {
    margin-bottom: 5rem;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--header-bg);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--header-border);
}

.comp-table th {
    padding: 2.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--header-border);
}

.comp-table th:first-child {
    text-align: left;
}

.comp-table td {
    padding: 1.75rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--header-border);
    font-size: 1rem;
    font-weight: 600;
}

.comp-table td:first-child {
    text-align: left;
    color: var(--text-muted);
}

.cat-row td {
    background: rgba(0, 0, 0, 0.04);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    padding: 1.25rem 2.5rem;
    color: #6366f1;
}

body.dark .cat-row td {
    background: rgba(255, 255, 255, 0.04);
}

/* Addon Section */
.pricing-addon {
    padding: 10rem 0;
}

.addon-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem;
    background: #000;
    color: white;
    border-radius: 48px;
    gap: 4rem;
}

body.dark .addon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--header-border);
}

.addon-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #6366f1;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.addon-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.addon-info p {
    font-size: 1.1rem;
    color: #a1a1aa;
    max-width: 500px;
    line-height: 1.6;
}

.addon-cta {
    text-align: center;
    flex-shrink: 0;
}

.addon-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.addon-price small {
    font-size: 1rem;
    font-weight: 600;
    color: #a1a1aa;
}

.btn-dark {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: white;
    color: black;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: scale(1.05);
}

/* Responsive Pricing */
@media (max-width: 1200px) {
    .pricing-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .addon-box {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2.5rem;
    }

    .addon-info p {
        margin: 0 auto 2.5rem auto;
    }

    .comp-table th,
    .comp-table td {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-hero-title {
        font-size: 3rem;
    }

    .addon-box {
        border-radius: 32px;
    }
}

/* ----------------------------------------------
   USE CASES PAGE STYLES
   ---------------------------------------------- */

.use-cases-page {
    overflow-x: hidden;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.use-cases-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
}

.use-cases-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.use-cases-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid */
.use-cases-grid-section {
    padding: 4rem 0 10rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.use-case-card {
    background: var(--header-bg);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--header-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

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

.uc-icon {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    display: block;
}

.use-case-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.use-case-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-text-arrow {
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #6366f1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text-arrow span {
    transition: transform 0.3s ease;
}

.use-case-card:hover .btn-text-arrow span {
    transform: translateX(5px);
}

/* Modal System */
.uc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.uc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.uc-modal-content {
    background: #FFF;
    border: 1px solid var(--header-border);
    max-width: 900px;
    width: 100%;
    border-radius: 40px;
    padding: 5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    text-align: left;
    margin: auto;
    display: none;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.uc-modal-content.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.uc-modal-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    line-height: 1.1;
}

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

.m-point h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 800;
}

.m-point p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Use Cases */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .uc-modal-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .use-cases-hero-title {
        font-size: 3rem;
    }

    .use-case-card {
        padding: 2.5rem;
    }

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

/* ----------------------------------------------
   CONTACT PAGE STYLES
   ---------------------------------------------- */

.contact-page {
    overflow-x: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.contact-hero {
    padding: 10rem 0 6rem 0;
    text-align: center;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.contact-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Page Grid */
.contact-content-section {
    padding: 4rem 0 10rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* Glass Card */
.glass-card {
    background: #FFF;
    border: 1px solid var(--header-border);
    border-radius: 40px;
    padding: 5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

body.dark .glass-card {
    background: rgba(255, 255, 255, 0.05);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

/* Modern Form */
.modern-contact-form .form-group {
    margin-bottom: 2rem;
}

.modern-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--header-border);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.02);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
}

body.dark .modern-contact-form input,
body.dark .modern-contact-form select,
body.dark .modern-contact-form textarea {
    background: rgba(255, 255, 255, 0.02);
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    border-color: #6366f1;
    background: #FFF;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

body.dark .modern-contact-form input:focus,
body.dark .modern-contact-form select:focus,
body.dark .modern-contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.05);
}

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

.full-width {
    width: 100%;
    padding: 1.5rem;
}

/* Info Side */
.info-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-link {
    font-weight: 800;
    color: #6366f1;
    font-size: 1.1rem;
}

.highlight {
    font-weight: 800;
    color: var(--text-color);
}

.trust-badge-wrap {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--header-border);
}

.trust-badge-wrap p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.mini-badges {
    display: flex;
    gap: 1.5rem;
}

.mini-badges span {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border: 1px solid var(--header-border);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .glass-card {
        padding: 3rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: 2.75rem;
    }
    
    .info-block {
        gap: 1.5rem;
    }
}

/* ----------------------------------------------
   CTA SECTION STYLES
   ---------------------------------------------- */

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 40px 100px rgba(99, 102, 241, 0.2);
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-primary {
    background: white;
    color: #1A1A2E !important;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btns .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btns .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 991.98px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-card {
        padding: 60px 20px;
    }
}

@media (max-width: 767px) {
    .cta-btns {
        flex-direction: column;
    }
    
    .cta-btns .btn-primary,
    .cta-btns .btn-outline {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------
   APPLE PRO SCROLL REVEAL (ELITE)
   ---------------------------------------------- */

.section-reveal {
    opacity: 0;
    transform: scale(0.96) translateY(30px);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s ease;
    filter: blur(5px);
    will-change: transform, opacity, filter;
}

.section-reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Staggered Children for Elite Feel */
.section-reveal .section-title,
.section-reveal .section-subtitle,
.section-reveal .feature-item,
.section-reveal .pricing-card,
.section-reveal .why-card,
.section-reveal .testimonial-card,
.section-reveal .roadmap-item {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.active .section-title { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.section-reveal.active .section-subtitle { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.section-reveal.active .pricing-card:nth-child(1) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.section-reveal.active .pricing-card:nth-child(2) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.section-reveal.active .pricing-card:nth-child(3) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }
.section-reveal.active .pricing-card:nth-child(4) { transition-delay: 1.1s; opacity: 1; transform: translateY(0); }
.section-reveal.active .feature-item { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.section-reveal.active .why-card { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.section-reveal.active .testimonial-card { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.section-reveal.active .roadmap-item { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }