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

:root {
    --primary-color: #d374a0;
    --secondary-color: #d374a0;
    --accent-color: #d374a0;
    --ai-blue: #d374a0;
    --ai-purple: #d374a0;
    --ai-cyan: #d374a0;
    --shadow-color: #f4b7d34f;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-dark: rgba(15, 23, 42, 0.1);
    --bg-darker: rgba(2, 6, 23, 0.15);
    --white: #ffffff;
    --shadow: #f4b7d34f;
    --gradient-ai: linear-gradient(135deg, #d374a0 0%, #c95d8f 50%, #b84a7a 100%);
    --glass-bg: rgba(211, 116, 160, 0.1);
    --glass-border: rgba(211, 116, 160, 0.2);
    --glass-shadow: #f4b7d34f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(180deg, 
        rgba(233, 213, 255, 0.4) 0%, 
        rgba(250, 232, 255, 0.3) 30%,
        rgba(255, 245, 255, 0.2) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        #ffffff 100%);
    background-attachment: fixed;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
    background: 
        linear-gradient(to bottom, 
            transparent 0%,
            transparent 60%,
            rgba(255, 255, 255, 0.3) 80%,
            rgba(255, 255, 255, 0.7) 90%,
            #ffffff 100%
        ),
        linear-gradient(to right, 
            rgba(233, 213, 255, 0.6) 0%,
            rgba(250, 232, 255, 0.5) 50%,
            rgba(255, 240, 245, 0.4) 100%
        );
}

/* When inside nav-hero-section, adjust hero-header */
.nav-hero-section .hero-header {
    min-height: calc(100vh - 80px);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Soft gradient background */
.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            transparent 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 70%,
            rgba(255, 255, 255, 0.6) 85%,
            #ffffff 100%
        ),
        linear-gradient(to right, 
            rgba(230, 200, 255, 0.7) 0%,
            rgba(255, 220, 240, 0.6) 100%
        );
    z-index: 0;
}

.hero-header::after {
    display: none;
}

@keyframes meshMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes meshRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.background-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
    background: transparent;
    pointer-events: none;
}

/* Removed top-left-circle as we're using art-circle elements instead */

/* Circular art thumbnails */
.art-circle {
    position: absolute;
    border-radius: 50%;
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(147, 51, 234, 0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: floatArt 8s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
    display: block;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    background: transparent;
    font-family: inherit;
}

.art-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    mix-blend-mode: screen;
    opacity: 0.9;
    transform: translateX(-60%);
    animation: shimmerSweep 6s ease-in-out infinite;
    pointer-events: none;
}

.art-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    animation: imageZoom 10s ease-in-out infinite;
}

.art-circle .selection-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(211, 116, 160, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(211, 116, 160, 0.5);
    pointer-events: none;
}

.art-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

.art-circle:hover img {
    transform: scale(1.1);
}

.art-circle.selected {
    border-color: rgba(211, 116, 160, 0.8);
    border-width: 6px;
    box-shadow: 0 12px 40px rgba(211, 116, 160, 0.4), 0 6px 16px rgba(211, 116, 160, 0.3), 0 0 0 3px rgba(211, 116, 160, 0.2);
    transform: scale(1.15);
    animation-play-state: paused;
}

.art-circle.selected img {
    opacity: 0.7;
}

.art-circle.selected .selection-indicator {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@keyframes floatArt {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(8px);
    }
    50% {
        transform: translateY(8px) translateX(-8px);
    }
    75% {
        transform: translateY(-8px) translateX(5px);
    }
}

@keyframes imageZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-70%) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0%) rotate(0deg);
        opacity: 0.9;
    }
    100% {
        transform: translateX(70%) rotate(0deg);
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(147, 51, 234, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 40px rgba(147, 51, 234, 0.6);
    }
}

@keyframes rotateCircle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Rotation removed per request: keep gentle float only */

