/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-link {
    display: flex;
    align-items: center;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #ffffff;
    transform: scale(1.05);
}

.logo-link i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.cyber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 300px;
    height: 300px;
}

.grid-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    animation: pulse 2s infinite;
}

.grid-item:nth-child(2n) {
    animation-delay: 0.5s;
}

.grid-item:nth-child(3n) {
    animation-delay: 1s;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-badge {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.security-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.security-badge i {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.security-badge span {
    font-weight: 600;
    color: #ffffff;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #888888;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Free Tools Page Styles */
.tools-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

/* Tools Overview Section */
.tools-overview {
    padding: 80px 0;
    background: #111111;
}

.tools-overview .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tools-overview .tool-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tools-overview .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tools-overview .tool-card:hover::before {
    left: 100%;
}

.tools-overview .tool-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.tools-overview .tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.tools-overview .tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tools-overview .tool-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: #00ffff;
    font-weight: 500;
}

.tools-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tools-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.tools-hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
}

/* Assessment Section */
.assessment-section {
    padding: 80px 0;
    background: #111111;
}

.assessment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.assessment-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.assessment-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.assessment-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    display: block;
}

/* Question Styles */
.question-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.question-header {
    margin-bottom: 1.5rem;
}

.question-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.question-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.question-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-label:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
}

.option-label input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    accent-color: #00ffff;
}

.option-label input[type="radio"]:checked + .option-text {
    color: #00ffff;
}

.option-text {
    flex: 1;
    color: #ffffff;
    line-height: 1.4;
}

.option-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.option-text small {
    color: #cccccc;
    font-size: 0.85rem;
}

/* Assessment Buttons */
.assessment-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

/* Results Styles */
.assessment-results {
    max-width: 800px;
    margin: 0 auto;
}

.results-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.results-header {
    margin-bottom: 2rem;
}

.results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
}

.overall-score {
    margin-bottom: 2rem;
}

