/* Inter Font Family - Local Hosting */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('./fonts/inter-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./fonts/inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/inter-700.ttf') format('truetype');
}

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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-purple: #7c3aed;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --border-color: #2a2a3a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

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

@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
}

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    padding: 0 1rem;
}

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

.nav-left {
    display: flex;
    align-items: center;
}

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

@media (min-width: 769px) {
    .navbar .container {
        padding: 0 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

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

.logo-craft {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.5));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.8));
        transform: scale(1.05);
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    transition: all 0.15s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.05);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu - Mobile First */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 2rem;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 250px;
    max-width: 100%;
    overflow: hidden;
}

.ai-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.6), rgba(124, 58, 237, 0.4), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    filter: blur(30px);
    animation: orbFloat 6s ease-in-out infinite, orbGlow 3s ease-in-out infinite alternate;
}

.ai-orb::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 60%);
    animation: orbRipple 4s ease-in-out infinite;
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='neural' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='%237c3aed' opacity='0.5'/%3E%3Cline x1='50' y1='50' x2='100' y2='50' stroke='%237c3aed' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='50' y1='50' x2='50' y2='100' stroke='%237c3aed' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='400' height='400' fill='url(%23neural)'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-20px) scale(1.05);
    }
    75% {
        transform: translate(-50%, -50%) translateY(10px) scale(0.95);
    }
}

@keyframes orbGlow {
    0% {
        filter: blur(30px) brightness(1);
        box-shadow: 0 0 80px rgba(124, 58, 237, 0.4);
    }
    100% {
        filter: blur(40px) brightness(1.3);
        box-shadow: 0 0 120px rgba(236, 72, 153, 0.6);
    }
}

@keyframes orbRipple {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* AI Nodes Animation */
.ai-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

/* Mouse Trail Particles */
.trail-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.9), rgba(59, 130, 246, 0.6));
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
    box-shadow: 
        0 0 15px rgba(124, 58, 237, 0.8),
        0 0 30px rgba(59, 130, 246, 0.6);
    animation: particleGlow 2s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% { 
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 
            0 0 15px rgba(124, 58, 237, 0.8),
            0 0 30px rgba(59, 130, 246, 0.6);
    }
    100% { 
        transform: scale(1.2);
        opacity: 0.4;
        box-shadow: 
            0 0 25px rgba(236, 72, 153, 0.9),
            0 0 50px rgba(124, 58, 237, 0.7);
    }
}

/* Glitch effect for disturbed connections */
.connection-line.glitch {
    animation: connectionGlitch 0.3s ease-in-out infinite !important;
}

@keyframes connectionGlitch {
    0% { 
        opacity: 0.9;
        stroke-dasharray: 5 3;
        stroke-dashoffset: 0;
        filter: hue-rotate(0deg);
    }
    20% { 
        opacity: 0.2;
        stroke-dasharray: 2 8;
        stroke-dashoffset: -5;
        filter: hue-rotate(45deg);
    }
    40% { 
        opacity: 0.8;
        stroke-dasharray: 12 2;
        stroke-dashoffset: -10;
        filter: hue-rotate(-30deg);
    }
    60% { 
        opacity: 0.1;
        stroke-dasharray: 3 15;
        stroke-dashoffset: -15;
        filter: hue-rotate(90deg);
    }
    80% { 
        opacity: 0.6;
        stroke-dasharray: 8 4;
        stroke-dashoffset: -20;
        filter: hue-rotate(-60deg);
    }
    100% { 
        opacity: 0.9;
        stroke-dasharray: 5 3;
        stroke-dashoffset: -25;
        filter: hue-rotate(0deg);
    }
}

/* Temporary connections */
.temp-connection {
    stroke: rgba(236, 72, 153, 0.7);
    stroke-width: 0.8;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 3 6;
    animation: tempConnectionPulse 1s ease-in-out infinite;
}

