/* Aequorix - Enhanced Futuristic Cyberpunk Theme */

/* CSS Variables */
:root {
    --primary-green: #00ff88;
    --secondary-green: #00cc6a;
    --dark-green: #004d2a;
    --accent-green: #66ffaa;
    --light-green: #ccffdd;

    --primary-white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    --background-dark: #0a0a0a;
    --background-darker: #050505;
    --surface-dark: #1a1a1a;
    --surface-darker: #111111;

    --glow-primary: 0 0 15px var(--primary-green);
    --glow-secondary: 0 0 10px var(--secondary-green);
    --glow-accent: 0 0 15px var(--accent-green);
    --glow-intense: 0 0 20px var(--primary-green), 0 0 50px var(--primary-green);

    --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: "Courier New", Courier, monospace;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --border-radius: 8px;
    --border-radius-large: 16px;
    --border-radius-small: 4px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-dark);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-darker), var(--surface-darker));
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loading-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse-bg 3s ease-in-out infinite;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.loading-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite, glow-pulse 2s ease-in-out infinite;
}

.loading-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(var(--glow-primary));
    animation: rotate-glow 4s linear infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    text-shadow: var(--glow-primary);
    margin-bottom: 1rem;
    animation: text-glow 2s ease-in-out infinite alternate;
    font-family: var(--font-mono);
}

/* IPO Modal Styles */

.ipo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: "Roboto Mono", monospace;
}

.ipo-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.ipo-modal-content {
    background: #111;
    border: 1px solid #00ff7f;
    box-shadow: 0 0 20px #00ff7f55;
    border-radius: 8px;
    padding: 40px 50px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: #ffffff;
}

.ipo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff7f;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Orbitron", monospace;
}

.ipo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
}

.ipo-cta-button {
    display: inline-block;
    background: #bb0505;
    color: #f3f3f3;
    padding: 14px 28px;
    border: 1px solid #bb0505;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Orbitron", monospace;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.ipo-cta-button:hover {
    background: #ffdbd8;
    color: #1b1b1b;
    border-color: #ffdbd8;
}

.ipo-download-link {
    display: block;
    font-size: 0.9rem;
    color: #00ff7f;
    text-decoration: none;
    margin-top: 30px;
    transition: color 0.2s ease;
}

.ipo-download-link:hover {
    color: #d2eee0;
}

.ipo-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #00ff7f;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.ipo-close-btn:hover {
    color: #33ff99;
}

@media (max-width: 600px) {
    .ipo-modal-content {
        padding: 30px 20px;
    }

    .ipo-title {
        font-size: 1.5rem;
    }

    .ipo-description {
        font-size: 0.95rem;
    }

    .ipo-cta-button {
        width: 100%;
    }
}

/* UPDATED CSS - Mobile Nav Fix */

/* Hide header on scroll down, show on scroll up (mobile only) */

.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--primary-green);
    z-index: 1000;
    padding: 0.5rem;
    transition: all var(--transition-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.logo:hover {
    text-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.logo img {
    width: 173px;
    height: 85px;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: all var(--transition-medium);
    image-rendering: unset !important;
}

.logo:hover img {
    filter: drop-shadow(var(--glow-primary));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    min-width: 120px;
    text-align: center;
    display: block;
    cursor: pointer;
    user-select: none;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left var(--transition-medium);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.nav-link:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
    width: 100%;
    box-shadow: var(--glow-primary);
}

.mobile-nav-placeholder {
    width: 0px;
}

/* Mobile Styles - Tablets and smaller devices */

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--secondary-green);
    animation-duration: 2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--accent-green);
    animation-duration: 1s;
}

.loading-message {
    margin: 2rem 0;
    font-family: var(--font-mono);
    color: var(--light-gray);
    font-size: 1.1rem;
}

.typing-text {
    overflow: hidden;
    border-right: 2px solid var(--primary-green);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: var(--surface-dark);
    border-radius: 2px;
    margin: 2rem auto;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
    animation: progress 4s ease-in-out;
    box-shadow: var(--glow-primary);
}

.loading-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

/* Keyframe Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        text-shadow: var(--glow-primary);
    }
    50% {
        text-shadow: var(--glow-intense);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-green);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes counter-up {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-bg {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        filter: drop-shadow(var(--glow-primary));
    }
    50% {
        filter: drop-shadow(var(--glow-intense));
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(var(--glow-primary));
    }
    25% {
        filter: drop-shadow(var(--glow-secondary));
    }
    50% {
        transform: rotate(180deg);
        filter: drop-shadow(var(--glow-accent));
    }
    75% {
        filter: drop-shadow(var(--glow-secondary));
    }
    100% {
        transform: rotate(360deg);
        filter: drop-shadow(var(--glow-primary));
    }
}

@keyframes text-glow {
    0% {
        text-shadow: var(--glow-primary);
    }
    100% {
        text-shadow: var(--glow-intense);
    }
}

/* Enhanced Animation Classes */
.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.fade-in-left {
    animation: fade-in-left 0.8s ease-out;
}

