:root {
    --primary-dark: rgb(26, 15, 46);
    --primary-light: #f8f9fa;
    --accent-coral: #ff7b63;
    --accent-purple: rgb(85, 45, 180);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(
        to bottom,
        var(--primary-dark) 0%,
        rgb(40, 25, 70) 50%,
        rgb(50, 30, 90) 90%
    );
    color: var(--primary-light);
    overflow-x: hidden;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo-icon {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgb(255, 70, 70),    /* Bright red */
        rgb(255, 140, 50),   /* Bright orange */
        rgb(255, 200, 50)    /* Bright yellow */
    );
    border-radius: 8px;
    animation: borderRotate 8s linear infinite;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-dark);
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.logo-icon span {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    background: linear-gradient(90deg,
        rgb(255, 70, 70),
        rgb(255, 140, 50)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 4s ease-in-out infinite;
}

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

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5) drop-shadow(0 0 5px rgba(255, 140, 50, 0.5)); }
}

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

@keyframes dropBounce {
    0%, 100% { transform: rotate(45deg) translateY(-2px); }
    50% { transform: rotate(45deg) translateY(2px); }
}

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

@keyframes flowPath {
    50% { clip-path: polygon(33% 0, 66% 0, 66% 33%, 100% 33%, 100% 66%, 33% 66%); }
}

.hero {
    min-height: 100vh;
    padding: 8rem 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(26, 15, 46, 0.8) 0%,
        rgba(40, 25, 70, 0.9) 60%,
        rgba(50, 30, 90, 1) 100%
    );
}

.content {
    max-width: 1200px;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    color: var(--primary-light);
}

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

.animated-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, 
        rgb(255, 70, 70),
        rgb(255, 140, 50),
        rgb(255, 200, 50),
        rgb(255, 140, 50),
        rgb(255, 70, 70)
    );
    background-size: 200% 100%;
    animation: gradientMove 12s linear infinite;
}

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

.subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    color: var(--primary-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    background: var(--accent-purple);
    color: var(--primary-light);
    border: none;
}

button:hover {
    transform: translateY(-2px);
}

.primary-btn {
    background: var(--accent-coral);
    color: var(--primary-light);
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

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

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 300px;
}

.card h3 {
    margin-bottom: 1rem;
}

.chart {
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.white-section {
    position: relative;
    width: 100%;
    margin-top: auto;
    background: linear-gradient(90deg, 
        rgb(255, 70, 70),
        rgb(255, 140, 50),
        rgb(255, 200, 50),
        rgb(255, 140, 50),
        rgb(255, 70, 70)
    );
    background-size: 200% 100%;
    animation: gradientMove 12s linear infinite;
}

.white-content {
    position: relative;
    background: transparent;
    padding: 1rem;
    width: 100%;
    height: 120px;
    z-index: 1;
    margin-top: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-buttons {
    display: flex;
    gap: 2.5rem;
    margin-left: 3rem;
    font-size: 1rem;
    font-weight: 500;
    align-items: center;
}

.logo-buttons a {
    color: var(--primary-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
}

.logo-buttons a:hover {
    opacity: 1;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    background: rgba(30, 20, 50, 0.98);
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

.dropdown-header {
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    padding: 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: all;
}

.dropdown::after {
    content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    top: 100%;
    left: 0;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-title {
    color: var(--primary-light);
    font-weight: 500;
}

.project-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-2px);
}

.brand-name {
    color: black;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    color: black;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 0.8;
}

.testimonial-author {
    color: black;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.6;
}

.stealth-text {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stealth-badge {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-item:has(.stealth-text) {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.project-item:has(.stealth-text):hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.logo-text {
    color: var(--primary-light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-text:hover {
    opacity: 0.9;
}

.contact-button {
    background: var(--project1-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s, opacity 0.3s;
    margin-left: auto;
    color: var(--primary-light);
    text-decoration: none;
}

.contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.nav-right .nav-link,
.nav-right .contact-button {
    color: var(--primary-light);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-right .nav-link:hover,
.nav-right .contact-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1rem 2rem;
}

.copyright {
    color: var(--primary-light);
    font-size: 0.9rem;
    opacity: 0.6;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg,
        rgba(255, 70, 70, 0.2),
        rgba(255, 140, 50, 0.2)
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease !important;
}

.blog-link:hover {
    background: linear-gradient(90deg,
        rgba(255, 70, 70, 0.3),
        rgba(255, 140, 50, 0.3)
    ) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-icon {
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.blog-link:hover .blog-icon {
    transform: translateY(-1px);
}
 