@keyframes tempConnectionPulse {
    0% { 
        opacity: 0;
        stroke-dashoffset: 0;
    }
    50% { 
        opacity: 0.8;
        stroke-dashoffset: -10;
    }
    100% { 
        opacity: 0;
        stroke-dashoffset: -20;
    }
}

/* Disturbance ripple */
.disturbance-ripple {
    position: absolute;
    border: 2px solid rgba(236, 72, 153, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleExpand 1.5s ease-out forwards;
}

@keyframes rippleExpand {
    0% { 
        width: 10px;
        height: 10px;
        opacity: 0.8;
        border-width: 3px;
    }
    50% { 
        opacity: 0.4;
        border-width: 2px;
    }
    100% { 
        width: 150px;
        height: 150px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes flashEffect {
    0% { 
        transform: scale(0.5);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% { 
        transform: scale(2);
        opacity: 0;
    }
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(124, 58, 237, 0.8));
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(124, 58, 237, 1),
        0 0 40px rgba(124, 58, 237, 0.6),
        inset 0 0 8px rgba(255, 255, 255, 0.4);
    animation: nodeFloat 4s ease-in-out infinite, nodeGlow 2s ease-in-out infinite alternate;
}

.node::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(circle, transparent, rgba(124, 58, 237, 0.4));
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.node[data-node="1"] { top: 15%; left: 20%; animation-delay: 0s; }
.node[data-node="2"] { top: 25%; left: 65%; animation-delay: 0.4s; }
.node[data-node="3"] { top: 45%; left: 85%; animation-delay: 0.8s; }
.node[data-node="4"] { top: 70%; left: 75%; animation-delay: 1.2s; }
.node[data-node="5"] { top: 85%; left: 35%; animation-delay: 1.6s; }
.node[data-node="6"] { top: 65%; left: 15%; animation-delay: 2.0s; }
.node[data-node="7"] { top: 40%; left: 50%; animation-delay: 2.4s; }
.node[data-node="8"] { top: 55%; left: 90%; animation-delay: 2.8s; }

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connection-line {
    stroke: url(#connectionGradient);
    stroke-width: 1;
    fill: none;
    opacity: 0;
    stroke-linecap: round;
    stroke-dasharray: 5 3;
    animation: connectionPulse 4s ease-in-out infinite;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-10px) scale(1.1);
    }
    75% {
        transform: translateY(5px) scale(0.9);
    }
}

@keyframes nodeGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(124, 58, 237, 1),
            0 0 40px rgba(124, 58, 237, 0.6),
            inset 0 0 8px rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(236, 72, 153, 1),
            0 0 60px rgba(59, 130, 246, 0.8),
            inset 0 0 12px rgba(255, 255, 255, 0.8);
    }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.6;
    }
}

@keyframes connectionPulse {
    0% { 
        opacity: 0;
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    25% { 
        opacity: 0.6;
        stroke-dasharray: 20 10;
        stroke-dashoffset: -10;
    }
    50% { 
        opacity: 0.9;
        stroke-dasharray: 15 5;
        stroke-dashoffset: -20;
    }
    75% { 
        opacity: 0.4;
        stroke-dasharray: 10 15;
        stroke-dashoffset: -30;
    }
    100% { 
        opacity: 0;
        stroke-dasharray: 5 20;
        stroke-dashoffset: -40;
    }
}

@keyframes connectionFlow {
    0% { 
        opacity: 0;
        stroke-dasharray: 8 12;
        stroke-dashoffset: 0;
    }
    30% { 
        opacity: 0.7;
        stroke-dashoffset: -15;
    }
    70% { 
        opacity: 0.3;
        stroke-dashoffset: -30;
    }
    100% { 
        opacity: 0;
        stroke-dashoffset: -45;
    }
}

@keyframes connectionWave {
    0% { 
        opacity: 0;
        stroke-dasharray: 12 8;
        stroke-dashoffset: 0;
    }
    20% { 
        opacity: 0.8;
        stroke-dashoffset: -8;
    }
    40% { 
        opacity: 0.5;
        stroke-dashoffset: -16;
    }
    60% { 
        opacity: 0.9;
        stroke-dashoffset: -24;
    }
    80% { 
        opacity: 0.2;
        stroke-dashoffset: -32;
    }
    100% { 
        opacity: 0;
        stroke-dashoffset: -40;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.profile-img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-pink)) border-box;
}