.fade-in-right {
    animation: fade-in-right 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.fade-in-stagger {
    animation: fade-in-up 0.8s ease-out;
}

.fade-in-stagger:nth-child(1) {
    animation-delay: 0.1s;
}
.fade-in-stagger:nth-child(2) {
    animation-delay: 0.2s;
}
.fade-in-stagger:nth-child(3) {
    animation-delay: 0.3s;
}
.fade-in-stagger:nth-child(4) {
    animation-delay: 0.4s;
}
.fade-in-stagger:nth-child(5) {
    animation-delay: 0.5s;
}
.fade-in-stagger:nth-child(6) {
    animation-delay: 0.6s;
}

.typing-effect {
    overflow: hidden;
    min-width: 30ch;
    border-right: 2px solid var(--primary-green);
    white-space: nowrap;
    animation: typing 2s steps(30, end), blink-caret 0.75s step-end infinite;
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.pulse-subtle {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Header and Navigation */

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: var(--glow-primary);
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    padding-top: 0;
    padding-bottom: 140px;
    background-image: url("../images/pattern-randomized.svg");
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

#hero-content-wrapper {
    display: flex;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content .subtitle {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    color: var(--black);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    text-align: center;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--glow-intense);
    background: linear-gradient(45deg, var(--accent-green), var(--primary-green));
    border-color: var(--primary-green);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

.hero-image {
    text-align: center;
    position: relative;
    margin-top: 110px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all var(--transition-medium);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
    filter: blur(20px);
}

.image-container:hover .image-glow {
    opacity: 0.3;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--surface-dark);
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-image: url("../images/pattern-randomized.svg");
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 290px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
    filter: blur(10px);
}

.feature-card:hover .card-glow {
    opacity: 0.3;
}

.feature-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--light-gray);
}

/* Trust Score Specific Styles */
.trust-hero {
    padding: 3rem 2rem 4rem;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--surface-dark) 100%);
    text-align: center;
    position: relative;
}

.trust-hero > h1 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.trust-hero > p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.trust-badge-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.badge-wrapper {
    position: relative;
    display: inline-block;
}

.trust-badge {
    max-width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: var(--border-radius-large);
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.trust-stats-section {
    padding: 4rem 2rem;
    background: var(--surface-dark);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-card > p {
    text-align: justify;
}

.stat-card {
    background: var(--surface-darker);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 2px solid var(--primary-green);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    height: 230px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.stat-label {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.score-indicator {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-family: var(--font-mono);
}

.score-high {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.score-medium {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.score-low {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

/* Services Specific Styles */
.services-hero {
    padding: 4rem 2rem 4rem;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--surface-dark) 100%);
    text-align: center;
}

.services-hero > h1 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-hero > p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.service-section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-section:nth-child(even) {
    background: var(--surface-dark);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    position: relative;
    padding-bottom: 2rem;
}

.service-content p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-features {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    align-items: right;
}

.feature-item {
    color: var(--off-white);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all var(--transition-medium);
}

.feature-item::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    transition: all var(--transition-medium);
}

.feature-item:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.feature-item:hover::before {
    text-shadow: var(--glow-primary);
}

.feature-card > p {
    text-align: justify;
}

/* Watch Specific Styles */
.watch-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--surface-dark) 100%);
    text-align: center;
}

.watch-hero > h1 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.watch-hero > p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.watch-dashboard {
    padding: 4rem 2rem;
    padding-bottom: 6rem;
    background: var(--background-dark);
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 1rem;
}

.dashboard-image {
    padding-top: 2rem;
}

.dashboard-content {
    text-align: justify;
}

.status-indicators {
    padding: 4rem 2rem;
    background-image: url("../images/pattern-randomized.svg");
    padding-bottom: 6rem;
}

.status-indicators > h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
}

.status-active {
    background: var(--primary-green);
    box-shadow: 0 0 20px var(--primary-green);
}

.status-warning {
    background: #ffa500;
    box-shadow: 0 0 20px #ffa500;
}

