/* Superlac Kreativ - Premium Styling */

:root {
    --k-primary: #6F8F7A;
    --k-primary-soft: rgba(111, 143, 122, 0.1);
    --k-secondary: #C8A98A;
    --k-accent: #2E4A3D;
    --k-bg: #F6F4EF;
    --k-glass: rgba(255, 255, 255, 0.4);
    --k-glow: rgba(111, 143, 122, 0.2);
}

.kreativ-theme {
    background-color: var(--k-bg);
    overflow-x: hidden;
}

/* Typography & Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--k-primary), var(--k-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kreativ-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--k-accent);
}

.kreativ-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--k-primary);
    letter-spacing: -0.01em;
}

.kreativ-tagline {
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Badges */
.coming-soon-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--k-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(111, 143, 122, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(111, 143, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(111, 143, 122, 0); }
}

.kreativ-badge-reveal {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5em;
    color: var(--k-primary);
    opacity: 0.8;
}

/* Buttons */
.btn-kreativ-primary {
    background: var(--k-accent);
    color: white;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(46, 74, 61, 0.2);
}

.btn-kreativ-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(46, 74, 61, 0.3);
}

.btn-kreativ-outline {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--k-accent);
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-kreativ-outline:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

/* Mesh Background & Glows */
.mesh-gradient {
    background-color: var(--k-bg);
    background-image: 
        radial-gradient(at 0% 0%, hsla(140, 16%, 50%, 0.15) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(30, 36%, 66%, 0.15) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(150, 24%, 24%, 0.1) 0, transparent 50%), 
        radial-gradient(at 0% 100%, hsla(140, 16%, 50%, 0.15) 0, transparent 50%);
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: rgba(111, 143, 122, 0.15);
    top: -200px;
    right: -100px;
    animation: floatSphere 15s infinite alternate;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: rgba(200, 169, 138, 0.15);
    bottom: -100px;
    left: -100px;
    animation: floatSphere 12s infinite alternate-reverse;
}

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

/* Visual Preview Section */
.preview-container {
    perspective: 1500px;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.preview-glass-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.preview-mockup {
    border-radius: 30px;
    overflow: hidden;
    background: #eee;
    height: 600px;
    position: relative;
}

.mock-3d-visual {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.room-preview-placeholder {
    width: 100%;
    height: 100%;
}

.mock-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paint-overlay-mock {
    position: absolute;
    inset: 0;
    background: var(--k-primary);
    mix-blend-mode: multiply;
    opacity: 0.3;
}

.cursor-mock {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.color-tooltip {
    position: absolute;
    top: -50px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.preview-ui-layer .panel-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
}

.preview-ui-layer .panel-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    width: auto;
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.tool-icon.active {
    background: var(--k-primary);
    color: white;
}

.color-chip {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-chip.active {
    border-color: white;
    transform: scale(1.1);
}

.glass-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite linear;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Label Chips */
.label-chip {
    position: absolute;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 20;
}

.lc-1 { top: 10%; right: -5%; }
.lc-2 { bottom: 15%; left: -5%; }

@media (max-width: 1100px) {
    .label-chip { display: none; }
    .preview-mockup { height: 450px; }
}

/* Innovation Visual */
.innovation-visual {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-center {
    width: 100px;
    height: 100px;
    background: var(--k-accent);
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 50px rgba(46, 74, 61, 0.4);
}

.orbit-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: orbit 20s infinite linear;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: -6.6s; }
.node-3 { animation-delay: -13.3s; }

/* Features Grid */
.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feature-category-header {
    grid-column: 1 / -1;
    text-align: left;
    padding-bottom: 10px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-category-header h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--k-primary);
}

.feature-premium-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.feature-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--k-primary-soft);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--k-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--k-accent);
}

.feature-premium-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-premium-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

/* ----------------------------------------------------------------
   COMPARISON SECTION STYLES
   ---------------------------------------------------------------- */
.comparison-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

.comparison-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent, var(--k-primary), var(--k-secondary), transparent);
    opacity: 0.2;
}

.divider-badge {
    background: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: var(--k-accent);
    border: 1px solid rgba(0,0,0,0.06);
    white-space: nowrap;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 10;
}

.comparison-side {
    padding: 20px;
}

.tool-name {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--k-accent);
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comparison-points li {
    display: flex;
    gap: 24px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-points li:hover {
    transform: translateX(10px);
}

.point-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.left .point-icon i { color: var(--k-primary); }
.right .point-icon i { color: var(--k-secondary); }

.point-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--k-accent);
    margin-bottom: 4px;
}

.point-text span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.tool-icon-animated {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: white;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    animation: floating 5s infinite ease-in-out;
}

.comparison-side.right .tool-icon-animated {
    animation-delay: -2.5s;
}

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

/* CTA Card */
.cta-kreativ-card {
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}

.cta-input-group {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-input {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

/* Animation Utilities */
.animate-float {
    animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .kreativ-title { font-size: 3.5rem; }
    .preview-mockup { height: 350px; }
    .cta-kreativ-card { padding: 40px 24px; border-radius: 30px; }
    .cta-input-group { flex-direction: column; gap: 10px; background: transparent; box-shadow: none; padding: 0; }
    .cta-input { background: white; padding: 18px; border-radius: 16px; margin-bottom: 10px; }
}