.profile-img:hover {
    transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    box-shadow: 
        0 35px 70px rgba(124, 58, 237, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.image-decoration {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-pink));
    border-radius: 25px;
    opacity: 0.3;
    z-index: 1;
    transition: all 0.4s ease;
    filter: blur(1px);
}

.about-image:hover .image-decoration {
    transform: translate(10px, -10px) scale(1.05);
    opacity: 0.5;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-blue), var(--accent-pink), var(--accent-purple));
    border-radius: 50px;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
    animation: rotate 20s linear infinite;
}

.about-image:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 280px;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--text-primary);
}

/* Navigation Base - Mobile First */
.nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-sizing: border-box;
}

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

.nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 60px;
    width: 100%;
    box-sizing: border-box;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
    padding-left: 3rem;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        border: none;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        gap: 2rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        z-index: auto;
    }
    
    .nav-links li {
        width: auto;
        position: relative;
    }
    
    .nav-links a {
        padding: 0.75rem 1.25rem;
        font-size: 1.1rem;
        border: none;
        min-height: auto;
        width: auto;
        border-radius: 12px;
        transition: all 0.15s ease;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
        transition: all 0.15s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .nav-links a:hover {
        color: var(--text-primary);
        background: rgba(124, 58, 237, 0.05);
        padding-left: 1.25rem;
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .logo {
        font-size: 1.75rem;
    }
}

/* Mobile Hero and Content */
.hero {
    padding-top: 100px;
    padding-bottom: 2rem;
    min-height: 40vh;
    overflow-x: hidden;
    width: 100%;
}

.hero .container {
    display: block;
    text-align: left;
    padding: 0 1rem;
}

.hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-visual {
    display: none;
}

.ai-orb {
    width: 180px;
    height: 180px;
}

/* Mobile About Section */
.about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.about-image {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.profile-img {
    width: 280px;
    height: 280px;
}

.image-decoration {
    width: 280px;
    height: 280px;
    top: 15px;
    right: -15px;
}

.about-image::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    min-width: 120px;
}

.contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Desktop Improvements */
@media (min-width: 769px) {
    .hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 20px;
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        display: block;
        height: 400px;
        margin-top: 0;
        max-width: none;
        width: 100%;
        position: relative;
    }
    
    .ai-orb {
        width: 250px;
        height: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-image {
        order: 0;
        margin-bottom: 0;
    }
    
    .profile-img {
        width: 450px;
        height: 450px;
    }
    
    .image-decoration {
        width: 450px;
        height: 450px;
        top: 20px;
        right: -20px;
    }
    
    .stats {
        gap: 3rem;
        flex-wrap: nowrap;
    }
    
    .contact-methods {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Pricing Page Styles */
.pricing {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

/* Pricing Hero Centering - Override Grid Layout */
body:has(.pricing) .hero .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

body:has(.pricing) .hero .hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    grid-template-columns: none !important;
    display: block !important;
}

body:has(.pricing) .hero .hero-content h1,
body:has(.pricing) .hero .hero-content p {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.pricing-card.featured {
    border: 3px solid transparent;
    background: 
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(45deg, var(--accent-purple), var(--accent-blue), var(--accent-pink), var(--accent-purple)) border-box;
    animation: borderGlow 4s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(124, 58, 237, 0.3),
        0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 40px rgba(124, 58, 237, 0.5),
        0 25px 50px rgba(124, 58, 237, 0.3);
}

@keyframes borderGlow {
    0% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-purple), var(--accent-blue), var(--accent-pink), var(--accent-purple)) border-box;
        box-shadow: 
            0 0 30px rgba(124, 58, 237, 0.3),
            0 20px 40px rgba(124, 58, 237, 0.2);
    }
    16.66% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-blue), var(--accent-purple), var(--accent-pink), var(--accent-blue)) border-box;
        box-shadow: 
            0 0 32px rgba(59, 130, 246, 0.32),
            0 20px 40px rgba(59, 130, 246, 0.22);
    }
    33.33% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-blue), var(--accent-pink), var(--accent-purple), var(--accent-blue)) border-box;
        box-shadow: 
            0 0 35px rgba(59, 130, 246, 0.35),
            0 20px 40px rgba(59, 130, 246, 0.25);
    }
    50% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-pink), var(--accent-purple), var(--accent-blue), var(--accent-pink)) border-box;
        box-shadow: 
            0 0 40px rgba(236, 72, 153, 0.4),
            0 20px 40px rgba(236, 72, 153, 0.3);
    }
    66.66% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-pink), var(--accent-blue), var(--accent-purple), var(--accent-pink)) border-box;
        box-shadow: 
            0 0 37px rgba(236, 72, 153, 0.37),
            0 20px 40px rgba(236, 72, 153, 0.27);
    }
    83.33% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-purple), var(--accent-pink), var(--accent-blue), var(--accent-purple)) border-box;
        box-shadow: 
            0 0 35px rgba(124, 58, 237, 0.35),
            0 20px 40px rgba(124, 58, 237, 0.25);
    }
    100% {
        background: 
            linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
            linear-gradient(45deg, var(--accent-purple), var(--accent-blue), var(--accent-pink), var(--accent-purple)) border-box;
        box-shadow: 
            0 0 30px rgba(124, 58, 237, 0.3),
            0 20px 40px rgba(124, 58, 237, 0.2);
    }
}

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

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-from {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-value {
    /* This span allows easy price editing */
}

.price-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.price-alternative {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.price-or {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-monthly {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.price-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features li:hover {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.payment-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    min-width: 280px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

.payment-icon {
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pricing CTA */
.pricing-cta {
    padding: 4rem 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
}

.cta-button.secondary:hover {
    background: var(--accent-purple);
    color: white;
}


/* Mobile Pricing */
.pricing {
    padding: 2rem 0;
}

.pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.pricing-card {
    padding: 1.5rem;
    margin: 0;
}

.pricing-icon {
    width: 60px;
    height: 60px;
}

.price-amount {
    font-size: 2rem;
}

.payment-methods {
    padding: 3rem 0;
}

.payment-options {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.payment-card {
    min-width: 250px;
    width: 100%;
    max-width: 350px;
}

.pricing-cta {
    padding: 3rem 0;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.cta-button {
    width: 100%;
    max-width: 280px;
}

/* Desktop Pricing */
@media (min-width: 769px) {
    .pricing {
        padding: 4rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        padding: 0;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .pricing-icon {
        width: 80px;
        height: 80px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .payment-methods {
        padding: 4rem 0;
    }
    
    .payment-options {
        flex-direction: row;
        gap: 3rem;
        padding: 0;
    }
    
    .payment-card {
        min-width: 280px;
        width: auto;
    }
    
    .pricing-cta {
        padding: 4rem 0;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        padding: 0;
    }
    
    .cta-button {
        width: auto;
    }
}
/* Privacy Policy Styles */
.privacy-policy {
    padding-top: 120px;
    padding-bottom: 4rem;
    background-color: var(--bg-primary);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy .page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-policy .last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.privacy-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
    border-color: var(--accent-purple);
}

.privacy-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Mobile Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .privacy-content {
        padding: 0 1rem;
    }
    
    .privacy-policy .page-title {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}