/* Top Left - Woman with silver/lavender hair */
.art-circle-1 {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 0;
    background: 
        radial-gradient(ellipse at 35% 25%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 15%, transparent 40%),
        radial-gradient(ellipse at 65% 75%, rgba(200, 180, 255, 0.8) 0%, rgba(180, 160, 255, 0.5) 30%, transparent 60%),
        radial-gradient(ellipse at 20% 60%, rgba(230, 220, 255, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #f0e8ff 0%, #d4c4ff 40%, #b8a0ff 80%, #9c7cff 100%);
    animation-delay: 0s;
    animation: floatArt 8s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
}

.art-circle-1 img {
    animation: imageZoom 10s ease-in-out infinite;
    animation-delay: 0s;
}

/* Mid-Left - Website Development */
.art-circle-2 {
    width: 100px;
    height: 100px;
    top: 35%;
    left: 0;
    background: 
        radial-gradient(ellipse at 45% 35%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 20%, transparent 50%),
        radial-gradient(ellipse at 15% 70%, rgba(192, 132, 252, 0.7) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #e9d5ff 0%, #c084fc 50%, #9333ea 100%);
    animation-delay: 0.5s;
    animation: floatArt 7s ease-in-out infinite, pulseGlow 3.5s ease-in-out infinite;
}

.art-circle-2 img {
    animation: imageZoom 12s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Bottom Left - E-commerce Platform */
.art-circle-3 {
    width: 140px;
    height: 140px;
    top: 32%;
    left: 120px;
    background: 
        radial-gradient(ellipse at 50% 15%, rgba(233, 213, 255, 0.95) 0%, rgba(233, 213, 255, 0.6) 25%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(192, 132, 252, 0.8) 0%, rgba(192, 132, 252, 0.4) 30%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, #e9d5ff 0%, #c084fc 40%, #9333ea 80%, #7c3aed 100%);
    animation-delay: 1s;
    animation: floatArt 9s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}

.art-circle-3 img {
    animation: imageZoom 11s ease-in-out infinite;
    animation-delay: 1s;
}

/* Mid-Left Below Text - Digital Solutions */
.art-circle-4 {
    width: 130px;
    height: 130px;
    top: 55%;
    left: 2%;
    background: 
        radial-gradient(ellipse at 60% 25%, rgba(196, 181, 253, 0.85) 0%, rgba(196, 181, 253, 0.5) 25%, transparent 55%),
        radial-gradient(ellipse at 30% 75%, rgba(192, 132, 252, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 85, 247, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, #ddd6fe 0%, #a78bfa 50%, #9333ea 80%, #7c3aed 100%);
    animation-delay: 1.5s;
    animation: floatArt 6.5s ease-in-out infinite, pulseGlow 3.2s ease-in-out infinite;
}

.art-circle-4 img {
    animation: imageZoom 13s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Top Right - Marketing Automation */
.art-circle-5 {
    width: 155px;
    height: 155px;
    top: 10%;
    right: 0;
    background: 
        radial-gradient(ellipse at 40% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 15%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 85, 247, 0.8) 0%, rgba(139, 92, 246, 0.5) 30%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(192, 132, 252, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(147, 51, 234, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, #fce7f3 0%, #e9d5ff 40%, #ddd6fe 80%, #c7d2fe 100%);
    animation-delay: 0.3s;
    animation: floatArt 7.5s ease-in-out infinite, pulseGlow 3.8s ease-in-out infinite;
}

.art-circle-5 img {
    animation: imageZoom 9s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Mid-Right - AI Analytics */
.art-circle-6 {
    width: 100px;
    height: 100px;
    top: 33%;
    right: -50px;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(196, 181, 253, 0.9) 0%, rgba(196, 181, 253, 0.6) 20%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(168, 85, 247, 0.7) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 60%, rgba(147, 51, 234, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #ddd6fe 0%, #c084fc 40%, #9333ea 80%, #7c3aed 100%);
    animation-delay: 0.8s;
    animation: floatArt 8.5s ease-in-out infinite, pulseGlow 3.6s ease-in-out infinite;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    border-radius: 50% 0 0 50%;
}

.art-circle-6 img {
    animation: imageZoom 14s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Small Right - Cloud Technology */
.art-circle-7 {
    width: 147px;
    height: 147px;
    top: 33.2%;
    right: 7%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(192, 132, 252, 0.9) 0%, rgba(192, 132, 252, 0.6) 25%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(168, 85, 247, 0.7) 0%, transparent 50%),
        linear-gradient(135deg, #c084fc 0%, #a78bfa 50%, #9333ea 100%);
    animation-delay: 1.2s;
    animation: floatArt 6s ease-in-out infinite, pulseGlow 4.2s ease-in-out infinite;
}

.art-circle-7 img {
    animation: imageZoom 10.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Bottom Right - Business Growth */
.art-circle-8 {
    width: 150px;
    height: 150px;
    top: 58%;
    right: 6%;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(233, 213, 255, 0.8) 0%, rgba(233, 213, 255, 0.6) 25%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(192, 132, 252, 0.9) 0%, rgba(168, 85, 247, 0.7) 30%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(147, 51, 234, 0.7) 0%, rgba(124, 58, 237, 0.5) 40%, transparent 60%),
        radial-gradient(ellipse at 20% 20%, rgba(196, 181, 253, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #e9d5ff 0%, #c084fc 30%, #9333ea 50%, #7c3aed 80%, #6d28d9 100%);
    animation-delay: 0.6s;
    animation: floatArt 9.5s ease-in-out infinite, pulseGlow 3.4s ease-in-out infinite;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 0 100%);
    border-radius: 50% 0 50% 50%;
    overflow: hidden;
}

.art-circle-8 img {
    animation: imageZoom 12.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

.art-circle-8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 50% 50%;
}

.art-circle-8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 50% 50% 0;
    display: block;
}


@keyframes floatShape {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate3d(60px, -40px, 0) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate3d(-40px, 40px, 0) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate3d(50px, 50px, 0) rotate(270deg) scale(1.05);
    }
}

@keyframes waveFlow {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.95;
    }
    50% {
        transform: translateY(0) scale(1.1);
        opacity: 0.9;
    }
    75% {
        transform: translateY(10px) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes liquidMorph {
    0%, 100% {
        border-radius: 50% 40% 60% 30% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    33% {
        border-radius: 40% 60% 50% 60% / 50% 60% 30% 60%;
        transform: rotate(120deg);
    }
    66% {
        border-radius: 60% 30% 40% 70% / 30% 70% 50% 40%;
        transform: rotate(240deg);
    }
}

/* Particle Layer - Static */
.particle-layer {
    display: none;
}

/* Grid Overlay - Static */
.grid-overlay {
    display: none;
}

@keyframes particleMove {
    0%, 100% {
        background-position: 0% 0%, 100% 0%;
    }
    50% {
        background-position: 20% 20%, 80% 20%;
    }
}

@keyframes gridShift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(50px, 50px, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Floating Particles - Optimized */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    contain: layout style paint;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite;
    opacity: 0.6;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 0 6px var(--primary-color);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 5%;
    top: 50%;
    animation-delay: 6s;
    animation-duration: 15s;
}

/* New Animations */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -8px, 0) rotate(1deg);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textPulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.03, 1.03, 1);
    }
}



@keyframes particleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate3d(20px, -20px, 0) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(-15px, 15px, 0) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate3d(15px, 20px, 0) scale(1.05);
        opacity: 0.7;
    }
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    padding: 2rem 0.4rem;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    min-height: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AI Hero Text Container */
.hero-text-container {
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 15px var(--glass-shadow);
}

.badge-icon {
    font-size: 1rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px var(--glass-shadow);
}

.ai-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: -2.4rem -0.6rem;
    padding: 0;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    color: #1a1a1a;
    width: 100%;
    white-space: normal;
    word-break: break-word;
    margin: 0;
    padding: 0;
    position: relative;
    transform: translateY(-90%);
}

.gradient-ai {
    color: #1a1a1a;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
    margin-top: -1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateY(-50%);
}

.hero-input-container {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
    max-width: 490px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a1a;
    background: transparent;
    border-radius: 12px;
}

.hero-input::placeholder {
    color: #999999;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.hero-settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
}

.hero-settings-btn:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    z-index: 10;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(211, 116, 160, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tag:hover {
    background: rgba(211, 116, 160, 0.1);
    border-color: rgba(211, 116, 160, 0.4);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.power-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    color: #999999;
    opacity: 0.5;
    animation: fadeInUp 0.8s ease-out 1s both;
    position: relative;
    z-index: 10;
}

.power-icon svg {
    width: 24px;
    height: 24px;
}

.hero-stats {
    display: none;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 16px;
    padding: 0.875rem 1.25rem;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.stat-item:hover {
    border-color: rgba(167, 139, 250, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

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

.stat-number {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 800;
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 2px 8px rgba(167, 139, 250, 0.5));
}

.stat-label {
    font-size: 0.8125rem;
    color: #e0e7ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(139, 92, 246, 0.3);
}



/* Hero Visual - Floating Cards */
.hero-visual {
    display: none;
}

.center-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(147, 51, 234, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: morphWave 8s ease-in-out infinite;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-ai);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    animation: rotate 20s linear infinite, innerPulse 4s ease-in-out infinite;
}

@keyframes innerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
    z-index: 2;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px var(--glass-shadow),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.floating-card:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: rgba(211, 116, 160, 0.5);
    box-shadow: 0 12px 40px var(--glass-shadow);
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-5 {
    top: 50%;
    left: -5%;
    animation-delay: 2s;
}

.card-6 {
    top: 60%;
    right: -5%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(10px) rotate(-2deg);
    }
}

@keyframes morphWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        border-radius: 50%;
        filter: hue-rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.15) rotate(90deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        filter: hue-rotate(90deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.95) rotate(180deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        filter: hue-rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1) rotate(270deg);
        border-radius: 40% 60% 50% 60% / 70% 30% 60% 40%;
        filter: hue-rotate(270deg);
    }
}

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


.form-label {
    font-size: clamp(0.9375rem, 2.3vw, 1.25rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.form-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 0.5rem;
}


.email-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--glass-shadow),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.input-wrapper:focus-within {
    border-color: rgba(211, 116, 160, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px var(--glass-shadow), 
                0 0 0 4px var(--glass-shadow),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transform: translateY(-2px);
}

#emailInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding: 0.5rem;
    font-family: inherit;
    width: 100%;
    z-index: 1;
}

#emailInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

#emailInput:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: var(--gradient-ai);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

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

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: scale(1.05) translateZ(0);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

.submit-btn:active {
    transform: scale(0.98) translateZ(0);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

.disclaimer {
    font-size: clamp(0.6875rem, 1.5vw, 0.8125rem);
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    margin: 0.75rem 0 0;
    margin-top: 0.75rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-weight: 400;
    animation: fadeIn 1s ease-out 1.5s both;
    box-sizing: border-box;
    padding: 0 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

/* Services Section */
.services-section {
    position: relative;
    width: 100%;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #E9D5FF 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    z-index: 0;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0.75rem;
    }
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(211, 116, 160, 0.4) 15%, 
        rgba(211, 116, 160, 0.5) 30%,
        rgba(211, 116, 160, 0.6) 50%,
        rgba(211, 116, 160, 0.5) 70%, 
        rgba(211, 116, 160, 0.4) 85%, 
        transparent 100%);
    z-index: 1;
    box-shadow: 0 0 20px var(--glass-shadow),
                0 0 40px var(--glass-shadow);
}

.services-section::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(211, 116, 160, 0.6) 50%,
        transparent 100%);
    z-index: 1;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: visible;
}

@media (max-width: 768px) {
    .services-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 0.75rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #666666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    overflow: visible;
    padding-top: 2rem;
    width: 100%;
}

@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(211, 116, 160, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    padding-top: 2.25rem;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 1px 0 rgba(255, 255, 255, 0.2) inset;
    min-height: 320px;
    width: 100%;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(211, 116, 160, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 1px 0 rgba(255, 255, 255, 0.3) inset;
    transform: translateY(-4px);
}

.service-card-large {
    transform: scale(1.1);
    z-index: 5;
}

.service-card-large:hover {
    transform: scale(1.1);
}

.service-card-transparent {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(211, 116, 160, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-card-transparent:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(211, 116, 160, 0.3) !important;
}

@media (max-width: 768px) {
    .service-card-large {
        transform: none;
    }
    
    .service-card-large:hover {
        transform: none;
    }
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.free-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    z-index: 10;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

.free-badge::before {
    content: 'FREE';
    position: absolute;
    top: 12px;
    right: -20px;
    width: 120px;
    height: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(96, 165, 250, 0.6) 50%, rgba(147, 197, 253, 0.7) 100%);
    color: #1a1a1a;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.free-badge::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent rgba(96, 165, 250, 0.6) transparent;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.15));
}

.free-badge:hover::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(96, 165, 250, 0.7) 50%, rgba(147, 197, 253, 0.8) 100%);
    transform: rotate(45deg) scale(1.05);
}

@keyframes freeBadgePulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--shadow-color), 0 0 30px rgba(211, 116, 160, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px var(--shadow-color), 0 0 40px rgba(211, 116, 160, 0.4);
        transform: scale(1.05);
    }
}

@keyframes freeBadgeShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes freeBadgeShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

.service-description {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: #4a4a4a;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 480px) {
    .service-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.2));
    color: #43e97b;
    border: 1px solid rgba(67, 233, 123, 0.3);
}

.status-beta {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.2), rgba(254, 225, 64, 0.2));
    color: #fa709a;
    border: 1px solid rgba(250, 112, 154, 0.3);
}