.monitoring-features {
    padding: 4rem 2rem;
    background: var(--background-dark);
    padding-bottom: 6rem;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.monitor-card {
    background: var(--surface-darker);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--dark-green);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.monitor-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.monitor-card p {
    color: var(--light-gray);
    line-height: 1.6;
    text-align: justify;
}

.trust-features {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background: var(--background-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--dark-green);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.trust-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trust-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 2rem;
    background: var(--background-darker);
    text-align: center;
    padding-bottom: 6rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/*What is Aequorix Page CSS*/
/* Hero Section */
.wia-hero {
    background-image: url("../images/pattern-randomized.svg");
    text-align: center;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Section Base Style */
.wia-trustscore {
    padding: 5rem 2rem 4rem;
    background-color: var(--background-light);
    color: var(--primary-white);
    text-align: justify;
    height: 90vh;
}

.wia-trustscore .container {
    max-width: 900px;
    margin: 0 auto;
}

.wia-trustscore .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: var(--glow-primary);
}

.wia-trustscore p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.wia-trustscore ul {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.wia-trustscore li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.wia-trustscore li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Roadmap Layout */
.wia-roadmap {
    padding: 5rem 2rem 4rem;
    padding-bottom: 6rem;
    background-image: url("../images/pattern-randomized.svg");
    color: var(--primary-white);
    min-height: 100vh;
}

.wia-roadmap .container {
    max-width: 1100px;
    margin: 0 auto;
}

.wia-roadmap .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: var(--glow-primary);
}

.wia-roadmap p {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Roadmap Grid */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.roadmap-step {
    background: var(--surface-darker);
    padding: 2rem;
    padding-bottom: 0rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
    transition: all 0.3s ease;
    color: var(--primary-white);
    min-height: 200px;
}

.roadmap-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
}

.roadmap-step h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 2rem;
}

.roadmap-step-4 {
    grid-column-start: 2;
}

/* Infrastructure List */
.wia-infrastructure {
    padding: 5rem 2rem 4rem;
    background-color: var(--background-light);
    color: var(--primary-white);
    height: 100vh;
}

.wia-infrastructure .container {
    max-width: 1000px;
    margin: 0 auto;
}

.wia-infrastructure .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: var(--glow-primary);
}

.wia-infrastructure p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.wia-infrastructure ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.wia-infrastructure li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.wia-infrastructure li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 1rem;
    color: var(--primary-green);
}

/* CTA Section */
.wia-investor-cta {
    padding: 5rem 2rem 5rem;
    background-image: url("../images/pattern-randomized.svg");
    text-align: center;
    color: var(--primary-white);
    border-top: 2px solid rgba(0, 255, 136, 0.2);
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.wia-investor-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.wia-investor-cta .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    text-shadow: var(--glow-primary);
    margin-bottom: 2rem;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #000;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #00e686;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--background-darker), var(--surface-darker));
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    transition: all var(--transition-medium);
}

.footer-logo:hover {
    text-shadow: var(--glow-primary);
}

.footer-logo img {
    transition: all var(--transition-medium);
}

.footer-logo:hover img {
    filter: drop-shadow(var(--glow-primary));
}

.footer-text {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--dark-green);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-dark);
}

.footer-legal {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-dark);
}

.footer-link {
    color: #aaa;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Watermark Styles */
/* Enhanced Watermark Styles - Mission Critical Logo Branding */
.watermark-top-left,
.watermark-top-right {
    position: fixed;
    transition: all var(--transition-medium);
    pointer-events: none;
}

.watermark-top-left {
    top: 20px;
    left: 20px;
}

.watermark-top-left img,
.watermark-top-right img {
    transition: all var(--transition-medium);
    display: block;
}

.watermark-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.7;
    margin-top: 1rem;
    padding: 0.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.watermark-footer img {
    filter: drop-shadow(0 0 5px var(--primary-green));
}

/* Watermark Protection - Make it difficult to remove */
.watermark-top-right::before,
.watermark-footer::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: transparent;
    z-index: -1;
}

/* Enhanced Visual Effects */

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features {
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Enhanced Card Hover Effects */
.feature-card {
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--primary-green));
}

/* Enhanced Typography */

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 2px;
    box-shadow: var(--glow-primary);
}

/* Enhanced Image Interactivity and Hover Effects */

/* Hero Image Enhancements */
.hero-image img,
.image-container img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: var(--border-radius-large);
    transition: all var(--transition-slow);
    cursor: pointer;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img:hover,
.image-container img:hover {
    transform: scale(1.03) translateY(-3px);
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 15px var(--primary-green));
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3);
}

/* Service and Dashboard Images */
.service-image img,
.dashboard-image img,
img[src*="trustscoresystem"],
img[src*="blueprintnoahspaceship"],
img[src*="davinchiscode"] {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    cursor: pointer;
    filter: brightness(0.95) contrast(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.1);
}

.service-image img:hover,
.dashboard-image img:hover,
img[src*="trustscoresystem"]:hover,
img[src*="blueprintnoahspaceship"]:hover,
img[src*="davinchiscode"]:hover {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.15) contrast(1.3) saturate(1.2) drop-shadow(0 0 12px var(--primary-green));
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-green);
}

/* Trust Badge Special Effects */
.trust-badge {
    cursor: pointer;
    filter: brightness(1) contrast(1.1);
}

.trust-badge:hover {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.2) contrast(1.4) drop-shadow(0 0 18px var(--primary-green));
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    border-color: var(--accent-green);
    animation: trust-pulse 1s ease-in-out infinite;
}

/* Interactive Image Containers */
.interactive-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.interactive-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    z-index: 1;
}

.interactive-image:hover::before {
    opacity: 1;
}

.interactive-image::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: var(--primary-green);
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 50%;
    transition: all var(--transition-medium);
    z-index: 2;
    pointer-events: none;
}

.interactive-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Image Loading Animation */
@keyframes image-load {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

img {
    animation: image-load 0.6s ease-out;
}

/* Trust Pulse Animation */
@keyframes trust-pulse {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.8), 0 0 0 10px rgba(0, 255, 136, 0.1);
    }
}

