:root {
    --bg-color: #0d0d12;
    --text-color: #e0e0e0;
    --primary-color: #6c5ce7;
    /* Deep Purple */
    --secondary-color: #00cec9;
    /* Neon Cyan */
    --accent-color: #fd79a8;
    /* Pink/Red accent */
    --card-bg: #1e1e24;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Background moved to .hero-bg-anim */
}

.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/rourapp_hero_bg.png');
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s infinite alternate;
    z-index: 0;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 3;
    pointer-events: none;
    animation: floatOrb 10s infinite ease-in-out;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 13, 18, 0.4) 0%, rgba(13, 13, 18, 0.9) 90%);
    z-index: 2;
}

/* Entrance Animations */
.animate-enter {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Growth Card Animation */
.growth-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
    position: relative;
}

.growth-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.chart-container {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.bar {
    width: 15%;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 5px 5px 0 0;
    opacity: 0.8;
    animation: growBar 2s ease-out forwards;
}

.bar-1 {
    height: 30%;
    animation-delay: 0.5s;
}

.bar-2 {
    height: 50%;
    animation-delay: 0.7s;
}

.bar-3 {
    height: 40%;
    animation-delay: 0.9s;
}

.bar-4 {
    height: 80%;
    animation-delay: 1.1s;
}

.trend-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trend-line svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.trend-line path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s 1.5s ease-out forwards;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s infinite ease-in-out;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .cta-group {
        justify-content: center;
    }
}

/* Feature/Product Grid */
.features {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly smaller min-width for 4 columns */
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* Product Specifics */
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* Dense grid */
}

.product-card.highlight {
    border: 1px solid var(--primary-color);
    background: linear-gradient(145deg, var(--card-bg), rgba(108, 92, 231, 0.1));
}

.product-card.highlight .feature-icon {
    transform: scale(1.1);
    display: inline-block;
}

.badge-sm {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
    vertical-align: middle;
}

.product-card.coming-soon {
    opacity: 0.8;
    border-style: dashed;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #15151a;
    /* Different dark shade for contrast */
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.price-card {
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.1);
}

.price-card.popular::before {
    content: 'Best Value';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-header h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.price-value span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.price-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #a0a0a0;
}

.price-features {
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #ccc;
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

.price-features li.disabled::before {
    content: '×';
    color: #555;
}

/* High-Tech Orbital CTA */
.orbital-cta {
    position: relative;
    padding: 150px 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0d0d12 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    pointer-events: none;
}

.orbit-system {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: rotateSystem 60s linear infinite;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(108, 92, 231, 0.2) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px var(--primary-color);
    filter: blur(10px);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: orbitRotate 10s linear infinite;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation: orbitRotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 700px;
    height: 700px;
    animation: orbitRotate 25s linear infinite;
}

.planet {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.planet-1 {
    background: var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

.planet-2 {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.planet-3 {
    background: #fff;
}

@keyframes rotateSystem {
    0% {
        transform: rotateX(60deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

.relative-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: inline-block;
    max-width: 800px;
}

.cta-content-glass h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-effect {
    box-shadow: 0 0 20px var(--primary-color);
    animation: btnGlow 3s infinite alternate;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 10px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 30px var(--primary-color), 0 0 60px var(--secondary-color);
    }
}

/* Footer */
footer {
    padding: 60px 0;
    background: #08080b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-contact {
    margin-bottom: 30px;
    color: #aaa;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact strong {
    color: #fff;
}

.footer-contact a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #888;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background-color: #121216;
    /* Slightly lighter than bg */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    transition: 0.3s;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.client-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-domain {
    color: var(--secondary-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

.star-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 100px 0;
    background-color: #1a1a20;
    /* Darker background */
    color: #fff;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ccc;
}

.kit-graphic {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.faq-card p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}