/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #323338;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* MODERN ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

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

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

@keyframes twinkle {
    0% {
        opacity: 0.2;
        transform: translateX(-5px);
    }
    25% {
        opacity: 1;
        transform: translateX(0px);
    }
    50% {
        opacity: 0.3;
        transform: translateX(6px);
    }
    75% {
        opacity: 1;
        transform: translateX(12px);
    }
    100% {
        opacity: 0.2;
        transform: translateX(18px);
    }
}

@keyframes shootingStar {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        opacity: 1;
        transform: translate(200px, 200px) rotate(-45deg);
    }
    31% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translate(200px, 200px) rotate(-45deg);
    }
}

@keyframes orbGlow {
    0% {
        box-shadow: 0 10px 30px rgba(90, 175, 188, 0.2);
    }
    50% {
        box-shadow: 0 20px 60px rgba(90, 175, 188, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(90, 175, 188, 0.2);
    }
}

@keyframes orbPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes orbFloatUp {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

.fade-in-element {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* GRADIENT BORDERS */
.gradient-border {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-pink), var(--blue), var(--purple));
    z-index: -1;
    border-radius: 18px;
    animation: rotate 4s linear infinite;
}

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

/* COLORS */
:root {
    --primary-pink: #1a3361;
    --orange: #2B70B3;
    --green: #5AAFBC;
    --purple: #9B8BC8;
    --blue: #2854A8;
    --white: #FFFFFF;
    --light-gray: #F6F7FB;
    --medium-gray: #676879;
    --dark-gray: #323338;
}

/* BUTTONS */
.btn {
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 0;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 61, 87, 0.15);
    border: none;
}

.btn-primary:hover {
    background-color: #2B70B3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 112, 179, 0.25);
    color: white;
}

.btn-outline {
    background-color: #ffffff;
    color: #374151;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100%;
}

.roket-logo {
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

.nav-logo .roket-logo {
    height: 110px !important;
    width: auto !important;
    max-width: 110px !important;
    object-fit: contain !important;
}

.nav-logo h2 {
    color: var(--primary-pink);
    font-size: 13px;
    margin: 0;
    display: block;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 13.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-pink);
}

.language-selector {
    display: flex;
    gap: 6px;
    align-items: center;
    border-left: 1px solid #e5e7eb;
    padding-left: 14px;
    margin-left: 6px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    background: #f3f4f6;
    color: var(--primary-pink);
}

