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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(4, 30, 68, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 197, 237, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo-icon {
    width: 100px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-text {
    color: white;
    font-weight: 600;
    font-size: 1.3em;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #e2e2e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95em;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #93c5ed;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #93c5ed;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Hero Section - Full Screen */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #041e44 50%, #062d5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(147, 197, 237, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-logo {
    width: 300px;
    height: 120px;
    border-radius: 25px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.hero h1 {
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #e2e2e2;
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #93c5ed 0%, #6ba3d4 100%);
    color: #041e44;
    padding: 22px 55px;
    font-size: 1.2em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(147, 197, 237, 0.3);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(147, 197, 237, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #93c5ed;
    font-size: 2em;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

/* Value Proposition - Full Width */
.value-prop {
    background: #041e44;
    padding: 120px 40px;
    position: relative;
}

.value-prop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #93c5ed, transparent);
}

.value-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-content h2 {
    font-size: 3.5em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.value-content p {
    font-size: 1.5em;
    color: #e2e2e2;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.value-highlight {
    display: inline-block;
    color: #93c5ed;
    font-weight: 600;
    position: relative;
}

.value-description {
    font-size: 1.5em;
    color: #e2e2e2;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Traceability Flow */
.traceability-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 80px;
}

.traceability-step {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(147, 197, 237, 0.3);
    transition: all 0.4s ease;
    text-align: center;
}

.traceability-step:hover {
    transform: translateY(-10px);
    border-color: #93c5ed;
    box-shadow: 0 20px 60px rgba(147, 197, 237, 0.3);
}

.trace-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.traceability-step:hover .trace-icon {
    transform: scale(1.2);
    filter: grayscale(0);
}

.trace-content h3 {
    color: #93c5ed;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
}

.trace-content p {
    color: #e2e2e2;
    font-size: 1em;
    line-height: 1.6;
}

.trace-content strong {
    color: #93c5ed;
}

.traceability-arrow {
    font-size: 2.5em;
    color: #93c5ed;
    text-align: center;
    animation: pulse-arrow 2s ease-in-out infinite;
}

/* Lifecycle Visualization */
.lifecycle-visual {
    background: #000;
    padding: 120px 40px;
    position: relative;
}

.lifecycle-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lifecycle-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.lifecycle-description {
    text-align: center;
    font-size: 1.3em;
    color: #e2e2e2;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 60px;
}

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

.lifecycle-flow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9e9e9e, #e74c3c, #f39c12, #27ae60);
    z-index: 0;
}

.lifecycle-state {
    background: rgba(4, 30, 68, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.lifecycle-state:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: currentColor;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lifecycle-state.initial {
    color: #9e9e9e;
}

.lifecycle-state.modified {
    color: #e74c3c;
}

.lifecycle-state.in-review {
    color: #f39c12;
}

.lifecycle-state.approved {
    color: #27ae60;
}

.state-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    font-weight: bold;
    transition: all 0.5s ease;
    position: relative;
}

.lifecycle-state.initial .state-icon {
    background: rgba(158, 158, 158, 0.2);
    box-shadow: 0 0 40px rgba(158, 158, 158, 0.3);
}

.lifecycle-state.modified .state-icon {
    background: rgba(231, 76, 60, 0.2);
    box-shadow: 0 0 40px rgba(231, 76, 60, 0.3);
}

.lifecycle-state.in-review .state-icon {
    background: rgba(243, 156, 18, 0.2);
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.3);
}

.lifecycle-state.approved .state-icon {
    background: rgba(39, 174, 96, 0.2);
    box-shadow: 0 0 40px rgba(39, 174, 96, 0.3);
}

.state-name {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}

.state-description {
    color: #e2e2e2;
    font-size: 1em;
    line-height: 1.6;
}

/* Feedback Loop Section */
.feedback-loop {
    background: linear-gradient(135deg, #041e44 0%, #062d5e 100%);
    padding: 120px 40px;
    position: relative;
}

.feedback-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feedback-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.feedback-subtitle {
    text-align: center;
    font-size: 1.4em;
    color: #e2e2e2;
    margin-bottom: 80px;
}

.feedback-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.feedback-step {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(147, 197, 237, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feedback-step:hover {
    transform: translateY(-10px);
    border-color: #93c5ed;
    box-shadow: 0 20px 60px rgba(147, 197, 237, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93c5ed 0%, #6ba3d4 100%);
    color: #041e44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
}

.step-content h3 {
    color: #93c5ed;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: #e2e2e2;
    font-size: 1.1em;
    line-height: 1.7;
}

.step-content strong {
    color: #93c5ed;
}

.feedback-arrow {
    font-size: 3em;
    color: #93c5ed;
    text-align: center;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Dashboards Section */
.dashboards-section {
    background: linear-gradient(135deg, #041e44 0%, #000000 100%);
    padding: 120px 40px;
    position: relative;
}

.dashboards-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dashboards-content h2 {
    font-size: 3.5em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.dashboards-content p {
    font-size: 1.5em;
    color: #e2e2e2;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Screenshot Section */
.screenshot-section {
    background: linear-gradient(135deg, #041e44 0%, #062d5e 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.screenshot-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(147, 197, 237, 0.1) 0%, transparent 50%);
}

.screenshot-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.screenshot-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.screenshot-image-wrapper {
    flex: 1;
    max-width: 1200px;
    position: relative;
}

.screenshot-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #93c5ed;
    box-shadow: 0 20px 60px rgba(147, 197, 237, 0.3);
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.02);
}

.screenshot-description {
    margin-top: 20px;
    padding: 20px;
    background: rgba(4, 30, 68, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(147, 197, 237, 0.2);
    color: #e2e2e2;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
}

.screenshot-nav {
    background: rgba(147, 197, 237, 0.2);
    border: 2px solid #93c5ed;
    color: #93c5ed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.screenshot-nav:hover {
    background: #93c5ed;
    color: #041e44;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(147, 197, 237, 0.5);
}

.screenshot-nav:active {
    transform: scale(0.95);
}

.screenshot-indicators {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.screenshot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(147, 197, 237, 0.3);
    border: 2px solid #93c5ed;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-indicator:hover {
    background: rgba(147, 197, 237, 0.6);
    transform: scale(1.2);
}

.screenshot-indicator.active {
    background: #93c5ed;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(147, 197, 237, 0.6);
}

/* Features Grid - Animated Cards */
.features {
    background: #000;
    padding: 120px 40px;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

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

.feature-card {
    background: linear-gradient(135deg, rgba(4, 30, 68, 0.8) 0%, rgba(6, 45, 94, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(147, 197, 237, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #93c5ed, transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card:hover:before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #93c5ed;
    box-shadow: 0 20px 60px rgba(147, 197, 237, 0.3);
}

.feature-card h3 {
    color: #93c5ed;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    color: #e2e2e2;
    font-size: 1.1em;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #e2e2e2;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #93c5ed;
    font-weight: bold;
    font-size: 1.3em;
}

.feature-list li strong {
    color: #93c5ed;
}

/* Project View Section - Split Layout */
.project-view {
    background: linear-gradient(135deg, #041e44 0%, #000000 100%);
    padding: 120px 40px;
}

.project-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.project-content h2 {
    font-size: 3.5em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.project-content p {
    font-size: 1.3em;
    color: #e2e2e2;
    line-height: 1.8;
    margin-bottom: 40px;
}

.project-features {
    list-style: none;
    padding: 0;
}

.project-features li {
    font-size: 1.2em;
    color: #e2e2e2;
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    border-left: 3px solid #93c5ed;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-features li:before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: #93c5ed;
    font-weight: bold;
}

.project-features li:hover {
    padding-left: 50px;
    border-color: #6ba3d4;
}

.project-screenshot {
    position: relative;
}

/* Collaboration Section */
.collaboration {
    background: #000;
    padding: 120px 40px;
}

.collaboration-container {
    max-width: 1400px;
    margin: 0 auto;
}

.collaboration-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.collaboration-card {
    background: rgba(4, 30, 68, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 25px;
    border: 2px solid rgba(147, 197, 237, 0.2);
    transition: all 0.5s ease;
}

.collaboration-card:hover {
    transform: translateY(-10px);
    border-color: #93c5ed;
    box-shadow: 0 25px 70px rgba(147, 197, 237, 0.3);
}

.collab-icon {
    font-size: 4em;
    margin-bottom: 30px;
}

.collaboration-card h3 {
    color: #93c5ed;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 700;
}

.collaboration-card p {
    color: #e2e2e2;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.collab-highlight {
    display: inline-block;
    background: rgba(147, 197, 237, 0.2);
    color: #93c5ed;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
}

/* Integration Showcase */
.integration {
    background: linear-gradient(135deg, #041e44 0%, #062d5e 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.integration:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(147, 197, 237, 0.15) 0%, transparent 50%);
}

.integration-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.integration-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.integration-subtitle {
    font-size: 1.4em;
    color: #e2e2e2;
    line-height: 1.8;
    margin-bottom: 60px;
}

.integration-category {
    margin-bottom: 60px;
}

.integration-category-title {
    color: #93c5ed;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 80px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: flex-start;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.integration-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    background: rgba(147, 197, 237, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(147, 197, 237, 0.5);
}

.integration-item:hover .integration-logo {
    opacity: 1;
    transform: scale(1.1);
}

.integration-name {
    color: #e2e2e2;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
    max-width: 120px;
}

.coming-soon-category {
    opacity: 0.6;
}

.integration-item.coming-soon {
    opacity: 0.7;
}

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(147, 197, 237, 0.3);
    border: 1px solid rgba(147, 197, 237, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #ffffff;
    font-weight: bold;
    padding: 20px;
    box-sizing: border-box;
}

.integration-highlight {
    background: rgba(147, 197, 237, 0.1);
    border: 2px solid #93c5ed;
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 40px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #93c5ed;
        box-shadow: 0 0 30px rgba(147, 197, 237, 0.3);
    }
    50% {
        border-color: #6ba3d4;
        box-shadow: 0 0 50px rgba(147, 197, 237, 0.6);
    }
}

.integration-highlight strong {
    color: #93c5ed;
    font-size: 1.3em;
}

/* Contact Section - Modern */
.contact {
    background: #000;
    padding: 120px 40px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-logo {
    width: 300px;
    height: 150px;
    border-radius: 30px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container h2 {
    font-size: 3.5em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact-description {
    font-size: 1.3em;
    color: #e2e2e2;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-details {
    background: linear-gradient(135deg, rgba(4, 30, 68, 0.8) 0%, rgba(6, 45, 94, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(147, 197, 237, 0.2);
    margin: 50px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name {
    font-size: 2em;
    color: #93c5ed;
    font-weight: 700;
    margin-bottom: 30px;
}

.address-line {
    font-size: 1.2em;
    color: #e2e2e2;
    margin-bottom: 10px;
}

.contact-email {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    color: #93c5ed;
    font-size: 1.4em;
    font-weight: 600;
    text-decoration: none;
    padding: 20px 45px;
    border: 2px solid #93c5ed;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #93c5ed;
    color: #041e44;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 197, 237, 0.4);
}

/* Footer */
.footer {
    background: #041e44;
    padding: 50px 40px 140px 40px;
    border-top: 1px solid rgba(147, 197, 237, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    color: #93c5ed;
    font-size: 1.1em;
}

.footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-links a {
    color: #e2e2e2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.footer-links a:hover {
    color: #93c5ed;
    transform: translateY(-2px);
}

/* Fixed Demo Button */
.fixed-demo-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fixed-demo-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.fixed-demo-button .cta-button {
    box-shadow: 0 10px 40px rgba(147, 197, 237, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .lifecycle-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .lifecycle-flow:before {
        display: none;
    }

    .feedback-steps {
        grid-template-columns: 1fr;
    }

    .feedback-arrow {
        transform: rotate(90deg);
    }

    .traceability-flow {
        grid-template-columns: 1fr;
    }

    .traceability-arrow {
        transform: rotate(90deg);
    }

    .project-container {
        grid-template-columns: 1fr;
    }

    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-display {
        gap: 15px;
    }

    .screenshot-nav {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }

    .integration-grid {
        gap: 40px 60px;
    }

    .integration-logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .coming-soon-placeholder {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .feature-card {
        padding: 35px 25px;
    }
}

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

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .value-content h2,
    .lifecycle-title,
    .features-title,
    .dashboards-content h2,
    .integration-content h2,
    .contact-container h2,
    .collaboration-title,
    .feedback-title,
    .project-content h2 {
        font-size: 2.5em;
    }

    .lifecycle-flow {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-card h3 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }

    .feature-list li {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .fixed-demo-button {
        bottom: 20px;
        right: 20px;
    }

    .fixed-demo-button .cta-button {
        padding: 18px 35px;
        font-size: 1em;
    }

    .screenshot-display {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .screenshot-image-wrapper {
        order: 1;
        width: 100%;
        flex-basis: 100%;
    }

    .screenshot-nav {
        width: 60px;
        height: 60px;
        font-size: 2em;
        order: 2;
        flex-shrink: 0;
    }

    .screenshot-nav-prev {
        margin-right: 10px;
    }

    .screenshot-nav-next {
        margin-left: 10px;
    }

    .integration-grid {
        gap: 30px 40px;
        justify-content: center;
    }

    .integration-logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .coming-soon-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .integration-category-title {
        text-align: center;
    }

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

    .contact-email {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

html {
    scroll-behavior: smooth;
}