.status-coming-soon {
    background: linear-gradient(135deg, rgba(211, 116, 160, 0.2), rgba(244, 183, 211, 0.2));
    color: var(--primary-color);
    border: 1px solid rgba(211, 116, 160, 0.3);
}

.service-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(96, 165, 250, 0.5) 50%, rgba(147, 197, 253, 0.6) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
    width: 100%;
    max-width: 200px;
    backdrop-filter: blur(10px);
}

.service-btn::before {
    display: none;
}

.service-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(96, 165, 250, 0.6) 50%, rgba(147, 197, 253, 0.7) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.service-card-large .service-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(96, 165, 250, 0.6) 50%, rgba(147, 197, 253, 0.7) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.service-btn:active {
    transform: none;
}

.btn-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 29px;
    height: 29px;
    z-index: 10;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

.btn-badge::before {
    content: 'BETA';
    position: absolute;
    top: 5px;
    right: -9px;
    width: 46px;
    height: 10px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    font-size: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    box-shadow: 0 1px 3px rgba(34, 197, 94, 0.4);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.btn-badge::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 9px;
    border-color: transparent transparent #22c55e transparent;
    filter: drop-shadow(0 1px 2px rgba(34, 197, 94, 0.3));
}

/* Responsive Design - Header Section */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
    
    .hero-text-container {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
        font-size: clamp(1.75rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 1.5rem auto;
        text-align: center;
        font-size: clamp(0.875rem, 2.2vw, 1.0625rem);
    }
    
    .hero-actions {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        min-width: 90px;
        padding: 0.875rem 1rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 0.75rem;
    }
    
    .card-5,
    .card-6 {
        display: none;
    }
    
    .center-orb {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4vw + 0.65rem, 3.25rem);
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
        margin-bottom: 0.875rem;
    }
    
    .hero-stats {
        gap: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .form-label {
        margin-bottom: 0.625rem;
    }
    
    .services-section {
        padding: 5rem 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
    
    
    /* Features Section Responsive */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Contact Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-main-text {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .gradient-text {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .gradient-text-2 {
        font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    }
    
    .floating-text {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .text-word {
        font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
        letter-spacing: 1.5px;
    }
    
    .email-form-container {
        max-width: 100%;
        width: 100%;
        margin-top: 0.25rem;
        padding: 0;
        box-sizing: border-box;
    }
    
    .email-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .input-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .disclaimer {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0.75rem 0 0;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        left: 0;
        right: 0;
    }
    
    .input-wrapper {
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
    }
    
    .form-label {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: clamp(1.625rem, 5vw + 0.45rem, 2.75rem);
        line-height: 1.15;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Responsive */
    .main-nav {
        padding: 0.5rem;
        height: 60px;
        min-height: 60px;
        max-height: 60px;
    }
    
    .nav-hero-section .main-nav {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    .nav-hero-section .hero-header {
        min-height: calc(100vh - 60px) !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
    
    /* Hide left and right sections on mobile */
    .nav-left,
    .nav-right {
        display: none !important;
    }
    
    /* Center section takes full width on mobile */
    .nav-center {
        width: 100%;
        margin: 0;
        clip-path: none;
        border-radius: 12px;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .nav-center::before,
    .nav-center::after {
        display: none;
    }
    
    .nav-section {
        height: 50px;
        border-radius: 12px;
        clip-path: none;
        margin: 0;
        padding: 0 1rem;
    }
    
    .nav-left::after,
    .nav-left::before,
    .nav-right::before {
        display: none;
    }
    
    .nav-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .nav-icon-btn {
        padding: 0.4rem;
    }
    
    .nav-icon-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-header {
        padding: 0.5rem;
        min-height: auto;
    }
    
    .nav-hero-section .hero-header {
        min-height: calc(100vh - 60px) !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0.5rem;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8125rem, 2.5vw, 1rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-actions {
        margin-bottom: 1.25rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        gap: 0.875rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: clamp(1.125rem, 3vw, 1.5rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .card-icon {
        font-size: 1.25rem;
    }
    
    .card-text {
        font-size: 0.6875rem;
    }
    
    .center-orb {
        width: 120px;
        height: 120px;
    }
    
    .card-3,
    .card-4 {
        display: none;
    }
    
    .hero-text-container {
        margin-bottom: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(1.375rem, 4.5vw + 0.45rem, 2.5rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .form-label {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 1rem;
    }
    
    .input-wrapper {
        padding: 0.875rem 1.25rem;
    }
    
    .submit-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .submit-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .email-form-container {
        width: 100%;
        max-width: 100%;
        z-index: 10;
    }
    
    .services-section {
        padding: 4rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .services-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .services-subtitle {
        font-size: clamp(0.9375rem, 2.8vw, 1.125rem);
    }
    
    .service-card {
        padding: 1.5rem;
        padding-top: 2rem;
        min-height: 300px;
    }
    
    .service-btn {
        max-width: 100%;
    }
    
    .art-circle {
        filter: blur(20px);
        opacity: 0.6;
    }
    
    .art-circle-1,
    .art-circle-2,
    .art-circle-3,
    .art-circle-4,
    .art-circle-5,
    .art-circle-6,
    .art-circle-7,
    .art-circle-8 {
        width: 120px;
        height: 120px;
    }
    
    .hero-tags {
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 600px) {
    /* Navigation - Ensure left/right are hidden */
    .nav-left,
    .nav-right {
        display: none !important;
    }
    
    .nav-center {
        width: 100%;
        padding: 0 0.75rem;
    }
    
    .nav-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-icon-btn {
        padding: 0.35rem;
    }
    
    .nav-icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 5vw + 0.4rem, 2.25rem);
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0.625rem;
    }
    
    .hero-stats {
        gap: 0.875rem;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 480px) {
    /* Navigation - Ensure left/right are hidden */
    .nav-left,
    .nav-right {
        display: none !important;
    }
    
    .main-nav {
        padding: 0.4rem;
        height: 55px;
        min-height: 55px;
        max-height: 55px;
    }
    
    .nav-hero-section .main-nav {
        height: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }
    
    .nav-hero-section .hero-header {
        min-height: calc(100vh - 55px) !important;
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .nav-center {
        width: 100%;
        padding: 0 0.5rem;
        height: 45px;
    }
    
    .nav-logo svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-icon-btn {
        padding: 0.3rem;
    }
    
    .nav-icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-header {
        padding: 0.5rem;
        min-height: auto;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0.5rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.375rem, 7vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 3vw, 0.9375rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-stats {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
    }
    
    .stat-number {
        font-size: clamp(1rem, 4vw, 1.375rem);
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .floating-card {
        min-width: 70px;
        padding: 0.625rem;
    }
    
    .card-icon {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.625rem;
    }
    
    .card-3,
    .card-4 {
        display: none;
    }
    
    .center-orb {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: clamp(1.125rem, 5.5vw + 0.2rem, 1.875rem);
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.15rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .form-label {
        font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
        margin-bottom: 0.875rem;
    }
    
    .input-wrapper {
        padding: 0.75rem 1rem;
    }
    
    .submit-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .submit-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .email-form-container {
        width: 100%;
        max-width: 100%;
        z-index: 10;
    }
    
    .services-section {
        padding: 3rem 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .services-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .services-subtitle {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
    
    .service-card {
        padding: 1.25rem;
        padding-top: 1.75rem;
        min-height: auto;
        border-radius: 12px;
    }
    
    .service-name {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .service-btn {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
    }
    
    .free-badge {
        width: 60px;
        height: 60px;
    }
    
    .free-badge::before {
        top: 8px;
        right: -15px;
        width: 90px;
        height: 20px;
        font-size: 0.5rem;
    }
    
    .free-badge::after {
        border-width: 0 0 15px 15px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.125rem, 6.5vw + 0.25rem, 1.875rem);
        line-height: 1.35;
    }
    
    .title-line {
        margin-bottom: 0.1rem;
    }
}

/* Large screens - ensure title doesn't get too big */
@media (min-width: 1440px) {
    .hero-title {
        font-size: clamp(3.5rem, 4vw, 4.5rem);
        line-height: 1.1;
    }
}

@media (min-width: 1920px) {
    .hero-title {
        font-size: clamp(4rem, 3.5vw, 5rem);
    }
}

/* Additional responsive styles for hero elements */
@media (max-width: 1024px) {
    .hero-main-text {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .gradient-text {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .gradient-text-2 {
        font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    }
    
    .floating-text {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .text-word {
        font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .offer-text {
        margin-bottom: 0.75rem;
    }

    .question-text {
        margin-top: 0.75rem;
    }

    .art-circle {
        filter: blur(30px);
        opacity: 0.4;
    }

    .services-section {
        padding: 3rem 1rem;
    }

    .services-title {
        margin-bottom: 2rem;
    }

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

    .art-circle-1,
    .art-circle-2,
    .art-circle-3,
    .art-circle-4,
    .art-circle-5,
    .art-circle-6,
    .art-circle-7,
    .art-circle-8 {
        width: 100px;
        height: 100px;
    }
    
    .hero-tags {
        gap: 0.4rem;
    }
    
    .tag {
        font-size: 0.6875rem;
        padding: 0.35rem 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 1rem 0.75rem;
    }

    .cta-box {
        padding: 1.5rem 1.25rem;
    }

    .email-box {
        padding: 1.5rem 1.25rem;
    }

    .header-content {
        gap: 1rem;
    }

    .input-wrapper {
        padding: 0.4rem;
    }

    #emailInput {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.65rem 0.875rem;
    }

    .submit-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .submit-btn svg {
        width: 18px;
        height: 18px;
    }

    .art-circle {
        filter: blur(30px);
        opacity: 0.3;
    }

    .art-circle-1,
    .art-circle-2,
    .art-circle-3,
    .art-circle-4,
    .art-circle-5,
    .art-circle-6,
    .art-circle-7,
    .art-circle-8 {
        width: 80px;
        height: 80px;
    }
    
    .hero-tags {
        gap: 0.35rem;
        margin-top: 1rem;
    }
    
    .tag {
        font-size: 0.625rem;
        padding: 0.3rem 0.6rem;
    }
    
    .power-icon {
        margin-top: 1rem;
    }
    
    .power-icon svg {
        width: 20px;
        height: 20px;
    }

    .services-section {
        padding: 2.5rem 0.75rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .service-btn {
        width: 100%;
    }
}

/* Navigation - Always relative, never fixed */
.main-nav,
nav.main-nav,
section .main-nav,
.nav-hero-section .main-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 1000;
    padding: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    z-index: -1;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.3);
    overflow: visible;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 100%;
}

.nav-section {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Left Section - Glass */
.nav-left {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px 0 0 12px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.nav-left::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link:not(:last-child) {
    margin-right: 0.5rem;
}

/* Center Section - Glass */
.nav-center {
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    gap: 1.5rem;
    padding: 0 2.5rem;
    margin: 0 -20px;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.nav-center::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.nav-center::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 20px 30px 0;
    border-color: transparent rgba(255, 255, 255, 0.12) transparent transparent;
    z-index: 1;
}

.nav-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px var(--glass-shadow);
}

.nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-icon-btn svg {
    width: 24px;
    height: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 0.25rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.logo-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
    display: block;
    background: transparent;
}

.nav-toggle {
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: block;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px var(--glass-shadow);
}

/* Right Section - Glass */
.nav-right {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 0 12px 12px 0;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    gap: 1rem;
    padding-left: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.nav-right::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 20px 30px 0;
    border-color: transparent rgba(59, 130, 246, 0.5) transparent transparent;
    z-index: 2;
}

.welcome-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

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

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.profile-avatar svg {
    width: 100%;
    height: 100%;
}

/* About Section */
.how-it-works-section {
    padding: 6rem 1.5rem;
    background: #ffffff;
    position: relative;
}

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

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-section .section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.how-it-works-section .section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #666666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.how-it-works-card {
    background: linear-gradient(180deg, #E9D5FF 0%, #ffffff 100%);
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-illustration {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.card-illustration svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

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

.card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 1rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-it-works-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.9375rem;
    }
}

/* Panoramic Image Carousel Section */
.panoramic-carousel-section {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.panoramic-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(211, 116, 160, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #d374a0;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-nav:hover:not([disabled]) {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(211, 116, 160, 0.7);
    box-shadow: 0 6px 20px rgba(211, 116, 160, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active:not([disabled]) {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 10px rgba(211, 116, 160, 0.3);
}

.slider-nav[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-nav-prev {
    left: 20px;
}

.slider-nav-next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.panoramic-carousel {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 350px;
    position: relative;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.panoramic-carousel:active {
    cursor: grabbing;
}

.panoramic-carousel::-webkit-scrollbar {
    display: none;
}

.panoramic-panel {
    flex: 0 0 auto;
    width: 280px;
    min-width: 280px;
    height: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.panoramic-panel:nth-child(1) {
    margin-left: 0;
    border-radius: 0;
    clip-path: none;
    z-index: 1;
    opacity: 0.15;
    filter: blur(3px);
}

.panoramic-panel:nth-child(2) {
    z-index: 2;
    opacity: 0.8;
    filter: blur(0.5px);
}

.panoramic-panel:nth-child(3) {
    z-index: 3;
    opacity: 0.95;
    filter: blur(0.2px);
}

.panoramic-panel:nth-child(4) {
    z-index: 4;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(5) {
    z-index: 5;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(6) {
    z-index: 6;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(7) {
    z-index: 7;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(8) {
    z-index: 7;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(9) {
    z-index: 6;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(10) {
    z-index: 5;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(11) {
    z-index: 4;
    opacity: 1;
    filter: blur(0);
}

.panoramic-panel:nth-child(12) {
    z-index: 3;
    opacity: 0.95;
    filter: blur(0.2px);
}

.panoramic-panel:nth-child(13) {
    z-index: 2;
    opacity: 0.8;
    filter: blur(0.5px);
}

.panoramic-panel:nth-child(14) {
    margin-right: 0;
    border-radius: 0;
    clip-path: none;
    z-index: 1;
    opacity: 0.15;
    filter: blur(3px);
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    min-width: 100%;
    min-height: 100%;
}

.panoramic-panel:nth-child(1) .panel-image {
    border-radius: 0;
}

.panoramic-panel:nth-child(14) .panel-image {
    border-radius: 0;
}

.panel-fade-left {
    position: relative;
}

.panel-fade-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%);
    z-index: 3;
    border-radius: 0;
    pointer-events: none;
}

.panel-fade-right {
    position: relative;
}

.panel-fade-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%);
    z-index: 3;
    border-radius: 0;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .panoramic-panel {
        width: 245px;
        min-width: 245px;
        margin: 0;
        border-radius: 0;
    }
    
    .panoramic-carousel {
        height: 315px;
        padding: 0;
    }
    
    .panoramic-panel:nth-child(1) {
        margin-left: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .panoramic-panel:nth-child(14) {
        margin-right: 0;
        border-radius: 0;
        clip-path: none;
    }
}

@media (max-width: 968px) {
    .panoramic-panel {
        width: 210px;
        min-width: 210px;
        margin: 0;
        border-radius: 0;
    }
    
    .panoramic-carousel {
        height: 280px;
        padding: 0;
    }
    
    .panoramic-panel:nth-child(1),
    .panoramic-panel:nth-child(2),
    .panoramic-panel:nth-child(3),
    .panoramic-panel:nth-child(12),
    .panoramic-panel:nth-child(13),
    .panoramic-panel:nth-child(14) {
        display: none;
    }
    
    .panoramic-panel:nth-child(4) {
        margin-left: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .panoramic-panel:nth-child(11) {
        margin-right: 0;
        border-radius: 0;
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .panoramic-carousel-section {
        padding: 2rem 0;
    }
    
    .panoramic-carousel {
        height: 245px;
        padding: 0;
    }
    
    .panoramic-panel {
        width: 196px;
        min-width: 196px;
        margin: 0;
        border-radius: 0;
    }
    
    .panoramic-panel:nth-child(1),
    .panoramic-panel:nth-child(2),
    .panoramic-panel:nth-child(3),
    .panoramic-panel:nth-child(12),
    .panoramic-panel:nth-child(13),
    .panoramic-panel:nth-child(14) {
        display: none;
    }
    
    .panoramic-panel:nth-child(4) {
        margin-left: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .panoramic-panel:nth-child(11) {
        margin-right: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .panoramic-panel:nth-child(4),
    .panoramic-panel:nth-child(11) {
        opacity: 0.8;
        filter: blur(0.3px);
    }
}

@media (max-width: 480px) {
    .panoramic-carousel {
        height: 210px;
        padding: 0;
    }
    
    .panoramic-panel {
        width: 175px;
        min-width: 175px;
        margin: 0;
        border-radius: 0;
    }
    
    .panoramic-panel:nth-child(1),
    .panoramic-panel:nth-child(2),
    .panoramic-panel:nth-child(3),
    .panoramic-panel:nth-child(4),
    .panoramic-panel:nth-child(11),
    .panoramic-panel:nth-child(12),
    .panoramic-panel:nth-child(13),
    .panoramic-panel:nth-child(14) {
        display: none;
    }
    
    .panoramic-panel:nth-child(5) {
        margin-left: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .panoramic-panel:nth-child(10) {
        margin-right: 0;
        border-radius: 0;
        clip-path: none;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-nav-prev {
        left: 10px;
    }
    
    .slider-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav svg {
        width: 22px;
        height: 22px;
    }
    
    .slider-nav-prev {
        left: 15px;
    }
    
    .slider-nav-next {
        right: 15px;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 1.5rem;
    background: #ffffff;
    position: relative;
}

.features-section .section-title {
    color: #1a1a1a;
}

.features-section .section-subtitle {
    color: #666666;
}

.features-section .section-badge {
    background: rgba(233, 213, 255, 0.3);
    border-color: rgba(147, 51, 234, 0.3);
    color: #9333EA;
}

.features-timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, #E9D5FF 0%, #C084FC 50%, #E9D5FF 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-node {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E9D5FF 0%, #C084FC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
    border: 3px solid #ffffff;
}

.node-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333EA;
}

.timeline-content-left,
.timeline-content-right {
    padding: 1rem;
}

.timeline-content-left {
    text-align: right;
}

.timeline-content-right {
    text-align: left;
}

.features-timeline .feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(233, 213, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    width: 100%;
    max-width: 100%;
}

.features-timeline .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.features-timeline .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.features-timeline .feature-card p {
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .features-timeline::before {
        left: 30px;
        top: 30px;
        bottom: 30px;
    }
    
    .timeline-step {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .timeline-content-left {
        grid-column: 2;
        text-align: left;
    }
    
    .timeline-content-right {
        grid-column: 2;
    }
    
    .timeline-node {
        grid-column: 1;
    }
    
    .node-circle {
        width: 60px;
        height: 60px;
    }
    
    .node-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-timeline {
        padding: 0 1rem;
    }
    
    .features-timeline::before {
        left: 25px;
        top: 25px;
        bottom: 25px;
    }
    
    .timeline-step {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .node-circle {
        width: 50px;
        height: 50px;
    }
    
    .node-number {
        font-size: 1rem;
    }
    
    .features-timeline .feature-card {
        padding: 2rem;
    }
    
    .features-timeline .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .features-timeline .feature-card p {
        font-size: 0.9375rem;
    }
    
    .feature-icon-large {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 1.5rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.testimonials-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #9333EA;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-intro {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #9333EA;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

.testimonials-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Surrounding Profile Pictures */
.profile-picture {
    position: absolute;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    overflow: hidden !important;
    border: 4px solid;
    z-index: 1;
    aspect-ratio: 1 / 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.profile-picture img,
.profile-img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    flex-shrink: 0;
    box-sizing: border-box;
}

.profile-top-left {
    top: 10%;
    left: 5%;
    border-color: #BFDBFE;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-mid-left {
    top: 45%;
    left: 2%;
    border-color: #FDE68A;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-bottom-left {
    bottom: 10%;
    left: 8%;
    border-color: #86EFAC;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-top-left img,
.profile-mid-left img,
.profile-bottom-left img {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.profile-top-right {
    top: 8%;
    right: 5%;
    border-color: #FBCFE8;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-mid-right {
    top: 50%;
    right: 3%;
    border-color: #FED7AA;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-bottom-right {
    bottom: 12%;
    right: 7%;
    border-color: #86EFAC;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.profile-top-right img,
.profile-mid-right img,
.profile-bottom-right img {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important;
}

/* Central Testimonial */
.testimonial-main {
    position: relative;
    z-index: 10;
    text-align: center;
    background: #ffffff;
    padding: 2.1rem 1.4rem;
    max-width: 420px;
    margin: 0 auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    font-size: 1.5rem;
    color: #FFD700;
    line-height: 1;
}

.testimonial-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    quotes: '"' '"';
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-text::before {
    content: open-quote;
}

.testimonial-text::after {
    content: close-quote;
}

.testimonial-profile {
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #FFD700;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-info {
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-company {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E9D5FF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #C084FC;
    transform: scale(1.2);
}

.dot.active {
    background: #9333EA;
    width: 32px;
    border-radius: 6px;
}

/* Reviews Summary */
.reviews-summary {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(233, 213, 255, 0.3);
}

.summary-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-stars {
    display: flex;
    gap: 0.25rem;
}

.summary-stars .star {
    font-size: 1.25rem;
    color: #FFD700;
    line-height: 1;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a4a4a;
}

.review-count {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #9333EA;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.review-label {
    font-size: 0.875rem;
    color: #9333EA;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .testimonials-content {
        min-height: 400px;
    }
    
    .profile-picture {
        width: 60px;
        height: 60px;
        border-width: 3px;
        border-radius: 50% !important;
        aspect-ratio: 1 / 1;
    }
    
    .profile-img {
        border-radius: 50% !important;
        aspect-ratio: 1 / 1;
    }
    
    .testimonial-main {
        padding: 1.4rem 1.05rem;
        max-width: 420px;
    }
    
    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .review-count {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 1.5rem 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    margin-bottom: 0;
    border-bottom: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Contact Form */
.contact-form-side {
    padding: 2rem 0;
    max-width: 500px;
}

.contact-heading {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-heading-line {
    width: 80px;
    height: 4px;
    background: #4a4a4a;
    margin-bottom: 3.5rem;
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f0f0f0;
    border: none;
    border-radius: 14px;
    color: #1a1a1a;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 1.25rem;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(90deg, #C084FC 0%, #9333EA 100%);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
    width: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
    background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%);
}

.submit-arrow {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: normal;
}

/* Right Side - Illustration */
.contact-illustration-side {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.illustration-gradient {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 580px;
    max-height: 580px;
    background: linear-gradient(180deg, #FED7AA 0%, #FBCFE8 50%, #E9D5FF 100%);
    border-radius: 48% 52% 58% 42% / 52% 48% 52% 48%;
    position: relative;
    overflow: visible;
    animation: morphShape 12s ease-in-out infinite;
    box-shadow: 0 25px 70px rgba(147, 51, 234, 0.12);
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 48% 52% 58% 42% / 52% 48% 52% 48%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 52% 48% 54% 46% / 48% 52% 48% 52%;
        transform: rotate(1.5deg) scale(1.01);
    }
    50% {
        border-radius: 50% 50% 56% 44% / 50% 50% 48% 52%;
        transform: rotate(0deg) scale(1);
    }
    75% {
        border-radius: 46% 54% 52% 48% / 54% 46% 52% 48%;
        transform: rotate(-1.5deg) scale(1.01);
    }
}

.illustration-icon {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.icon-satellite {
    top: 18%;
    left: 5%;
    color: #9333EA;
}

.icon-envelope {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    z-index: 3;
}

.icon-bird {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: #9333EA;
    z-index: 3;
}

.icon-phone {
    bottom: 15%;
    right: 10%;
    color: #9333EA;
}

.icon-star {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: normal;
    line-height: 1;
}

.icon-star-1 {
    top: 25%;
    right: 20%;
}

.icon-star-2 {
    top: 58%;
    left: 12%;
}

.icon-star-3 {
    bottom: 32%;
    left: 22%;
}

.icon-star-4 {
    top: 10%;
    right: 28%;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.icon-circle-1 {
    top: 8%;
    right: 12%;
    background: #FED7AA;
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(254, 215, 170, 0.3);
}

.icon-circle-2 {
    bottom: 12%;
    right: 8%;
    background: #E9D5FF;
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(233, 213, 255, 0.3);
}

.icon-circle-3 {
    top: 50%;
    right: 6%;
    background: #FBCFE8;
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(251, 207, 232, 0.3);
    transform: translateY(-50%);
}

.icon-circle-4 {
    top: 50%;
    right: 18%;
    background: #FED7AA;
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(254, 215, 170, 0.3);
    transform: translateY(-50%);
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-illustration-side {
        height: 400px;
        order: -1;
    }
    
    .illustration-gradient {
        max-width: 400px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-illustration-side {
        height: 300px;
    }
    
    .illustration-gradient {
        max-width: 300px;
        max-height: 300px;
    }
    
    .illustration-icon {
        transform: scale(0.8);
    }
    
    .icon-satellite,
    .icon-envelope,
    .icon-bird,
    .icon-phone {
        transform: scale(0.7);
    }
    
    .icon-envelope {
        transform: translate(-50%, -50%) scale(0.7);
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 4rem 1.5rem 2rem;
    position: relative;
    margin-top: 0;
    border-top: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 0 0 20px 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Left Side - Brand and Newsletter */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-icon {
    font-size: 2rem;
    line-height: 1;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.newsletter-prompt {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: #e8e8e8;
    border: none;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: #e0e0e0;
    box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.2);
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-submit {
    padding: 0.875rem 1.75rem;
    background: #4a4a4a;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Right Side - Navigation Links */
.footer-right {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

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

.nav-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.nav-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-column-links li {
    margin-bottom: 0.625rem;
}

.nav-column-links li a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.nav-column-links li a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Section */
#faq.faq-section {
    padding: 5rem 0;
}

#faq .section-title {
    color: #1a1a1a;
}

#faq .section-subtitle {
    color: #1a1a1a;
}

.faq-section .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 720px;
    margin: 0 auto;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(211, 116, 160, 0.08);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0 8px 28px rgba(211, 116, 160, 0.12);
    border-color: rgba(211, 116, 160, 0.35);
}

.faq-section .faq-item[open] {
    border-color: rgba(211, 116, 160, 0.4);
    box-shadow: 0 8px 28px rgba(211, 116, 160, 0.14);
}

.faq-section .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

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

.faq-section .faq-item summary:hover {
    background: rgba(211, 116, 160, 0.06);
    color: var(--primary-color);
}

.faq-section .faq-item[open] summary {
    background: rgba(211, 116, 160, 0.08);
    color: var(--primary-color);
}

.faq-section .faq-item .faq-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-ai);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease, background 0.25s ease;
    box-shadow: 0 2px 8px rgba(211, 116, 160, 0.35);
}

.faq-section .faq-item summary:hover .faq-toggle {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(211, 116, 160, 0.45);
}

.faq-section .faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #b84a7a 0%, #a63d6b 100%);
}

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

.faq-section .faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    padding-left: 0;
}

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

/* Adjust hero section for navigation - removed since nav is now relative */
.nav-hero-section .hero-header {
    padding-top: 2rem !important;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-box:hover,
    .email-box:hover {
        transform: none;
    }

    .submit-btn:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .service-btn:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-box {
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid var(--glass-border);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 20px var(--glass-shadow);
    }

    .email-box {
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid var(--glass-border);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 20px var(--glass-shadow);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-header::before,
    .hero-header::after {
        animation: none;
    }
    
    .art-circle {
        animation: none;
    }

    .free-badge {
        animation: none;
    }

    .free-badge::before,
    .free-badge::after {
        animation: none;
    }
}

/* Footer Responsive Styles */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-container {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        padding: 1.5rem 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-icon {
        font-size: 1.75rem;
    }
}



/* Merged Navigation and Hero Section */
.nav-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-hero-section .main-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 100 !important;
    flex-shrink: 0;
    margin: 0 !important;
    width: 100% !important;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
}

.nav-hero-section .hero-header {
    position: relative !important;
    flex: 1;
    min-height: calc(100vh - 80px);
    margin-top: 0 !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    width: 100% !important;
    z-index: 1 !important;
    box-sizing: border-box;
}