.lang-btn.active {
    background: var(--primary-pink);
    color: white;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-buttons .btn {
    padding: 8px 16px;
    font-size: 13px;
}

@media (max-width: 1300px) {
    .nav-container {
        gap: 12px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu a {
        font-size: 12.5px;
    }
    
    .nav-logo .roket-logo {
        height: 100px !important;
        max-width: 100px !important;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-buttons .btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* SECTIONS */
section {
    padding: 80px 0;
}

/* ROKET PRODUCTS */
.roket-products {
    background: linear-gradient(180deg, #f8faff 0%, #f0f5ff 100%);
    padding: 60px 20px 50px 20px;
}

.roket-products-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

.roket-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    max-width: 700px;
    height: auto;
}

.roket-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.ecosystem-diagram-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.ecosystem-diagram {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.08);
    transform-origin: center;
}

.orb {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.orb-center {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle at 38% 32%, #0d1f42 0%, #050d1c 45%, #000308 100%);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(10, 40, 100, 0.6),
                0 0 40px rgba(28, 198, 224, 0.18),
                inset  7px  7px 18px rgba(28, 198, 224, 0.30),
                inset  3px  3px  6px rgba(180, 240, 255, 0.20),
                inset -9px -9px 22px rgba(0, 0, 0, 0.85);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Plasma surface */
.plasma-surface {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at 25% 35%, rgba(28, 198, 224, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 45% 65% at 72% 62%, rgba(40,  84, 168, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 55% 82%, rgba(10,  60, 140, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 80% 25%, rgba(80, 180, 255, 0.14) 0%, transparent 50%);
    filter: blur(10px);
    animation: plasmaFlow 9s ease-in-out infinite;
}

.plasma-surface::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse 70% 50% at 60% 40%, rgba(28, 198, 224, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 30% 70%, rgba(60, 120, 220, 0.20) 0%, transparent 50%);
    filter: blur(8px);
    animation: plasmaFlow 12s ease-in-out infinite reverse;
}

.plasma-surface::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 38%;
    left: 40%;
    background: radial-gradient(circle, rgba(150, 230, 255, 0.35) 0%, transparent 70%);
    filter: blur(6px);
    animation: plasmaCore 6s ease-in-out infinite;
}

@keyframes plasmaFlow {
    0%   { transform: rotate(0deg)   scale(1);    }
    33%  { transform: rotate(120deg) scale(1.06); }
    66%  { transform: rotate(240deg) scale(0.96); }
    100% { transform: rotate(360deg) scale(1);    }
}

@keyframes plasmaCore {
    0%, 100% { opacity: 0.5; transform: translate(0,    0)    scale(1);   }
    30%       { opacity: 1;   transform: translate(8px,  -6px) scale(1.4); }
    65%       { opacity: 0.6; transform: translate(-6px, 8px)  scale(0.8); }
}

/* Glass lens overlay */

.orb-center::before {
    content: '';
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 70%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse 82% 65% at 50% 100%, rgba(28,198,224,0.22) 0%, rgba(77,216,236,0.10) 45%, transparent 70%),
        radial-gradient(ellipse 40% 35% at 26% 93%, rgba(180,240,255,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 74% 93%, rgba(180,240,255,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 18% 18% at 50% 99%, rgba(255,255,255,0.18) 0%, transparent 50%);
    animation: centerShimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes centerShimmer {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.12);
    }
}

.orb-center::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
        radial-gradient(1px 1px at 10% 15%, white, transparent),
        radial-gradient(0.8px 0.8px at 25% 8%, #b4f0ff, transparent),
        radial-gradient(1.2px 1.2px at 40% 22%, #1cc6e0, transparent),
        radial-gradient(0.9px 0.9px at 58% 12%, white, transparent),
        radial-gradient(1px 1px at 72% 28%, #e8f8ff, transparent),
        radial-gradient(0.8px 0.8px at 85% 18%, #b4f0ff, transparent),
        radial-gradient(1.2px 1.2px at 15% 38%, white, transparent),
        radial-gradient(1px 1px at 30% 50%, #1cc6e0, transparent),
        radial-gradient(0.8px 0.8px at 50% 42%, #e8f8ff, transparent),
        radial-gradient(1.1px 1.1px at 68% 48%, white, transparent),
        radial-gradient(0.9px 0.9px at 82% 55%, #b4f0ff, transparent),
        radial-gradient(1px 1px at 92% 38%, white, transparent),
        radial-gradient(0.8px 0.8px at 8% 62%, #1cc6e0, transparent),
        radial-gradient(1.2px 1.2px at 22% 72%, white, transparent),
        radial-gradient(0.9px 0.9px at 38% 68%, #e8f8ff, transparent),
        radial-gradient(1px 1px at 55% 78%, white, transparent),
        radial-gradient(0.8px 0.8px at 70% 65%, #b4f0ff, transparent),
        radial-gradient(1.1px 1.1px at 85% 75%, #1cc6e0, transparent),
        radial-gradient(0.9px 0.9px at 18% 85%, white, transparent),
        radial-gradient(1px 1px at 45% 88%, #e8f8ff, transparent),
        radial-gradient(0.8px 0.8px at 62% 92%, white, transparent),
        radial-gradient(1.2px 1.2px at 78% 85%, #b4f0ff, transparent),
        radial-gradient(0.9px 0.9px at 92% 78%, white, transparent),
        radial-gradient(1px 1px at 35% 32%, #1cc6e0, transparent),
        radial-gradient(0.8px 0.8px at 75% 42%, white, transparent),
        radial-gradient(1.1px 1.1px at 48% 58%, #e8f8ff, transparent),
        radial-gradient(0.9px 0.9px at 88% 92%, white, transparent),
        radial-gradient(1px 1px at 5% 48%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 60% 30%, white, transparent),
        radial-gradient(1.2px 1.2px at 95% 55%, #1cc6e0, transparent);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 2px rgba(180,240,255,0.9)) drop-shadow(0 0 5px rgba(28,198,224,0.6));
    animation: twinkle 3s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.orb-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.orb:not(.orb-center) {
    color: white;
    top: 50%;
    left: 50%;
    overflow: hidden;
}

.orb:not(.orb-center)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
        radial-gradient(0.9px 0.9px at 15% 20%, #e8f8ff, transparent),
        radial-gradient(1.1px 1.1px at 70% 15%, white, transparent),
        radial-gradient(0.8px 0.8px at 40% 35%, #b4f0ff, transparent),
        radial-gradient(1.2px 1.2px at 80% 40%, #1cc6e0, transparent),
        radial-gradient(0.9px 0.9px at 25% 60%, white, transparent),
        radial-gradient(1px 1px at 60% 55%, #e8f8ff, transparent),
        radial-gradient(0.8px 0.8px at 85% 70%, #b4f0ff, transparent),
        radial-gradient(1.1px 1.1px at 10% 75%, white, transparent),
        radial-gradient(0.9px 0.9px at 50% 80%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 35% 12%, white, transparent),
        radial-gradient(0.8px 0.8px at 90% 25%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 55% 90%, white, transparent),
        radial-gradient(0.9px 0.9px at 20% 45%, #b4f0ff, transparent),
        radial-gradient(1px 1px at 75% 82%, #1cc6e0, transparent),
        radial-gradient(0.8px 0.8px at 45% 65%, white, transparent),
        radial-gradient(1.1px 1.1px at 30% 88%, #e8f8ff, transparent),
        radial-gradient(0.9px 0.9px at 65% 30%, white, transparent),
        radial-gradient(1px 1px at 88% 55%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 12% 92%, #1cc6e0, transparent),
        radial-gradient(1.2px 1.2px at 52% 48%, white, transparent);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 2px rgba(180, 240, 255, 0.9)) drop-shadow(0 0 4px rgba(28, 198, 224, 0.5));
    animation: twinkle 2.4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* 7 orbs positioned in circle — each with a spontaneous blue from the palette */
.orb-1 { transform: translate(-50%, -50%) translate(0, -180px); background: linear-gradient(135deg, #4DD8EC 0%, #1E9CC9 100%); }
.orb-2 { transform: translate(-50%, -50%) rotate(51.43deg) translateY(-180px) rotate(-51.43deg); background: linear-gradient(135deg, #1a3361 0%, #2854A8 100%); }
.orb-3 { transform: translate(-50%, -50%) rotate(102.86deg) translateY(-180px) rotate(-102.86deg); background: linear-gradient(135deg, #2854A8 0%, #5BA3D9 100%); }
.orb-4 { transform: translate(-50%, -50%) rotate(154.29deg) translateY(-180px) rotate(-154.29deg); background: linear-gradient(135deg, #4DD8EC 0%, #5BA3D9 100%); }
.orb-5 { transform: translate(-50%, -50%) rotate(205.71deg) translateY(-180px) rotate(-205.71deg); background: linear-gradient(135deg, #1E9CC9 0%, #2854A8 100%); }
.orb-6 { transform: translate(-50%, -50%) rotate(257.14deg) translateY(-180px) rotate(-257.14deg); background: linear-gradient(135deg, #1a3361 0%, #1E9CC9 100%); }
.orb-7 { transform: translate(-50%, -50%) rotate(308.57deg) translateY(-180px) rotate(-308.57deg); background: linear-gradient(135deg, #5BA3D9 0%, #4DD8EC 100%); }

.orb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    padding: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.orb:not(.orb-center):hover {
    filter: brightness(1.15);
    box-shadow: 0 12px 32px rgba(40, 84, 168, 0.4);
}

.ecosystem-connections {
    opacity: 1;
    transform-origin: 250px 250px;
    animation: svgRingZoom 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes svgRingZoom {
    0%   { transform: scale(1);    }
    26%  { transform: scale(1.22); }
    58%  { transform: scale(1.22); }
    86%  { transform: scale(1);    }
    100% { transform: scale(1);    }
}

.ecosystem-diagram {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.08);
    transform-origin: center;
}

.orbit-pulse-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    animation: orbitZoomCycle 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes orbitZoomCycle {
    0%   { transform: translate(-50%, -50%) scale(1);    }
    26%  { transform: translate(-50%, -50%) scale(1.22); }
    58%  { transform: translate(-50%, -50%) scale(1.22); }
    86%  { transform: translate(-50%, -50%) scale(1);    }
    100% { transform: translate(-50%, -50%) scale(1);    }
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    animation: orbitRingSpin 35s linear infinite;
}

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

.orbit-ring .orb-inner {
    animation: counterSpinContent 35s linear infinite;
}

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

/* Center corona — flares in sync with orbit zoom cycle */
.center-corona {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9;
    animation: centerFlare 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes centerFlare {
    0%,  25% {
        opacity: 0;
        box-shadow: none;
    }
    30% {
        opacity: 0.5;
        box-shadow:
            0 0  25px 5px  rgba(255, 200,  50, 0.30),
            0 0  50px 15px rgba(255, 100,  20, 0.18);
    }
    42% {
        opacity: 1;
        box-shadow:
            0 0  40px 12px rgba(255, 220,  80, 0.55),
            0 0  80px 25px rgba(255, 130,  30, 0.38),
            0 0 140px 35px rgba(255, 180,  40, 0.22),
            0 0 220px 50px rgba(255,  80,   0, 0.10);
    }
    55% {
        opacity: 0.3;
        box-shadow:
            0 0  60px 30px rgba(255, 200,  50, 0.15),
            0 0 120px 50px rgba(255, 100,  20, 0.08);
    }
    58%, 100% {
        opacity: 0;
        box-shadow: none;
    }
}

/* === Gravity pull lines === */
.gravity-line {
    fill: none;
    stroke: rgba(28, 198, 224, 0.28);
    stroke-width: 1;
    stroke-dasharray: 3 11;
    stroke-linecap: round;
    animation: gravityPull 2s linear infinite;
}

@keyframes gravityPull {
    from { stroke-dashoffset: 14; }
    to   { stroke-dashoffset: 0; }
}

/* === Signal rings — fire when orbits are at max width === */
.signal-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    border: 1px solid rgba(28, 198, 224, 0.32);
    box-shadow: 0 0 5px rgba(28,198,224,0.14);
    pointer-events: none;
    z-index: 8;
    opacity: 0;
    animation: signalRipple 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.signal-ring.s2 { animation-delay: -0.55s; }
.signal-ring.s3 { animation-delay: -1.1s; }

@keyframes signalRipple {
    0%,  25%  { transform: translate(-50%,-50%) scale(0.22); opacity: 0;    }
    27%        { transform: translate(-50%,-50%) scale(0.22); opacity: 0.42;  }
    54%        { transform: translate(-50%,-50%) scale(3.4);  opacity: 0;    }
    55%, 100%  { transform: translate(-50%,-50%) scale(0);    opacity: 0;    }
}

.orbit-pulse-wrap:hover {
    animation-play-state: paused;
}

.orbit-pulse-wrap:hover .orbit-ring {
    animation-play-state: paused;
}

.orbit-pulse-wrap:hover .orb-inner {
    animation-play-state: paused;
}

.roket-text {
    padding: 0;
    width: 45%;
    max-width: 500px;
    text-align: left;
}

.roket-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.roket-text p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.roket-text .roket-intro {
    font-size: 18px;
    color: #2854A8;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.roket-text .roket-subtitle {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
    margin: 24px 0 16px 0;
}

.roket-text .modules-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.roket-text .modules-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.roket-text .modules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #1a3361 0%, #2854A8 40%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: bold;
}

.roket-text .modules-list li strong {
    font-weight: 700;
    background: linear-gradient(135deg, #091629 0%, #1a3361 25%, #2854A8 55%, #0e6f90 80%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roket-text .roket-description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.roket-desc-full {
    max-width: 820px;
    margin: 40px auto 0 auto;
    padding: 24px 32px;
    background: rgba(40, 84, 168, 0.05);
    border-radius: 12px;
    border-left: 3px solid rgba(40, 84, 168, 0.25);
    text-align: center;
}

.roket-desc-full p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5878;
    margin: 0;
    font-style: italic;
}

@media (max-width: 968px) {
    .roket-products-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .roket-image {
        width: 180px;
    }
    
    .roket-text {
        text-align: left;
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
    }
    
    .roket-text .section-title {
        text-align: center;
    }
    
    .roket-text .roket-intro {
        text-align: center;
        font-size: 16px;
    }
    
    .roket-text .modules-list li {
        font-size: 14px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

/* ABOUT US SECTION */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #2854A8;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* WHAT WE SOLVE SECTION */
.what-we-solve {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.what-we-solve .section-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.highlight-text {
    font-weight: 800;
    background: linear-gradient(135deg, #1a3361 0%, #2854A8 40%, #0ca8c8 80%, #1cc6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.solution-subtitle {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3361 0%, #2854A8 45%, #0e6f90 75%, #1cc6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
}

.solution-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.solution-item {
    padding: 24px 0;
    border-left: 2px solid transparent;
    border-image: linear-gradient(180deg, #1a3361 0%, #2854A8 45%, #0ca8c8 80%, #1cc6e0 100%) 1;
    padding-left: 20px;
    transition: all 0.2s ease;
}

.solution-item:hover {
    border-image: linear-gradient(180deg, #0ca8c8 0%, #1cc6e0 50%, #4DD8EC 100%) 1;
    padding-left: 24px;
}

.solution-item h4 {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #091629 0%, #1a3361 25%, #2854A8 55%, #0e6f90 80%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.solution-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 768px) {
    .what-we-solve {
        padding: 60px 0;
    }
    
    .what-we-solve .section-title {
        font-size: 28px;
    }
    
    .solution-intro {
        font-size: 17px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .solution-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #1a3361 0%, #2854A8 45%, #0e6f90 75%, #1cc6e0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .solution-item {
        padding: 20px 0;
        padding-left: 16px;
    }
    
    .solution-item h4 {
        font-size: 17px;
    }
    
    .solution-item p {
        font-size: 15px;
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.hero-pretitle {
    font-size: 56px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-title {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #091629 0%, #1a3361 22%, #2854A8 44%, #0e6f90 66%, #0ca8c8 88%, #1cc6e0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 10px rgba(12, 168, 200, 0.25));
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
    display: inline-block;
    clip-path: inset(0%);
    padding: 0 4px 4px;
}

.hero-title-wrapper {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100%;
}

.hero-roket-emoji {
    height: 80px;
    width: auto;
    object-fit: contain;
    position: absolute;
    right: calc(50% - 420px);
    top: -20px;
    animation: roketFlyIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform: translateX(-700px) rotate(-45deg);
    opacity: 0;
}

@keyframes roketFlyIn {
    0% {
        transform: translateX(-700px) rotate(-45deg);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    70% {
        transform: translateX(20px) rotate(8deg);
        opacity: 1;
    }
    85% {
        transform: translateX(-8px) rotate(-3deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

.hero-main-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(0.8px 0.8px at 12% 22%, #e8f8ff, transparent),
        radial-gradient(1px 1px at 28% 18%, white, transparent),
        radial-gradient(1.2px 1.2px at 45% 32%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 18% 48%, white, transparent),
        radial-gradient(1px 1px at 58% 28%, #1cc6e0, transparent),
        radial-gradient(1.2px 1.2px at 72% 42%, white, transparent),
        radial-gradient(0.8px 0.8px at 38% 58%, #b4f0ff, transparent),
        radial-gradient(1px 1px at 82% 25%, white, transparent),
        radial-gradient(1.2px 1.2px at 62% 52%, #e8f8ff, transparent),
        radial-gradient(0.8px 0.8px at 48% 68%, white, transparent),
        radial-gradient(1px 1px at 88% 48%, #1cc6e0, transparent),
        radial-gradient(1.2px 1.2px at 22% 72%, white, transparent),
        radial-gradient(0.8px 0.8px at 75% 62%, #b4f0ff, transparent),
        radial-gradient(1px 1px at 52% 78%, white, transparent),
        radial-gradient(1.2px 1.2px at 85% 72%, #e8f8ff, transparent),
        radial-gradient(0.8px 0.8px at 32% 82%, white, transparent),
        radial-gradient(1px 1px at 68% 88%, #1cc6e0, transparent),
        radial-gradient(0.8px 0.8px at 92% 82%, white, transparent),
        radial-gradient(1.2px 1.2px at 20% 38%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 35% 45%, white, transparent),
        radial-gradient(1px 1px at 50% 25%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 65% 38%, white, transparent),
        radial-gradient(0.8px 0.8px at 78% 55%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 85% 35%, white, transparent),
        radial-gradient(1.2px 1.2px at 15% 65%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 40% 78%, white, transparent),
        radial-gradient(1px 1px at 55% 15%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 70% 75%, white, transparent),
        radial-gradient(0.8px 0.8px at 80% 85%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 8% 42%, white, transparent),
        radial-gradient(1.2px 1.2px at 30% 30%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 42% 50%, white, transparent),
        radial-gradient(1px 1px at 60% 65%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 72% 18%, white, transparent),
        radial-gradient(0.8px 0.8px at 90% 45%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 25% 88%, white, transparent),
        radial-gradient(1.2px 1.2px at 10% 55%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 93% 30%, white, transparent),
        radial-gradient(1px 1px at 38% 12%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 67% 45%, white, transparent),
        radial-gradient(0.8px 0.8px at 15% 28%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 18% 45%, white, transparent),
        radial-gradient(1.2px 1.2px at 30% 62%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 45% 82%, white, transparent),
        radial-gradient(1px 1px at 58% 35%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 73% 50%, white, transparent),
        radial-gradient(0.8px 0.8px at 87% 65%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 95% 42%, white, transparent),
        radial-gradient(1.2px 1.2px at 20% 85%, #b4f0ff, transparent),
        radial-gradient(0.8px 0.8px at 35% 20%, white, transparent),
        radial-gradient(1px 1px at 50% 55%, #e8f8ff, transparent),
        radial-gradient(1.2px 1.2px at 65% 75%, white, transparent),
        radial-gradient(0.8px 0.8px at 78% 30%, #1cc6e0, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent),
        radial-gradient(0.8px 0.8px at 8% 68%, #b4f0ff, transparent),
        radial-gradient(1.2px 1.2px at 25% 12%, white, transparent),
        radial-gradient(0.8px 0.8px at 55% 42%, #e8f8ff, transparent),
        radial-gradient(1px 1px at 82% 78%, white, transparent),
        radial-gradient(1.2px 1.2px at 70% 15%, #1cc6e0, transparent);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 2px rgba(180, 240, 255, 1)) drop-shadow(0 0 4px rgba(100, 220, 255, 0.9)) drop-shadow(0 0 6px rgba(28, 198, 224, 0.6));
    animation: twinkle 1.8s linear infinite;
    pointer-events: none;
    clip-path: inset(0);
}

.hero-main-title::before {
    content: none;
}

.hero-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #2854A8;
    letter-spacing: -0.01em;
}

.hero-highlight {
    font-size: 24px;
    font-weight: 700;
    margin: 28px 0;
    color: #111827;
}

.mvp-highlight {
    color: #2854A8;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #091629, #1a3361, #2854A8, #0e6f90, #0ca8c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-explanation {
    max-width: 900px;
    margin: 0 auto;
}

.hero-explanation p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
.hero-image {
    position: relative;
    z-index: 2;
}

}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.dashboard-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 8px 16px;
    border-radius: 6px;
    background: #f9fafb;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.2s ease;
}

.tab:hover {
    background: #f3f4f6;
}

.tab.active {
    background: #9B8BC8;
    color: white;
}

.avatar-group {
    display: flex;
    gap: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9B8BC8, #5AAFBC);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.kanban-board {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.kanban-column {
    min-width: 240px;
    background: #fafbfc;
    border-radius: 8px;
    padding: 16px;
}

.kanban-column h3 {
    margin-bottom: 16px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-card {
    background: white;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.task-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

.task-card.completed {
    opacity: 0.6;
}

.task-card h4 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.priority {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
}

.priority.high { background: #fee2e2; color: #dc2626; }
.priority.medium { background: #fef3c7; color: #f59e0b; }
.priority.low { background: #dbeafe; color: #2563eb; }

.avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0086C0, #00CA72);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.progress-section {
    background: #fafbfc;
    padding: 16px;
    border-radius: 8px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B8BC8, #5AAFBC);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* SOCIAL PROOF */
.social-proof {
    background-color: var(--light-gray);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-pink);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FEATURES */
.features {
    background-color: #ffffff;
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 100px;
    margin-top: 60px;
}

.feature-card {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 3px solid var(--orange);
}

.feature-card:hover {
    transform: translateX(8px);
    border-left-color: var(--purple);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.feature-card:hover .feature-number {
    color: #1a3361;
    font-size: 40px;
    background: rgba(26, 51, 97, 0.35);
    border-color: #1a3361;
    transform: scale(1.1) rotate(-5deg);
}

.feature-number {
    font-size: 32px;
    font-weight: 400;
    color: #1a3361;
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(26, 51, 97, 0.2);
    border-radius: 14px;
    border: 2px solid rgba(26, 51, 97, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-gray);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-content p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* İŞ BİRLİKLERİMİZ MARQUEE */
/* ── İŞ BİRLİKÇİLERİMİZ ──────────────────────────────────── */
.partners-marquee-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 60%, #f0f5ff 100%);
    overflow: hidden;
    position: relative;
}

.partners-marquee-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.partners-marquee-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1a3361, #2854A8, #0ca8c8, #1cc6e0);
    border-radius: 2px;
    margin: 16px auto 0 auto;
}

.partners-marquee-title {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #091629 0%, #1a3361 30%, #2854A8 60%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Two-row marquee layout */
.marquee-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Row 1 scrolls left, Row 2 scrolls right */
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-left 45s linear infinite;
}

.marquee-track.reverse {
    animation: marquee-right 50s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(40, 84, 168, 0.16);
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(40, 84, 168, 0.09), 0 1px 3px rgba(0,0,0,0.05);
    cursor: default;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.marquee-item:hover {
    background: #ffffff;
    border-color: #0ca8c8;
    box-shadow: 0 8px 28px rgba(28, 198, 224, 0.18), 0 2px 8px rgba(40, 84, 168, 0.12);
    transform: translateY(-2px) scale(1.01);
}

.marquee-item i {
    font-size: 17px;
    background: linear-gradient(135deg, #2854A8 0%, #0e6f90 50%, #1cc6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.marquee-item span {
    font-size: 14.5px;
    font-weight: 600;
    background: linear-gradient(135deg, #1a3361 0%, #2854A8 55%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}

/* SECTORS SECTION */
.sectors-section {
    padding: 100px 0;
    background: #f8faff;
}

.sectors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sectors-heading {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #091629 0%, #1a3361 30%, #2854A8 60%, #0ca8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.sectors-list {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.sectors-list li {
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(40, 84, 168, 0.18), 0 2px 12px rgba(28, 198, 224, 0.12);
}

.sector-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    font-size: 32px;
    transition: transform 0.2s ease;
    cursor: default;
}

.sector-cell:hover:not(.faded) {
    transform: scale(1.08);
    filter: brightness(1.12);
}

.sector-cell.active {
    background: linear-gradient(135deg, #1a3361 0%, #2854A8 55%, #0e6f90 100%);
    color: #ffffff;
}

.sector-cell.light {
    background: linear-gradient(135deg, #eaf4fb 0%, #dceef8 100%);
    color: #0e6f90;
}

.sector-cell.semi {
    background: #c5d8ef;
    color: #1a3361;
}

.sector-cell.faded {
    background: #e2ecf8;
    color: #2854A8;
    opacity: 0.3;
}

@media (max-width: 968px) {
    .sectors-content {
        grid-template-columns: 1fr;
    }
    .sectors-grid {
        max-width: 360px;
        margin: 0 auto;
    }
    .sector-cell {
        font-size: 24px;
    }
}

/* PMS SECTION */
.pms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(43, 112, 179, 0.05) 0%, rgba(90, 175, 188, 0.03) 100%);
    position: relative;
}

.pms-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 112, 179, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.roket-modules-intro {
    max-width: 760px;
    margin: 24px auto 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.roket-modules-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5878;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.pms-quote {
    max-width: 800px;
    margin: 32px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.pms-quote p {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7a99;
    margin: 0;
    font-style: italic;
}

.pms-visual {
    margin: 48px 0 0 0;
    position: relative;
    z-index: 1;
}

    .video-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(26, 51, 97, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .pms-visual:hover .video-container {
        box-shadow: 0 30px 70px rgba(26, 51, 97, 0.2);
        transform: translateY(-4px);
    }

    .pms-video {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
    }

    .video-thumb-link {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .video-thumb-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: filter 0.3s ease;
    }

    .video-thumb-link:hover .video-thumb-img {
        filter: brightness(0.75);
    }

    .video-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 18px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        pointer-events: none;
    }

    .video-play-btn .fa-youtube {
        font-size: 64px;
        color: #FF0000;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
        transition: transform 0.2s ease;
    }

    .video-thumb-link:hover .video-play-btn .fa-youtube {
        transform: scale(1.15);
    }

    .pms-grid {
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.pms-card {
    padding: 32px 24px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(43, 112, 179, 0.15);
}

.pms-card:nth-child(1),
.pms-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(43, 112, 179, 0.08) 0%, rgba(43, 112, 179, 0.04) 100%);
}

.pms-card:nth-child(2),
.pms-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(90, 175, 188, 0.08) 0%, rgba(90, 175, 188, 0.04) 100%);
}

.pms-card:nth-child(3),
.pms-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(155, 139, 200, 0.08) 0%, rgba(155, 139, 200, 0.04) 100%);
}

.pms-icon {
    font-size: 40px;
    color: #1a3361;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pms-icon i {
    font-size: 40px;
    color: #1a3361;
}

.pms-card:hover .pms-icon {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.card-text {
    flex: 1;
    width: 100%;
}

.card-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    letter-spacing: -0.2px;
}

.card-text p {
    font-size: 13px;
    line-height: 1.5;
    }

/* VERSION COMPARISON */
.version-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
    padding: 0;
}

.version-column {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.version-column h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.version-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 24px 0;
    text-decoration: underline;
}

.version-1 {
    border: 2px solid #2854A8;
}

.version-2 {
    border: 2px solid #5AAFBC;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

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

.feature-list li {
    padding: 12px 12px 12px 32px;
    margin-bottom: 8px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    position: relative;
    transition: all 0.2s ease;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 14px;
    color: #2854A8;
    font-size: 20px;
    font-weight: bold;
}

.version-2 .feature-list li::before {
    color: #5AAFBC;
}

.feature-list li:hover {
    background: #e5e7eb;
    transform: translateX(4px);
}

.feature-list li.highlight {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    font-weight: 600;
    border-left: 3px solid #5AAFBC;
}

.feature-list li.highlight.special {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    font-weight: 700;
    border-left: 3px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.feature-list li.highlight.special::before {
    content: "★";
    color: #f59e0b;
    font-size: 18px;
}

    @media (max-width: 968px) {
        .pms-section {
            padding: 60px 0;
        }

        .core-features-section {
            padding: 50px 0;
        }

        .roket-modules-intro {
            padding: 20px 24px;
            margin: 30px 20px 20px 20px;
        }

        .roket-modules-intro p {
            font-size: 15px;
        }

        .pms-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .pms-card {
            padding: 24px;
            flex-direction: column;
        }

        .pms-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            font-size: 36px;
        }
        
        .version-comparison {
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
            padding: 0 20px;
        }
        
        .version-column {
            padding: 28px 24px;
        }
        
        .version-column h3 {
            font-size: 24px;
        }
        
        .version-column h4 {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .feature-list li {
            padding: 10px 10px 10px 28px;
            font-size: 13px;
        }
        
        .pms-icon {
            width: 80px;
            height: 80px;
            font-size: 38px;
        }
    }

/* HOW IT WORKS */
.how-it-works {
    background-color: var(--light-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.step p {
    color: var(--medium-gray);
}

/* PRODUCT PREVIEW */
.preview-mockup {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.preview-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.preview-tabs .tab {
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--light-gray);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.preview-tabs .tab.active {
    background: var(--primary-pink);
    color: white;
}

.preview-boards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.board-column {
    min-width: 200px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 16px;
}

.board-column h4 {
    margin-bottom: 16px;
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 600;
}

.preview-task {
    background: white;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* FUTURE PRODUCTS */
.future-products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
}

.products-grid-ready {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid-coming {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}

.product-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--primary-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.products-grid-ready .product-card {
    background: rgba(225, 245, 254, 0.85);
    border: 1px solid rgba(90, 175, 188, 0.35);
}

.product-card.coming-soon {
    border: 2px dashed #e0e0e0;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge.ready {
    background: var(--green);
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.product-card p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* PRICING */
.pricing {
    background: #ffffff;
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #f3f4f6;
}

.pricing-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    background: white;
    border: 2px solid #9B8BC8;
    box-shadow: 0 4px 16px rgba(162, 93, 220, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 6px 20px rgba(162, 93, 220, 0.2);
}

.pricing-card.popular .pricing-title {
    color: #9B8BC8;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #5AAFBC;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
}

.pricing-subtitle-card {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price span {
    font-size: 40px;
}

.price .period {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

.features-list {
    list-style: none;
    margin-top: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-list li {
    color: #374151;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: transparent;
    color: #00CA72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-gradient {
    background: #9B8BC8;
    color: white;
    border: 2px solid #9B8BC8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: #8b47c9;
    border-color: #8b47c9;
}

.btn-white {
    background: #9B8BC8;
    color: white;
    border: 2px solid #9B8BC8;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-white:hover {
    background: #8b47c9;
    border-color: #8b47c9;
}

.pricing-note {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    font-size: 14px;
}

/* CTA SECTION */
.cta {
    background: linear-gradient(135deg, #091629 0%, #1a3361 30%, #2854A8 60%, #0e6f90 80%, #0ca8c8 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 1px 1px at 5% 20%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 12% 75%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 18% 40%, white 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 24% 88%, #b4f0ff 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 31% 15%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 38% 60%, white 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 44% 33%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 50% 80%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 56% 10%, white 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 63% 50%, #b4f0ff 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 69% 25%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 75% 70%, white 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 82% 42%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 88% 85%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 93% 18%, white 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 97% 55%, #b4f0ff 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 8% 55%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 47% 92%, white 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 72% 8%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 85% 30%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 15% 92%, #b4f0ff 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 58% 45%, white 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 35% 68%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 91% 72%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 3% 38%, white 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 77% 95%, #b4f0ff 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 42% 5%, #1cc6e0 0%, transparent 100%),
        radial-gradient(ellipse 2px 2px at 20% 28%, white 0%, transparent 100%),
        radial-gradient(ellipse 1px 1px at 65% 82%, #e8f8ff 0%, transparent 100%),
        radial-gradient(ellipse 1.5px 1.5px at 53% 62%, #1cc6e0 0%, transparent 100%);
    filter: drop-shadow(0 0 2px rgba(180,240,255,0.9)) drop-shadow(0 0 5px rgba(28,198,224,0.6));
    animation: twinkle 2.8s linear infinite;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta .section-title {
    color: white;
    margin-bottom: 40px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-pink);
    font-weight: 700;
    border: 2px solid white;
}

.cta .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: var(--primary-pink);
    border-color: white;
}

/* FOOTER */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 170px;
    width: 170px !important;
    max-width: 170px !important;
    height: 170px !important;
    max-height: 170px !important;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-logo img {
    height: 170px !important;
    max-height: 170px !important;
    width: auto !important;
    max-width: 170px !important;
    object-fit: contain !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-logo .roket-logo {
    height: 170px !important;
    max-height: 170px !important;
    width: auto !important;
    max-width: 170px !important;
    object-fit: contain !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-logo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo-header img,
.footer-logo-header svg {
    height: 44px !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    margin-bottom: 8px !important;
    object-fit: contain !important;
}

.footer-logo-header h3 {
    color: white;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1;
}

.footer-logo-header p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 13px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    flex-wrap: nowrap;
    margin-left: 40px;
    align-items: flex-start;
}

.footer-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-column h4 {
    color: var(--light-gray);
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: var(--medium-gray);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a4b52;
    color: var(--medium-gray);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .hero-pretitle {
        font-size: 32px;
    }
    
    .hero-main-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-highlight {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .kanban-board {
        flex-direction: column;
    }
    
    .kanban-column {
        min-width: 100%;
    }
    
    .preview-boards {
        flex-direction: column;
    }
    
    .board-column {
        min-width: 100%;
    }
    
    .footer-links {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-pretitle {
        font-size: 26px;
    }
    
    .hero-main-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-highlight {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .nav-menu {
        display: none;
    }
}

/* CONTACT MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal-content {
    background: #ffffff;
    margin: 3% auto;
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(162, 93, 220, 0.1);
}

.close-modal {
    position: absolute;
    right: 28px;
    top: 28px;
    font-size: 28px;
    font-weight: 300;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.close-modal:hover {
    color: #111827;
    background: #f3f4f6;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.modal-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #5AAFBC;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #111827;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9B8BC8;
    box-shadow: 0 0 0 3px rgba(162, 93, 220, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.privacy-notice {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: 8px;
}

.privacy-notice a {
    color: #9B8BC8;
    text-decoration: none;
    font-weight: 500;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.btn-contact {
    background: #9B8BC8;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-contact:hover {
    background: #8e4ac4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(162, 93, 220, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% 20px;
        padding: 40px 28px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* AUTH MODALS (LOGIN & SIGNUP) */
.auth-modal {
    max-width: 480px;
    padding: 50px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #9B8BC8;
}

.checkbox-label span {
    line-height: 1;
}

.terms-label {
    margin-top: -8px;
    margin-bottom: 8px;
}

.terms-label span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.terms-label a {
    color: #9B8BC8;
    text-decoration: none;
    font-weight: 500;
}

.terms-label a:hover {
    text-decoration: underline;
}

.forgot-password {
    font-size: 14px;
    color: #9B8BC8;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    background: #9B8BC8;
    color: white;
    padding: 13px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 8px;
}

.btn-auth:hover {
    background: #8e4ac4;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(162, 93, 220, 0.3);
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

.auth-footer a {
    color: #9B8BC8;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-modal {
        padding: 40px 28px;
    }
}

/* CAROUSEL */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #f5f5f5;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    border-radius: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 51, 97, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(26, 51, 97, 0.9);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(26, 51, 97, 0.5);
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }
    
    .carousel-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}