.score-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.score-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.score-level {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

.score-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.detailed-scores {
    margin-bottom: 2rem;
    text-align: left;
}

.detailed-scores h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-label {
    min-width: 150px;
    color: #cccccc;
    font-size: 0.9rem;
}

.score-bar {
    flex: 1;
    height: 20px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.score-fill.level3 {
    background: linear-gradient(90deg, #00ff88, #00cc66);
}

.score-fill.level2 {
    background: linear-gradient(90deg, #ffaa00, #ff8800);
}

.score-fill.level1 {
    background: linear-gradient(90deg, #ff4444, #cc3333);
}

.score-fill.level0 {
    background: linear-gradient(90deg, #666666, #444444);
}

/* NIST Assessment Tier Styles - using same structure as Essential 8 */
.control-level.tier-tier0 {
    background: linear-gradient(135deg, #666666, #444444);
    color: #fff;
}

.control-level.tier-tier1 {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: #fff;
}

.control-level.tier-tier2 {
    background: linear-gradient(135deg, #ff8800, #cc6600);
    color: #fff;
}

.control-level.tier-tier3 {
    background: linear-gradient(135deg, #ffaa00, #cc8800);
    color: #fff;
}

.control-level.tier-tier4 {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #fff;
}

/* NIST Score Circle Styles */
.score-circle.tier0none {
    background: linear-gradient(135deg, #666666, #444444);
}

.score-circle.tier1partial {
    background: linear-gradient(135deg, #ff4444, #cc3333);
}

.score-circle.tier2riskinformed {
    background: linear-gradient(135deg, #ff8800, #cc6600);
}

.score-circle.tier3repeatable {
    background: linear-gradient(135deg, #ffaa00, #cc8800);
}

.score-circle.tier4adaptive {
    background: linear-gradient(135deg, #00ff88, #00cc66);
}

/* Breach Checker Tool Styles */
.breach-tools-section {
    padding: 2rem 0 1rem 0;
    background: #111111;
}

.breach-checker-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    padding: 1rem 0;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    bottom: 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border: 2px solid rgba(0, 255, 255, 0.3);
    min-height: 500px;
    overflow: visible;
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
}

.coming-soon-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.coming-soon-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.coming-soon-features .feature-item i {
    font-size: 1.5rem;
    color: #00ffff;
}

.coming-soon-notify {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.coming-soon-notify p {
    color: #cccccc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.coming-soon-notify i {
    color: #00ffff;
}

/* Removed disabled styles - tool is now functional */

.checker-input {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.input-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
}

.input-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-info i {
    color: #00ffff;
}

.breach-results {
    margin-top: 2rem;
}

/* Breach Results Styling */
.breach-result-card {
    background: rgba(20, 20, 40, 0.9);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.breach-result-card.has-breaches {
    border-color: rgba(255, 100, 100, 0.5);
    background: rgba(40, 20, 20, 0.9);
}

.breach-result-card.no-breaches {
    border-color: rgba(100, 255, 100, 0.5);
    background: rgba(20, 40, 20, 0.9);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.breach-result-card.has-breaches .result-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.breach-result-card.no-breaches .result-icon {
    background: linear-gradient(135deg, #51cf66, #69db7c);
}

.result-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.result-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.breach-details {
    margin: 2rem 0;
}

.breach-details h4 {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.breach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breach-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.breach-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breach-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.breach-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breach-info {
    flex: 1;
}

.breach-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.breach-date {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.breach-count {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.breach-description {
    margin-bottom: 1rem;
}

.breach-description p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.breach-data-classes h6 {
    color: #00ffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.data-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.data-class {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: #00ffff;
    font-weight: 500;
}

.result-recommendations {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.result-recommendations h4 {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-recommendations li {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.result-recommendations li::before {
    content: "•";
    color: #00ffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.result-recommendations li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design for Breach Results */
@media (max-width: 768px) {
    .breach-result-card {
        padding: 1.5rem;
    }
    
    .breach-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .breach-logo {
        width: 40px;
        height: 40px;
    }
    
    .result-title {
        font-size: 1.5rem;
    }
    
    .result-description {
        font-size: 1rem;
    }
    
    .data-classes {
        justify-content: center;
    }
}

/* Vulnerability Checker Tool Styles */
.vulnerability-tools-section {
    padding: 1rem 0 2rem 0;
    background: #111111;
}

.vulnerability-checker-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
    padding: 2rem 0;
}

.vuln-results {
    margin-top: 2rem;
}

/* Responsive Design for Coming Soon Overlays */
@media (max-width: 768px) {
    .coming-soon-features {
        gap: 1rem;
    }
    
    .coming-soon-features .feature-item {
        font-size: 0.8rem;
    }
    
    .coming-soon-features .feature-item i {
        font-size: 1.2rem;
    }
    
    .coming-soon-content {
        padding: 1.5rem;
    }
    
    .breach-checker-container,
    .vulnerability-checker-container {
        min-height: 550px;
        padding: 1.5rem 0;
    }
    
    .breach-tools-section,
    .vulnerability-tools-section {
        padding: 1rem 0 8rem 0;
    }
    
    .coming-soon-overlay {
        top: 1.5rem;
        bottom: 1.5rem;
        min-height: 450px;
        overflow: visible;
    }
}

.score-count {
    min-width: 40px;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

.recommendations {
    margin-bottom: 2rem;
    text-align: left;
}

.recommendations h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.recommendations-list {
    list-style: none;
    padding: 0;
}

.recommendations-list li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.recommendations-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Alignment Summary */
.alignment-summary {
    margin-bottom: 2rem;
    text-align: center;
}

.alignment-summary h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.alignment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.alignment-stats .stat-item {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.alignment-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.alignment-stats .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Control Details */
.control-details {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.control-details h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.controls-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-item {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.control-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.control-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.control-level {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.control-level.level3 {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
}

.control-level.level2 {
    background: linear-gradient(135deg, #ffaa00, #ff8800);
    color: #000;
}

.control-level.level1 {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: #fff;
}

.control-level.level0 {
    background: linear-gradient(135deg, #666666, #444444);
    color: #fff;
}

.control-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Next Steps */
.next-steps {
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateY(-2px);
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.step-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Button Styles */
.btn-outline {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-2px);
}

/* Password Tools Section */
.password-tools-section {
    padding: 80px 0;
    background: #111111;
}

.tool-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tool-header .tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.tool-header .tool-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tool-header .tool-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Password Generator Styles */
.password-generator-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.generator-controls {
    margin-bottom: 2rem;
}

.control-group {
    margin-bottom: 1.5rem;
}

.control-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.control-group input[type="range"] {
    width: 100%;
    margin: 0.5rem 0;
    accent-color: #00ffff;
}

.control-group input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #00ffff;
}

.control-group span {
    color: #00ffff;
    font-weight: 600;
    margin-left: 1rem;
}

.generator-output {
    text-align: center;
}

.password-display {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.password-display input {
    flex: 1;
    padding: 15px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: monospace;
    text-align: center;
}

.password-display input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.generator-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Password Strength Checker Styles */
.password-checker-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.checker-input {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 15px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: monospace;
}

.input-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.input-note {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.strength-results {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.strength-meter {
    text-align: center;
    margin-bottom: 2rem;
}

.strength-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.strength-fill {
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 0%;
}

.strength-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.strength-details {
    margin-bottom: 2rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.detail-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.detail-label {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.detail-score {
    display: block;
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.strength-analysis,
.strength-recommendations {
    margin-bottom: 1.5rem;
}

.strength-analysis h3,
.strength-recommendations h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.analysis-list,
.recommendations-list {
    list-style: none;
    padding: 0;
}

.analysis-list li,
.recommendations-list li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.analysis-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.recommendations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Additional Tools Section */
.additional-tools {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card.coming-soon {
    opacity: 0.7;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tool-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffaa00, #ff8800);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Free Tools Responsive */
    .tools-hero-title {
        font-size: 2.5rem;
    }

    .assessment-title {
        font-size: 2rem;
    }

    .assessment-container {
        padding: 1.5rem;
    }

    .question-card {
        padding: 1.5rem;
    }

    .option-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .option-label input[type="radio"] {
        align-self: flex-start;
    }

    .assessment-buttons {
        flex-direction: column;
    }

    .score-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .score-label {
        min-width: auto;
    }

    .score-bar {
        width: 100%;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    /* Tools Overview Responsive */
    .tools-overview .tools-grid {
        grid-template-columns: 1fr;
    }

    /* Password Tools Responsive */
    .password-display {
        flex-direction: column;
    }

    .input-group {
        flex-direction: column;
    }

    .generator-actions {
        flex-direction: column;
        align-items: center;
    }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Assessment Results Responsive */
    .alignment-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .control-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Free Tools Mobile */
    .tools-hero-title {
        font-size: 2rem;
    }

    .assessment-title {
        font-size: 1.8rem;
    }

    .assessment-container {
        padding: 1rem;
    }

    .question-card {
        padding: 1rem;
    }

    .score-circle {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }

    /* Assessment Results Mobile */
    .alignment-stats {
        grid-template-columns: 1fr;
    }

    .score-percentage {
        font-size: 1.5rem;
    }

    .score-level {
        font-size: 0.8rem;
    }

    /* Password Tools Mobile */
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .password-generator-container,
    .password-checker-container {
        padding: 1rem;
    }
}
