:root {
    --primary: #ffffff;
    --primary-glow: rgba(255, 255, 255, 0.2);
    --secondary: #6366f1;
    --accent: #22d3ee;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass: rgba(10, 10, 10, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --radius-pill: 100px;
    --radius-card: 40px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --portal-glow: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--portal-glow);
    pointer-events: none;
    z-index: 100;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo-link:hover {
    opacity: 0.8;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    background: #f8fafc;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.top-bar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0;
    font-size: 0.75rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar a {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: var(--transition);
    opacity: 0.7;
}

.top-bar a:hover,
.top-bar a.active {
    color: var(--accent);
    opacity: 1;
}

.main-nav {
    padding: 1.2rem 0;
    transition: var(--transition);
}

header.scrolled .main-nav {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}


/* Premium Branding System */
.brand-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent));
    transition: var(--transition);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}

.brand-text span {
    color: var(--accent);
    opacity: 0.9;
}

.logo-link:hover .brand-icon {
    transform: rotate(10deg) scale(1.1);
}

.footer-brand {
    justify-content: center;
    margin-bottom: 2.5rem;
    transform: scale(1.2);
}

header.scrolled .brand-text {
    font-size: 1.5rem;
}

header.scrolled .brand-icon {
    width: 28px;
    height: 28px;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 50px;
    width: auto;
    margin-bottom: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    border-radius: 2px;
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

.hero-content h1 span {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.hero-content p {
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.3;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* General Section Styles */
section {
    padding: 10rem 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5rem;
    text-align: center;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

/* Services Section */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-explorer {
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: white;
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: white;
}

.service-content {
    padding: 4rem;
    position: relative;
    min-height: 450px;
}

.service-panel {
    display: none;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel.active {
    display: block;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-header i {
    font-size: 2.5rem;
    color: var(--accent);
}

.service-header h3 {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
}

.service-header h3 span {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.service-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 24px;
    transition: var(--transition);
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mini-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: white;
}

.mini-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-footer-hint {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    padding: 3rem;
    border-radius: var(--radius-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: scale(1.05);
    box-shadow: 0 40px 100px rgba(99, 102, 241, 0.2);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 50px 120px rgba(99, 102, 241, 0.4);
}

.featured-tag {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.magnet-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.magnet-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.1em;
}

.magnet-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.magnet-content h2 span {
    color: var(--accent);
    font-size: 1.2rem;
}

.magnet-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.magnet-features {
    list-style: none;
    margin-bottom: 3rem;
}

.magnet-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.magnet-features li i {
    color: var(--accent);
}

.magnet-form {
    display: flex;
    gap: 1rem;
}

.glass-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-pill);
    color: white;
    outline: none;
    transition: var(--transition);
}

.glass-input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

.magnet-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-preview {
    position: relative;
    width: 200px;
    height: 250px;
}

.preview-item {
    position: absolute;
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.p1 {
    transform: rotate(-10deg) translateZ(0);
    z-index: 1;
    bottom: 0;
    left: -20px;
    border-color: var(--accent);
}

.p2 {
    transform: rotate(5deg) translateZ(0);
    z-index: 2;
    bottom: 30px;
    left: 10px;
    border-color: var(--secondary);
}

.p3 {
    transform: rotate(-3deg) translateZ(0);
    z-index: 3;
    bottom: 60px;
    left: 0;
    background: white;
    color: black;
}

.magnet-box:hover .p1 {
    transform: rotate(-15deg) translate(-10px, -10px);
}

.magnet-box:hover .p2 {
    transform: rotate(8deg) translate(5px, -5px);
}

.magnet-box:hover .p3 {
    transform: rotate(-1deg) translate(0, -10px);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.recurring {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

/* The Architect Configurator */
.architect-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.architect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.module-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 1.8rem;
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.module-toggle.active {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.module-toggle h4 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.module-toggle .module-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.architect-summary {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.total-setup {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.total-monthly {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

/* Process Section - Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    z-index: 1;
}

.process-step-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    z-index: 2;
}

.process-step-box.alternate {
    justify-content: flex-end;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.step-card {
    width: 45%;
    padding: 3rem;
    border-radius: 32px;
    transition: var(--transition);
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-bottom {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 700;
}

.process-step-box:hover .step-card {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .process-line {
        left: 25px;
    }

    .step-marker {
        left: 25px;
        transform: none;
    }

    .process-step-box,
    .process-step-box.alternate {
        justify-content: flex-start;
    }

    .step-card {
        width: calc(100% - 70px);
        margin-left: 70px;
        padding: 2rem;
    }
}

/* Contact Section - Dashboard Style */
.contact-dashboard {
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.sidebar-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-top: auto;
}

.social-links-dashboard {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.social-links-dashboard a {
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links-dashboard a:hover {
    color: white;
}

.dashboard-main {
    padding: 4rem;
}

.contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-premium {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group-premium label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group-premium input,
.form-group-premium textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: white;
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.06);
}

.submit-dashboard {
    align-self: flex-start;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 900px) {
    .contact-dashboard {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-main {
        padding: 3rem 2rem;
    }
}

/* Floating Cart */
.cart-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(var(--accent-rgb), 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.cart-toggle:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.cart-count {
    background: #fff;
    color: var(--background);
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-price {
    font-weight: 700;
    color: var(--accent);
}

.remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: #ff4444;
}

.cart-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Footer Section */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer .logo-img-footer {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin-bottom: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.8rem;
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 380px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(140%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
    border: 1px solid var(--border);
}

.chatbot-widget.active {
    transform: translateY(0);
}

.chat-header {
    background: #ffffff;
    color: #000;
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    height: 350px;
    background: #000;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-footer {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
}

.chat-footer button {
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.chat-footer button:hover {
    background: #fff;
    color: #000;
}

.chat-bubble {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chat-bubble.bot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chat-bubble.user {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.chat-input-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.5rem;
}

.chat-email-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #fff;
    outline: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.chat-email-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.chat-submit-btn {
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chat-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.chatbot-trigger {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1999;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    transition: var(--transition);
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

@keyframes bot-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }
}

.chatbot-trigger.pulse {
    animation: bot-pulse 2s infinite ease-in-out;
}

/* Typing Indicator */
.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typing-dots 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dots {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-size: 0.9rem;
    width: 100%;
}

.chat-option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateX(5px);
}

/* Animation Utilities */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* AI Verification Section (GEO) */
.geo-section {
    background: radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.05), transparent 70%);
    border-top: 1px solid var(--border);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.ai-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}

.ai-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.05);
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
}

.ai-badge i {
    font-size: 1.2rem;
}

.prompt-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    margin-top: 1rem;
}

.prompt-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-style: italic;
    margin-right: 3rem;
}

.copy-btn {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.copy-btn:hover {
    color: white;
    transform: translateY(-50%) scale(1.2);
}

.copy-btn.copied {
    color: #4ade80;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .magnet-box {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .magnet-visual {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.verdicts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.verdict-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.verdict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verdict-client {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.verdict-tags {
    display: flex;
    gap: 0.5rem;
}

.verdict-tag {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}

.verdict-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.comp-box {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.comp-box.before {
    border-left: 3px solid #ef4444;
}

.comp-box.after {
    border-left: 3px solid #10b981;
}

.comp-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
}

.comp-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Founder Mission Section */
.founder-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.founder-quote {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    position: relative;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--accent);
}

.founder-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.founder-sig {
    margin-top: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-style: italic;
    color: white;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer-content {
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Support Details Tooltip-like hints */
.support-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.support-hint span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-hint i {
    font-size: 0.7rem;
    color: var(--accent);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 1998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: white;
}

/* Architect Improvements */
.module-toggle {
    position: relative;
}

.module-toggle:hover::after {
    content: attr(data-description);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    width: 200px;
    z-index: 100;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
    .founder-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .founder-quote {
        font-size: 1.8rem;
    }
}

.contact-container {
    grid-template-columns: 1fr;
}

.nav-links {
    display: none;
}

.step {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem;
}

.step-content p {
    margin: 0 auto;
}

/* --- Phase 7: Checkout Optimization (FAQ) --- */
.faq-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-container h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-container h3 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.5rem;
    }
}