/* RIVO Homepage Styles */

:root {
    --rivo-black: #0B0D0F;
    --rivo-cyan: #27F3E1;
    --rivo-lime: #A6FF4F;
    --muted-silver: #CBD0D6;
    --dark-bg: #1a1d21;
}

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

body.home-page {
    font-family: 'Inter', sans-serif;
    background: #050608; /* Match hero background */
    color: var(--muted-silver);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

html {
    background: #050608; /* Ensure HTML also has the background */
    min-height: 100%;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-weight: 700;
}

/* Navigation */
.home-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 13, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(39, 243, 225, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rivo-cyan);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted-silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--rivo-cyan);
}

.nav-link-login {
    color: var(--muted-silver) !important;
}

.nav-link-cta {
    background: var(--rivo-lime);
    color: var(--rivo-black) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 255, 79, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px); /* Full viewport minus header */
    display: flex;
    align-items: center;
    padding-top: 120px; /* Space for fixed header */
    padding-bottom: 4rem;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 0;
    background: #050608; /* Darker background */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #050608; /* Darker base */
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(39, 243, 225, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 243, 225, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--rivo-cyan);
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--rivo-lime);
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.hero-header .hero-headline {
    margin-bottom: 1.5rem;
}

.hero-header .hero-subheadline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section (under hero) */
.features-section {
    background: radial-gradient(circle at top left, rgba(39, 243, 225, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(166, 255, 79, 0.06), transparent 55%);
    padding: 4rem 0 5rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.features-copy h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.features-intro {
    font-size: 1.05rem;
    color: var(--muted-silver);
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.features-outro {
    margin-top: 1.75rem;
    font-size: 0.98rem;
    color: var(--muted-silver);
    max-width: 560px;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

.features-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    border-radius: 10px;
    border-left: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.features-list li strong {
    font-size: 0.98rem;
    background: linear-gradient(135deg, var(--rivo-cyan), var(--rivo-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 6px rgba(39, 243, 225, 0.4);
}

.features-list li span {
    font-size: 0.9rem;
    color: var(--muted-silver);
}

.features-list li:hover {
    background: rgba(39, 243, 225, 0.05);
    border-color: rgba(39, 243, 225, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.features-mockups {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mockup-card {
    background: rgba(5, 6, 8, 0.9);
    border-radius: 18px;
    padding: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(39, 243, 225, 0.24);
    max-width: 520px;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mockup-card-primary {
    transform: translateX(12px);
}

.mockup-card-secondary {
    opacity: 0.9;
    transform: translateX(-12px);
}

.mockup-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    border-color: rgba(39, 243, 225, 0.9);
}

.mockup-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Why We Built It Section */
.why-section {
    position: relative;
    background: #050608; /* Same base as hero */
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.why-section::before,
.why-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    pointer-events: none;
}

.why-section::before {
    width: 420px;
    height: 420px;
    background: var(--rivo-cyan);
    top: -180px;
    right: -220px;
}

.why-section::after {
    width: 320px;
    height: 320px;
    background: var(--rivo-lime);
    bottom: -160px;
    left: -200px;
}

.why-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.why-container h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
}

.why-title-accent {
    background: linear-gradient(135deg, #ffffff 0%, var(--rivo-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-title-rest {
    color: #ffffff;
}

.why-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-silver);
    margin-bottom: 1.25rem;
}

.why-accent {
    color: var(--rivo-cyan);
    font-weight: 600;
}

.why-outro {
    margin-top: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.why-outro-accent {
    color: var(--rivo-cyan);
    text-shadow: 0 0 10px rgba(39, 243, 225, 0.5);
}

.why-cta-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.btn-beta-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    background: var(--rivo-cyan);
    color: #050608;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    box-shadow: 0 10px 32px rgba(39, 243, 225, 0.45);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-beta-scroll:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 48px rgba(39, 243, 225, 0.7);
    background: #7bffe9;
}

.hero-content {
    z-index: 2;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--rivo-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--muted-silver);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Bold Signup Block */
.signup-block {
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.08) 0%, rgba(166, 255, 79, 0.05) 100%);
    border: 2px solid rgba(39, 243, 225, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(39, 243, 225, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.signup-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rivo-cyan), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.signup-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rivo-cyan);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(39, 243, 225, 0.5);
}

.signup-description {
    font-size: 1.1rem;
    color: var(--muted-silver);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.signup-description strong {
    color: var(--rivo-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(39, 243, 225, 0.3);
}

.benefits-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.benefits-list li {
    color: var(--rivo-cyan);
    font-size: 1rem;
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(39, 243, 225, 0.2);
    border: 1px solid var(--rivo-cyan);
    border-radius: 4px;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(39, 243, 225, 0.3);
}

.btn-cta-large {
    width: 100%;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(166, 255, 79, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(166, 255, 79, 0.7);
}

.pricing-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-silver);
    text-align: center;
    opacity: 0.8;
}

/* Signup Form Section */
.signup-section {
    position: relative;
    padding: 4rem 0;
    background: var(--rivo-black);
}

.signup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-form {
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.08) 0%, rgba(166, 255, 79, 0.05) 100%);
    border: 2px solid rgba(39, 243, 225, 0.4);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(39, 243, 225, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rivo-cyan), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    color: var(--rivo-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    background: rgba(11, 13, 15, 0.6);
    border: 1px solid rgba(39, 243, 225, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--muted-silver);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--rivo-cyan);
    box-shadow: 0 0 0 3px rgba(39, 243, 225, 0.1);
    background: rgba(11, 13, 15, 0.8);
}

.form-group input::placeholder {
    color: rgba(203, 208, 214, 0.5);
}

.form-benefits {
    margin: 0 0 2.5rem 0;
    padding: 0 0 2.5rem 0;
    border-bottom: 1px solid rgba(39, 243, 225, 0.2);
}

.benefits-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rivo-cyan);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-benefits .benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-benefits .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(39, 243, 225, 0.05);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-benefits .benefits-list li:hover {
    background: rgba(39, 243, 225, 0.1);
    border-color: rgba(39, 243, 225, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 243, 225, 0.2);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(39, 243, 225, 0.2);
    border: 2px solid var(--rivo-cyan);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--rivo-cyan);
    box-shadow: 0 0 15px rgba(39, 243, 225, 0.3);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.benefit-content strong {
    display: block;
    color: var(--rivo-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-content span {
    display: block;
    color: var(--muted-silver);
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-fields {
    margin-bottom: 2rem;
}

.signup-form .btn-cta-large {
    width: 100%;
    margin-top: 1.5rem;
}

.signup-form .pricing-note {
    margin-top: 1.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-screenshots {
    position: relative;
    height: 500px;
}

.screenshot-card {
    position: absolute;
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(39, 243, 225, 0.3);
}

.screenshot-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    transform: rotate(-5deg);
    z-index: 3;
}

.screenshot-card-2 {
    top: 80px;
    left: 120px;
    width: 300px;
    transform: rotate(2deg);
    z-index: 2;
}

.screenshot-card-3 {
    top: 160px;
    left: 240px;
    width: 280px;
    transform: rotate(-3deg);
    z-index: 1;
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.1) 0%, rgba(166, 255, 79, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rivo-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--rivo-lime);
    color: var(--rivo-black);
    box-shadow: 0 4px 16px rgba(166, 255, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(166, 255, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--rivo-cyan);
    border: 1px solid var(--rivo-cyan);
}

.btn-secondary:hover {
    background: rgba(39, 243, 225, 0.1);
    box-shadow: 0 4px 16px rgba(39, 243, 225, 0.2);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Trust Strip */
.trust-strip {
    padding: 3rem 0;
    border-top: 1px solid rgba(39, 243, 225, 0.1);
    border-bottom: 1px solid rgba(39, 243, 225, 0.1);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.trust-text {
    color: var(--muted-silver);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    width: 80px;
    height: 40px;
    background: rgba(39, 243, 225, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(39, 243, 225, 0.2);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-headline {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Problem Section */
.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-item p {
    color: var(--muted-silver);
    font-size: 1.1rem;
}

.problem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-graphic {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.1) 0%, rgba(166, 255, 79, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(39, 243, 225, 0.2);
    position: relative;
    overflow: hidden;
}

.graphic-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--rivo-cyan);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Solution Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--rivo-cyan);
    box-shadow: 0 8px 32px rgba(39, 243, 225, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-description {
    color: var(--muted-silver);
    line-height: 1.6;
}

/* Widget Showcase */
.widget-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.widget-type-card {
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.widget-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--rivo-cyan);
    box-shadow: 0 8px 32px rgba(39, 243, 225, 0.2);
}

.widget-type-visual {
    margin-bottom: 1.5rem;
}

.widget-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.1) 0%, rgba(166, 255, 79, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(39, 243, 225, 0.2);
}

.widget-carousel-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.widget-carousel-demo::before {
    content: '→';
    position: absolute;
    font-size: 2rem;
    color: var(--rivo-cyan);
}

.widget-grid-demo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.widget-grid-demo::before,
.widget-grid-demo::after {
    content: '';
    background: rgba(39, 243, 225, 0.2);
    border-radius: 4px;
}

.widget-list-demo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.widget-list-demo::before,
.widget-list-demo::after {
    content: '';
    height: 30px;
    background: rgba(39, 243, 225, 0.2);
    border-radius: 4px;
}

.widget-badge-demo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-badge-demo::before {
    content: '★ 4.8';
    font-size: 1.5rem;
    color: var(--rivo-cyan);
    font-weight: 700;
}

.widget-type-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.widget-type-desc {
    color: var(--muted-silver);
    font-size: 0.9rem;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--rivo-cyan);
    color: var(--rivo-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: var(--muted-silver);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-frame {
    position: relative;
}

.screenshot-device {
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.screenshot-device:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(39, 243, 225, 0.3);
}

.screenshot-placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.1) 0%, rgba(166, 255, 79, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rivo-cyan);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.price-period {
    font-size: 1.5rem;
    color: var(--muted-silver);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(39, 243, 225, 0.1);
    color: var(--muted-silver);
    font-size: 1.1rem;
}

.pricing-feature:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--dark-bg);
    border: 1px solid rgba(39, 243, 225, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--rivo-cyan);
    box-shadow: 0 4px 16px rgba(39, 243, 225, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-answer {
    color: var(--muted-silver);
    line-height: 1.6;
}

/* Footer */
.home-footer {
    background: #050608; /* Match hero background exactly */
    border-top: none; /* Remove border for seamless continuation */
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.home-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 243, 225, 0.1), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    margin: 0;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-copyright {
    color: rgba(203, 208, 214, 0.4);
    font-size: 0.8rem;
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: var(--muted-silver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--rivo-cyan);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(39, 243, 225, 0.1);
    color: var(--muted-silver);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-screenshots {
        display: none;
    }
    
    .hero-image-container {
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .widget-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* Hero Grid - Ensure 50/50 Split */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

/* Hero Form Column */
.hero-form-column {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 1rem;
}

.hero-signup-form {
    background: linear-gradient(135deg, rgba(39, 243, 225, 0.08) 0%, rgba(166, 255, 79, 0.05) 100%);
    border: 2px solid rgba(39, 243, 225, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(39, 243, 225, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-signup-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.hero-signup-form .form-group label {
    color: var(--rivo-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.hero-signup-form .form-group input {
    background: rgba(11, 13, 15, 0.8);
    border: 1px solid rgba(39, 243, 225, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--muted-silver);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-signup-form .form-group input:focus {
    outline: none;
    border-color: var(--rivo-cyan);
    box-shadow: 0 0 0 3px rgba(39, 243, 225, 0.1);
    background: rgba(11, 13, 15, 0.9);
}

.hero-signup-form .btn-cta-large {
    width: 100%;
    max-width: 100%;
    margin-top: 1.5rem;
    box-sizing: border-box;
}

/* Hero Benefits Column */
.hero-benefits-column {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3rem;
}

.hero-benefits-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rivo-cyan);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.hero-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(39, 243, 225, 0.2);
    border: 2px solid var(--rivo-cyan);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rivo-cyan);
    box-shadow: 0 0 20px rgba(39, 243, 225, 0.4);
    text-shadow: 0 0 10px rgba(39, 243, 225, 0.6);
}

.hero-benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.hero-benefit-content strong {
    display: block;
    color: var(--rivo-cyan);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(39, 243, 225, 0.3);
}

.hero-benefit-content span {
    display: block;
    color: var(--muted-silver);
    font-size: 1rem;
    line-height: 1.5;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding-left: 2rem;
}

.hero-image {
    width: 140%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Responsive Hero Image */
@media (min-width: 2560px) {
    .hero-image {
        width: 150%;
    }
}

@media (max-width: 1920px) {
    .hero-image {
        width: 140%;
    }
}

@media (max-width: 1400px) {
    .hero-image {
        width: 130%;
    }
}

@media (max-width: 1200px) {
    .hero-image {
        width: 120%;
    }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-benefits-column {
        padding-left: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-header {
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-header .hero-headline {
        font-size: 3rem;
    }
    
    .hero-signup-form {
        padding: 2rem;
    }
    
    .hero-benefits-column {
        padding-left: 1.5rem;
    }
    
    .hero-benefits-title {
        font-size: 1.5rem;
    }
}

/* Only stack on mobile phones (below 768px) */
@media (max-width: 767px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-header {
        padding-top: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-header .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-header .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-form-column {
        order: 2;
    }
    
    .hero-benefits-column {
        order: 1;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .hero-signup-form {
        padding: 1.5rem;
    }
    
    .hero-signup-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-benefits-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .hero-benefits-list {
        gap: 1rem;
    }
    
    .hero-benefit-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1.25rem;
    }
    
    .hero-benefit-content strong {
        font-size: 1rem;
    }
    
    .hero-benefit-content span {
        font-size: 0.9rem;
    }
    
    .signup-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-benefits .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 1.25rem;
    }
    
    .form-benefits .benefits-list li {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1.1rem;
    }
    
    .benefit-content strong {
        font-size: 1rem;
    }
    
    .benefit-content span {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .signup-block {
        padding: 2rem;
    }
    
    .signup-heading {
        font-size: 1.5rem;
    }

    /* Stack features section nicely on mobile */
    .features-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .features-copy h2 {
        font-size: 1.8rem;
        text-align: left;
    }

    .features-intro,
    .features-outro {
        max-width: 100%;
    }

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

    .features-mockups {
        align-items: center;
    }

    .mockup-card-primary,
    .mockup-card-secondary {
        transform: none;
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-image-container {
        min-height: 300px;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .widget-types {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}


