:root {
    /* Brand Colors (Standard) */
    --primary-orange: #E88D1B;
    --primary-green: #6F8B2D;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --grey-light: #F4F4F4;
    --grey-medium: #D1D1D1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --container-width: 1440px;
    --section-padding: 120px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: #0c0c0c;
    /* Global Dark Background to match Hero */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 48px;
    width: auto;
}

.logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(232, 141, 27, 0.3);
}

.btn-secondary {
    background: rgba(111, 139, 45, 0.1);
    border: 2px solid var(--primary-green);
    color: var(--white);
    /* Better contrast on dark bg */
}

.btn-secondary:hover {
    background: rgba(111, 139, 45, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #0c0c0c;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 22px;
    color: var(--grey-medium);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    will-change: contents;
}

/* Hero Section Video Background */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%) translateZ(0);
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    will-change: opacity;
    transform: translateZ(0);
}

/* Particles (simplified) */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Particles on top of video overlay */
    pointer-events: none;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: transparent;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-counter,
.static-counter {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Premium top-light highlight */
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 16px 48px rgba(111, 139, 45, 0.15);
}

/* Journey Timeline */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: transparent;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.journey-item {
    position: relative;
    padding-top: 40px;
}

.journey-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
}

.journey-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Projects Showcase */
.projects {
    padding: var(--section-padding) 0;
    background-color: #0d0d0d;
    /* Dark theme for contrast */
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: #1a1a1a !important;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.1);
}

.project-image-placeholder {
    transition: transform 0.5s ease;
}

.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.project-stats strong {
    color: var(--primary-green);
    font-size: 18px;
}

/* Technology Section */
.technology {
    padding: var(--section-padding) 0;
    background-color: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    overflow: hidden;
    background: transparent;
    text-align: center;
}

.partner-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-banner {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.logo-track {
    display: flex;
    gap: 120px;
    width: 3840px;
    /* (200px logo + 120px gap) * 12 logos */
    animation: scroll 30s linear infinite;
}

.partner-logo {
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) invert(1) brightness(4);
    /* Invert for Dark Mode */
    opacity: 0.8;
    mix-blend-mode: screen;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-960px);
        /* Width of one set (3 logos) */
    }
}

/* Team Section */


/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: rgba(25, 25, 25, 0.6) !important;
    /* Glass Dark */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.contact-container h2 {
    margin-bottom: 16px;
    font-size: 40px;
}

.contact-container p {
    margin-bottom: 40px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--black);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-address p {
    margin: 0;
}

.footer-right {
    text-align: right;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-right p {
    margin: 4px 0;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .tech-grid,
    .stats-container,
    .partners-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .container {
        padding: 0 20px;
    }
}

/* dMRV Showcase Section */
.dmrv-showcase {
    padding: var(--section-padding) 0;
    background-color: #0c0c0c;
    color: var(--white);
}

.demo-container {
    perspective: 2000px;
    padding-bottom: 40px;
}

.browser-frame {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.browser-frame:hover {
    transform: rotateX(0deg) translateY(-20px);
    box-shadow: 0 70px 120px rgba(0, 0, 0, 0.6);
}

.browser-header {
    background: #2a2a2a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.browser-address {
    background: #1a1a1a;
    color: #888;
    font-size: 12px;
    padding: 4px 20px;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
}

.dashboard-mockup {
    display: flex;
    height: 600px;
}

.dashboard-sidebar {
    width: 200px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-item {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar-item.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.dashboard-main {
    flex-grow: 1;
    padding: 40px;
    background: radial-gradient(circle at top right, rgba(232, 141, 27, 0.05), transparent);
}

/* Actual Platform Showcase */
.dashboard-actual {
    background: #0d0d0d;
    overflow: hidden;
    position: relative;
    padding: 0;
    line-height: 0;
}

.dashboard-actual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.browser-frame:hover .dashboard-actual img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .dashboard-actual {
        min-height: 250px;
    }
}

/* Solution (Bento Grid) Section */
.solution {
    padding: var(--section-padding) 0;
    background-color: #0c0c0c;
    /* Deep black for premium feel */
    color: var(--white);
    text-align: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bento-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Grid Spans */
.span-2 {
    grid-column: span 2;
}

.span-row-2 {
    grid-row: span 2;
}

/* Card Content Positioning */
.bento-content {
    padding: 30px;
    z-index: 2;
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.bento-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.bento-card:hover .bento-image {
    transform: scale(1.05);
}

/* Specific Card Adjustments */
.bento-image.product-fit {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    top: 20%;
    /* Push image down slightly to leave room for text */
    height: 80%;
}

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bento-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    margin-bottom: 20px;
}

.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-orange);
    border: 1px solid rgba(232, 141, 27, 0.3);
    margin-bottom: 12px;
}

/* Impact Equation (Updated) */
.impact-equation {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.equation-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 80px;
    gap: 40px;
    padding: 50px 80px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 60px rgba(232, 141, 27, 0.05);
}

.equation-part {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.equation-operator {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #888;
}

.equation-result {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-align: left;
    line-height: 1.1;
    color: var(--primary-orange);
    text-shadow: 0 0 30px rgba(232, 141, 27, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .span-2,
    .span-row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        min-height: 300px;
    }

    .equation-box {
        flex-direction: column;
        gap: 20px;
        padding: 40px;
        width: 100%;
    }

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

/* Interactive Impact Slider */
.slider-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.slider-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #E88D1B, #ffbd2e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.impact-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-value {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.highlight-green {
    color: var(--primary-green);
}

.highlight-orange {
    color: var(--primary-orange);
}

.range-wrapper {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

input[type=range].slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

input[type=range].slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 0 15px rgba(232, 141, 27, 0.5);
    cursor: pointer;
    border: 3px solid #1a1a1a;
    transition: transform 0.1s;
}

input[type=range].slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.year-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
}

.cost-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: rgba(232, 141, 27, 0.1);
    border: 1px solid rgba(232, 141, 27, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* API Overlay */
#api-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#api-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.overlay-content {
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    padding: 60px 40px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#api-overlay.visible .overlay-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-orange);
}

.highlight-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(111, 139, 45, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.waitlist-form {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-success {
    background: rgba(111, 139, 45, 0.2);
    border: 1px solid var(--primary-green);
    color: #9BC055;
}

.form-error {
    background: rgba(232, 141, 27, 0.2);
    border: 1px solid var(--primary-orange);
    color: #FFB454;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Language Switcher */
.lang-switch {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
}

.lang-flag {
    letter-spacing: 1px;
}