/* Image Zoom Effect on Click */
.zoomable {
    transition: all var(--transition-medium);
}

.zoomable:active {
    transform: scale(0.98);
}

/* High Quality Image Rendering */
img {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Image Accessibility */
img[alt] {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--primary-green);
    background: #001700 !important;
    padding: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
}

/* Performance and Quality Optimizations */

/* GPU Acceleration for Smooth Animations */
.nav-link,
.cta-button,
.feature-card,
.interactive-image,
.loading-logo,
.watermark-top-left,
.watermark-top-right,
.hero-image img,
.trust-badge {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Fix Potential Hover Glitches */
.nav-link:hover,
.cta-button:hover,
.feature-card:hover {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Prevent Layout Shifts */
img {
    max-width: 100%;
}

.loading-screen {
    contain: layout style paint;
}

/* Enhanced Focus States for Accessibility */
.nav-link:focus,
.cta-button:focus,
.interactive-image:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Fix Text Selection */
.watermark-top-left,
.watermark-top-right,
.watermark-footer,
.loading-screen {
    user-select: none;
}

/* Fix Image Aspect Ratios */
.hero-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-image img,
.dashboard-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.trust-badge {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

/* Enhanced Loading States */
.loading-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loading-content.loaded {
    opacity: 1;
}

/* Fix Z-Index Issues */
.watermark-top-left,
.watermark-top-right {
    z-index: 9999;
    opacity: 0.07;
    width: 75px;
}

/* Corporate-Grade Code Quality */
/* Consistent spacing and alignment */
.section-title,
.hero-content h1,
.service-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.features-grid,
.service-container,
.trust-stats {
    gap: 2rem;
    align-items: center;
}

/* Professional hover states */
.nav-link:hover,
.cta-button:hover,
.feature-card:hover,
.interactive-image:hover {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Consistent border radius */
.feature-card,
.service-image img,
.dashboard-image img,
.trust-badge,
.interactive-image {
    border-radius: var(--border-radius);
}

/* Professional shadows */
.feature-card,
.service-image img,
.dashboard-image img {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:hover,
.service-image img:hover,
.dashboard-image img:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Pulse ring animation for logo indicators */
@keyframes pulse-ring {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* TrustScore Specific Styles */

/* Search Section */
.trustscore-search-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--surface-dark) 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.search-form {
    margin-top: 2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    color: var(--primary-white);
    font-size: 1rem;
    transition: var(--transition-medium);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: var(--glow-primary);
}

.search-input::placeholder {
    color: var(--medium-gray);
}

.search-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    border-radius: var(--border-radius);
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.search-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loader .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--black);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.quick-test-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2.3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-test-btn {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius-small);
    color: var(--primary-green);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-test-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--primary-green);
}

/* Results Section */
.trustscore-results-section {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.results-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trustscore-card,
.history-card {
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.trustscore-card::before,
.history-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.score-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--primary-green);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.score-circle.green {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.score-circle.orange {
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.score-circle.red {
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1;
}

.score-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.verification-status {
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-badge.green {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.status-badge.orange {
    background: rgba(255, 140, 0, 0.2);
    color: #ff8c00;
    border: 1px solid #ff8c00;
}

.status-badge.red {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.tenant-id {
    color: var(--medium-gray);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.score-details {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--primary-white);
    font-weight: 500;
}

/* History Card */
.history-title {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary-green);
    border-radius: var(--border-radius-small);
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.history-date {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.history-event {
    color: var(--primary-white);
    font-size: 0.9rem;
}

/* Error Section */
.error-section {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: var(--border-radius-large);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-title {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-message {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.retry-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    border: none;
    border-radius: var(--border-radius);
    color: var(--primary-white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
}

.retry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-nav-placeholder {
        width: 100%;
    }
    .trust-hero > h1 {
        margin-top: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .search-button {
        width: 100%;
    }

    .quick-test-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-test-btn {
        width: 100%;
        max-width: 200px;
    }

    .results-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .score-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .score-value {
        font-size: 1.5rem;
    }

    .trustscore-results-section,
    .error-section {
        padding: 2rem 1rem;
    }

    .trustscore-search-section {
        padding-top: 5rem;
    }

    .watch-hero > h1 {
        margin-top: 2rem;
    }

    .watch-hero > p {
        margin-bottom: 3rem;
        padding-left: 5%;
        padding-right: 5%;
    }

    .status-card {
        padding-bottom: 1rem;
    }

    .monitor-card > p {
        text-align: justify;
    }

    .monitor-card > h3 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .detail-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        z-index: 1001; /* Higher z-index for mobile */
        padding: 0px;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }

    /* Mobile Navigation Menu - Hidden by default with toggle functionality */
    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid var(--primary-green);
        border-bottom: 1px solid var(--primary-green);
        padding: 1rem 0;
        margin: 0;
        border-radius: var(--border-radius-small);
        backdrop-filter: blur(10px);

        /* Hidden by default on mobile */
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    /* Show menu when toggled */
    .nav-menu.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        max-height: 300px;
        transition: all 0.3s ease;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
        text-align: center;
        border-radius: var(--border-radius-small);
        width: auto;
        max-width: 200px;
    }

    /* Touch-friendly interactions for mobile */
    .nav-link:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    }

    .nav-link:active {
        background: rgba(0, 255, 136, 0.2);
        transform: scale(0.98);
    }

    /* Main Content - Proper margin to prevent overlap with hidden menu */
    .main-content {
        margin-top: 100px; /* Reduced from 180px since menu is hidden by default */
        transition: margin-top 0.3s ease;
    }

    /* When menu is visible, add more top margin */
    .main-content.menu-visible {
        margin-top: 180px;
    }

    /* Ensure proper spacing for hero section on mobile */
    .hero {
        padding: 6rem 1rem; /* Increased padding */
        min-height: calc(100vh - 120px); /* Adjusted for new margin */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 4rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 1rem auto;
        display: inline-block;
        min-width: 200px;
    }

    /* Hero image optimization for mobile */
    .hero-image {
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-image .image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
    }

    /* Features grid mobile adjustments */
    .features {
        padding: 3rem 1rem; /* Increased padding */
        margin-top: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Increased gap */
        max-width: 100%;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 400px; /* Limit card width */
        text-align: center;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .services-hero > h1 {
        padding-top: 2rem;
        padding-left: 2%;
        padding-right: 2%;
    }

    .services-hero > p {
        padding-bottom: 2rem;
        padding-left: 3%;
        padding-right: 3%;
    }

    .service-content > p {
        padding-left: 3%;
        padding-right: 3%;
    }

    .service-features {
        align-items: start;
    }

    .service-features > li {
        margin-left: 25%;
    }

    .cta-section {
        padding-bottom: 6rem;
    }

    /* Footer mobile optimization */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-container {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        margin-top: 1rem;
        gap: 5rem;
    }

    .footer-text,
    .footer-copyright {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

/* Tablet devices (landscape and portrait) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header {
        padding: 1.2rem 2rem;
    }

    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 2rem; /* Reduced from desktop */
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .main-content {
        margin-top: 80px;
        padding: 0 2rem;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .hero-container {
        gap: 3rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .subtitle {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image .image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .features {
        padding: 4rem 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .feature-card {
        max-width: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer {
        padding: 3rem 2rem;
    }

    /* Watermark logos for tablets */
    .watermark-top-left img,
    .watermark-top-right img {
        width: 70px;
        height: 70px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    .nav-menu {
        gap: 0.8rem;
        padding: 0.8rem 0;
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-width: 100px;
        min-height: 44px; /* Maintain touch target size */
    }

    .main-content {
        margin-top: 90px; /* Adjusted for smaller header */
    }

    .main-content.menu-visible {
        margin-top: 160px;
    }

    .hero {
        padding: 1.5rem 0.5rem;
        min-height: calc(100vh - 100px);
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .hero-image .image-container {
        max-width: 250px;
    }

    .features {
        padding: 2rem 0.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        max-width: 350px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-text,
    .footer-copyright {
        font-size: 0.85rem;
    }

    /* Watermark logos smaller on very small screens */
    .watermark-top-left img,
    .watermark-top-right img {
        width: 60px;
        height: 60px;
    }

    .watermark-top-left {
        top: 15px;
        left: 15px;
    }

    .watermark-top-right {
        top: 15px;
        right: 15px;
    }
}
/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    }

    .nav-link:active {
        background: rgba(0, 255, 136, 0.2);
        transform: scale(0.98);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 1.5rem;
        padding-bottom: 100px;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .subtitle {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    #hero-content-wrapper {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        padding-bottom: 60px;
    }

    .C {
        margin-top: 10%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .trust-hero > h1 {
        font-size: 2rem;
    }

    .trust-hero > p {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
/* Loading Screen Responsive Enhancements */
@media (max-width: 768px) {
    .loading-container {
        padding: 1.5rem;
        max-width: 90%;
        margin: 0 auto;
    }

    .loading-logo img {
        width: 70px;
        height: 70px;
    }

    .loading-text {
        font-size: 1.8rem;
    }

    .loading-spinner {
        width: 80px;
        height: 80px;
    }

    .loading-progress {
        width: 280px;
        max-width: 90%;
    }

    .loading-message {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .typing-text {
        white-space: normal;
        word-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .loading-container {
        padding: 1rem;
        max-width: 95%;
    }

    .loading-logo img {
        width: 60px;
        height: 60px;
    }

    .loading-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .loading-spinner {
        width: 60px;
        height: 60px;
        margin: 1.5rem auto;
    }

    .loading-progress {
        width: 220px;
        max-width: 85%;
        height: 3px;
    }

    .loading-message {
        font-size: 0.9rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 360px) {
    .loading-container {
        padding: 0.8rem;
        max-width: 98%;
    }

    .loading-logo img {
        width: 50px;
        height: 50px;
    }

    .loading-text {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        margin: 1.2rem auto;
    }

    .loading-progress {
        width: 180px;
        max-width: 80%;
        height: 2px;
    }

    .loading-message {
        font-size: 0.8rem;
        margin: 1.2rem 0;
        line-height: 1.4;
    }
}

/* Ensure loading screen scales properly on large screens */
@media (min-width: 1200px) {
    .loading-container {
        padding: 3rem;
        max-width: 600px;
    }

    .loading-logo img {
        width: 100px;
        height: 100px;
    }

    .loading-text {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .loading-spinner {
        width: 120px;
        height: 120px;
        margin: 2.5rem auto;
    }

    .loading-progress {
        width: 400px;
        height: 5px;
    }

    .loading-message {
        font-size: 1.3rem;
        margin: 2.5rem 0;
    }
}

/* General Responsive Design - Mobile Menu Bar Correction */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    .header {
        min-height: 70px;
        display: flex;
        align-items: center;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Logo positioning for mobile */
    .logo {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        z-index: 1001;
        margin-top: 1rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    /* Mobile menu layout - prevents overlap with watermarks */
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: calc(100% - 140px); /* Account for watermarks */
        max-width: calc(100vw - 140px);
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }

    /* Mobile menu links - optimized for touch */
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        min-width: 85px;
        max-width: 120px;
        min-height: 44px; /* Minimum touch target size */
        font-size: 0.9rem;
        text-align: center;
        border-radius: var(--border-radius);
        transition: all var(--transition-medium);
        position: relative;
        overflow: hidden;
        font-weight: 500;
        letter-spacing: 0.3px;
        border: 1px solid transparent;
        cursor: pointer;
        user-select: none;
        margin: 0.2rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

/* Enhanced touch interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
    }

    .nav-link:active {
        background: rgba(0, 255, 136, 0.2);
        transform: scale(0.98);
        transition: all 0.1s ease;
    }

    .nav-link:focus {
        outline: 2px solid var(--primary-green);
        outline-offset: 2px;
    }
}

/* Accessibility improvements for mobile navigation */
@media (max-width: 768px) {
    .nav-link:focus-visible {
        outline: 2px solid var(--primary-green);
        outline-offset: 2px;
        box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.2);
    }
}

/* Mobile Menu Toggle - Enable pointer events and cursor on mobile */
@media (max-width: 768px) {
    .watermark-top-left,
    .watermark-top-right {
        pointer-events: auto;
        cursor: pointer;
        opacity: 0.9;
        transition: all var(--transition-medium);
    }

    .watermark-top-left:hover,
    .watermark-top-right:hover,
    .watermark-top-left:active,
    .watermark-top-right:active {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--primary-green));
    }

    .watermark-top-left img,
    .watermark-top-right img {
        transition: all var(--transition-medium);
    }

    .watermark-top-left:active img,
    .watermark-top-right:active img {
        transform: scale(0.95);
    }
}

/* Desktop Hover Effects - Smooth Professional Animation */
@media (hover: hover) and (pointer: fine) {
    .watermark-top-left:hover,
    .watermark-top-right:hover {
        opacity: 1;
        transform: scale(1.15);
        pointer-events: none;
    }

    .watermark-top-left img:hover,
    .watermark-top-right img:hover {
        filter: drop-shadow(0 0 15px var(--primary-green)) drop-shadow(0 0 25px var(--accent-green));
    }
}

/* Mobile Responsive Watermarks - Enhanced Visibility */
@media (max-width: 768px) {
    .watermark-top-left,
    .watermark-top-right {
        top: 15px;
        opacity: 0.9;
    }

    .watermark-top-left {
        left: 15px;
    }

    .watermark-top-right {
        right: 15px;
    }

    .watermark-top-left img,
    .watermark-top-right img {
        width: 65px;
        height: 65px;
        filter: drop-shadow(0 0 8px var(--primary-green));
    }

    .watermark-footer img {
        width: 30px;
        height: 30px;
    }

    .watermark-footer .watermark-text {
        font-size: 0.9rem;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .watermark-top-left,
    .watermark-top-right {
        top: 12px;
        opacity: 0.95;
    }

    .watermark-top-left {
        left: 12px;
    }

    .watermark-top-right {
        right: 12px;
    }

    .watermark-top-left img,
    .watermark-top-right img {
        width: 55px;
        height: 55px;
        filter: drop-shadow(0 0 6px var(--primary-green));
    }

    .watermark-footer {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .watermark-footer img {
        width: 26px;
        height: 26px;
    }

    .watermark-footer .watermark-text {
        font-size: 0.8rem;
        font-weight: 600;
    }
}

@media (max-width: 360px) {
    .watermark-top-left,
    .watermark-top-right {
        top: 10px;
        opacity: 0.95;
    }

    .watermark-top-left {
        left: 10px;
    }

    .watermark-top-right {
        right: 10px;
    }

    .watermark-top-left img,
    .watermark-top-right img {
        width: 50px;
        height: 50px;
        filter: drop-shadow(0 0 5px var(--primary-green));
    }

    .watermark-footer img {
        width: 24px;
        height: 24px;
    }

    .watermark-footer .watermark-text {
        font-size: 0.75rem;
        font-weight: 600;
    }
}

/* Large screen watermark enhancements - Maximum Impact */
@media (min-width: 1200px) {
    .watermark-top-left,
    .watermark-top-right {
        top: 25px;
        opacity: 0.07;
    }

    .watermark-top-left {
        left: 25px;
    }

    .watermark-top-right {
        right: 25px;
    }

    .watermark-top-left img,
    .watermark-top-right img {
        filter: drop-shadow(0 0 12px var(--primary-green)) drop-shadow(0 0 20px var(--accent-green));
    }

    .watermark-footer img {
        width: 42px;
        height: 42px;
    }

    .watermark-footer .watermark-text {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--primary-green);
    }
}

/* Enhanced Responsive Design */

/* Tablet Landscape - 769px to 1199px */
@media (min-width: 769px) and (max-width: 1199px) {
    .nav-menu {
        gap: 3rem;
    }

    .nav-link {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        min-width: 110px;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        min-width: 100px;
        font-size: 0.95rem;
        margin: 0.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-title {
        font-size: 2.2rem;
        padding-bottom: 0px;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .trust-hero > p {
        margin-bottom: 4rem;
        padding-left: 2%;
        padding-right: 2%;
    }

    .search-description {
        margin-bottom: 4rem;
    }

    .search-input {
        margin-bottom: 0.5rem;
    }
}

/* Large Smartphone - 414px */
@media (max-width: 414px) {
    .nav-menu {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.9rem 1.3rem;
        min-width: 90px;
        font-size: 0.9rem;
        margin: 0.2rem;
    }

    .hero {
        padding: 1.5rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content .subtitle {
        font-size: 1.05rem;
    }

    .features {
        padding: 2.5rem 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Standard Smartphone - 375px */
@media (max-width: 375px) {
    .header {
        padding: 0.7rem 0.8rem;
    }

    .nav-menu {
        gap: 1.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.8rem 1.2rem;
        min-width: 85px;
        font-size: 0.85rem;
        margin: 0.2rem;
    }

    .hero {
        padding: 1.2rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .features {
        padding: 2rem 0.8rem;
    }

    .feature-card {
        padding: 1.3rem;
    }

    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
}

/* Small Smartphone - 360px */
@media (max-width: 360px) {
    .header {
        padding: 0.6rem 0.8rem;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.7rem 1rem;
        min-width: 80px;
        font-size: 0.8rem;
        margin: 0.1rem;
    }

    .hero {
        padding: 1rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features {
        padding: 1.8rem 0.8rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #00ff00;
        --glow-primary: 0 0 5px var(--primary-green);
        --glow-secondary: 0 0 3px var(--primary-green);
        --glow-accent: 0 0 8px var(--primary-green);
        --glow-intense: 0 0 10px var(--primary-green);
    }
}

/* Touch-friendly image interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .hero-image img:hover,
    .image-container img:hover {
        transform: scale(1.02);
        filter: brightness(1.05) contrast(1.1);
    }

    .service-image img:hover,
    .dashboard-image img:hover,
    img[src*="trustscoresystem"]:hover,
    img[src*="blueprintnoahspaceship"]:hover,
    img[src*="davinchiscode"]:hover {
        transform: scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }

    .trust-badge:hover {
        transform: scale(1.05);
        animation: none;
    }

    .interactive-image::after {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
}

/* Responsive Image Sizing */
@media (max-width: 768px) {
    .hero-image img,
    .image-container img {
        max-width: 300px;
    }

    .service-image img,
    .dashboard-image img,
    img[src*="trustscoresystem"],
    img[src*="blueprintnoahspaceship"],
    img[src*="davinchiscode"] {
        max-width: 100%;
    }

    .trust-badge {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image img,
    .image-container img {
        max-width: 250px;
    }

    .trust-badge {
        max-width: 150px;
    }

    .interactive-image::after {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
}

/* Reduce Motion for Performance */
@media (prefers-reduced-motion: reduce) {
    .loading-logo,
    .spinner-ring,
    .pulse-glow,
    .hover-lift {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .watermark-top-left,
    .watermark-top-right,
    .loading-screen,
    .nav-menu {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .watermark-footer {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.8rem;
        border-top: 1px solid #ccc;
        padding: 0.5rem;
        background: white;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        border-top: 1px solid var(--primary-green);
        border-bottom: 1px solid var(--primary-green);
        padding: 0.5rem 0;
        margin-top: 0.5rem; /* Adjust this precisely based on header size */
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border-radius: var(--border-radius-small);
        text-align: center;
    }

    .main-content {
        margin-top: calc(80px + 60px); /* Example: header 80px + menu 60px */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.2rem;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        border-top: 1px solid var(--primary-green);
        border-bottom: 1px solid var(--primary-green);
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        position: relative;
        z-index: 10;
    }

    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 1rem;
        text-align: center;
        min-width: unset;
    }

    .main-content {
        margin-top: calc(80px + 40px); /* header height + menu height */
    }
}

/* Enhanced Touch Optimization and Visual Cues */

/* Touch-friendly button and link styles */
@media (max-width: 768px) {
    /* Ensure all interactive elements meet minimum touch target size */
    .nav-link,
    .cta-button,
    .watermark-top-left,
    .watermark-top-right {
        min-height: 44px;
        min-width: 44px;
    }

    /* Enhanced visual feedback for touch interactions */
    .watermark-top-left,
    .watermark-top-right {
        position: relative;
    }

    /* Add subtle pulse animation to indicate interactivity */
    .watermark-top-left::after,
    .watermark-top-right::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary-green);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
        animation: pulse-ring 2s infinite ease-out;
        pointer-events: none;
    }

    /* Enhanced active state for better touch feedback */
    .watermark-top-left:active,
    .watermark-top-right:active {
        transform: scale(1.05);
        transition: transform 0.1s ease;
    }

    .watermark-top-left:active::after,
    .watermark-top-right:active::after {
        animation: none;
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }

    /* Enhanced menu link touch feedback */
    .nav-link {
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
        tap-highlight-color: rgba(0, 255, 136, 0.2);
    }

    .nav-link:active {
        background: rgba(0, 255, 136, 0.25);
        transform: scale(0.98);
        transition: all 0.1s ease;
    }

    /* Add ripple effect for touch feedback */
    .nav-link::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(0, 255, 136, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
        pointer-events: none;
    }

    .nav-link:active::before {
        width: 200px;
        height: 200px;
    }

    /* Enhanced CTA button touch feedback */
    .cta-button {
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
        position: relative;
        overflow: hidden;
        z-index: 100;
    }

    .cta-button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0, 255, 136, 0.4);
    }

    /* Improve touch scrolling */
    .main-content,
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Prevent text selection on interactive elements */
    .watermark-top-left,
    .watermark-top-right,
    .nav-link,
    .cta-button {
        user-select: none;
    }

    /* Add visual indicator for menu toggle functionality */
    .watermark-top-left img,
    .watermark-top-right img {
        filter: drop-shadow(0 0 8px var(--primary-green)) drop-shadow(0 0 16px rgba(0, 255, 136, 0.3));
    }

    /* Accessibility improvements for touch */
    .watermark-top-left:focus,
    .watermark-top-right:focus {
        outline: 3px solid var(--primary-green);
        outline-offset: 4px;
    }

    /* Improve focus visibility for keyboard navigation */
    .nav-link:focus {
        outline: 2px solid var(--primary-green);
        outline-offset: 2px;
        background: rgba(0, 255, 136, 0.15);
    }
}

/* Enhanced hover states for desktop (non-touch devices) */
@media (hover: hover) and (pointer: fine) {
    .watermark-top-left::after,
    .watermark-top-right::after {
        display: none; /* Hide pulse animation on desktop */
    }

    .watermark-top-left:hover,
    .watermark-top-right:hover {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px var(--primary-green));
    }

    .nav-link:hover {
        background: rgba(0, 255, 136, 0.15);
        transform: translateY(-2px);
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--glow-intense);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .watermark-top-left::after,
    .watermark-top-right::after {
        animation: none;
    }

    .nav-menu {
        transition: opacity 0.2s ease;
    }

    .nav-menu.show {
        transition: opacity 0.2s ease;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    .score-label {
        font-size: 0.6rem;
        margin-top: 7px;
    }
}

@media (max-width: 768px) {
    .hero[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }
    /* HERO SECTION */
    .wia-hero {
        padding: 4rem 1rem;
        text-align: center;
    }

    .wia-hero .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .wia-hero .hero-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* TRUSTSCORE SECTION */
    .wia-trustscore {
        height: 100vh;
    }

    .trustscore-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .trustscore-text,
    .trustscore-image {
        width: 100%;
    }

    .trustscore-image {
        margin-top: 1rem;
    }

    .wia-trustscore p,
    .wia-trustscore ul {
        font-size: 1rem;
        text-align: justify;
    }

    /* ROLLOUT ROADMAP */
    .roadmap-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .roadmap-step {
        width: 100%;
        text-align: left;
    }

    .roadmap-step h3 {
        font-size: 1.1rem;
    }

    .roadmap-step p {
        font-size: 0.95rem;
    }

    /* TRUST INFRASTRUCTURE */
    .wia-infrastructure {
        height: fit-content;
    }

    .wia-infrastructure p,
    .wia-infrastructure ul {
        font-size: 1rem;
        text-align: justify;
    }

    .wia-infrastructure ul {
        padding-left: 1rem;
    }

    .wia-infrastructure li {
        margin-bottom: 1rem;
    }

    /* INVESTOR CTA */
    .wia-investor-cta .cta-description {
        font-size: 1rem;
        text-align: justify;
    }

    .wia-investor-cta .cta-button {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}
