/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #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);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
}

.nav-logo span {
    font-weight: 700;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    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: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-mindset {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px 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 */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* Device Mockups */
.device-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: pulse 2s infinite;
    margin: 2rem 0;
    min-height: 300px;
}

.device-mockup {
    position: relative;
    display: none; /* Initially hidden, will be shown by JavaScript */
}

.device-frame {
    background: linear-gradient(45deg, #333, #555);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    border: 2px solid #00ffff;
    position: relative;
}

/* Add camera notch for phone */
.phone-mockup .device-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 3px;
    z-index: 3;
}

/* Add home button for phone */
.phone-mockup .device-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #222;
    border-radius: 2px;
    z-index: 3;
}

.device-screen {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.shield-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 255, 255, 0.05);
    z-index: 1;
    animation: rotate 30s linear infinite;
    filter: blur(1px);
}

/* Desktop shield size */
.desktop-mockup .shield-background {
    font-size: 6rem;
}

/* Tablet shield size */
.tablet-mockup .shield-background {
    font-size: 4rem;
}

/* Phone shield size */
.phone-mockup .shield-background {
    font-size: 3rem;
}

/* Desktop Mockup */
.desktop-mockup .device-frame {
    width: 320px;
    height: 220px;
}

.desktop-mockup .device-screen {
    width: 100%;
    height: 100%;
    padding: 15px;
    position: relative;
}

.desktop-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    z-index: 2;
    position: relative;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #00ffff;
    text-align: center;
    transition: all 0.3s ease;
}

.desktop-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.desktop-icon i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.desktop-icon span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Tablet Mockup */
.tablet-mockup .device-frame {
    width: 220px;
    height: 160px;
}

.tablet-mockup .device-screen {
    width: 100%;
    height: 100%;
    padding: 12px;
    position: relative;
}

.tablet-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 2;
    position: relative;
}

.tablet-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #00ffff;
    text-align: center;
    transition: all 0.3s ease;
}

.tablet-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.tablet-icon i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tablet-icon span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup .device-frame {
    width: 140px;
    height: 240px;
}

.phone-mockup .device-screen {
    width: 100%;
    height: 100%;
    padding: 20px 10px;
}

.phone-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ffff;
    transition: all 0.3s ease;
}

.phone-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.phone-icon i {
    font-size: 1.4rem;
}


@media (max-width: 768px) {
    .device-mockups {
        display: none;
    }
    
    .cookie-banner {
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #333333;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        color: #ffffff;
        font-weight: 500;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .form-message {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Tablet-specific styles (iPad and similar tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookie-banner {
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #333333;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .cookie-content p {
        color: #ffffff;
        font-weight: 500;
    }
}


/* Features Section */
.features {
    padding: 100px 0;
    background: #111;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Audience Section */
.audience {
    padding: 100px 0;
    background: #0a0a0a;
}

.audience h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.audience-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Status Section */
.status {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.status-icon {
    font-size: 4rem;
    color: #00ffff;
    margin-bottom: 2rem;
}

.status h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-message {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.status-message p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.status-message p:last-child {
    margin-bottom: 0;
}

.status-closing {
    color: #00ffff !important;
    font-weight: 600;
}

.status-badge {
    margin-top: 2rem;
}

.badge {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.email-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
}

.email-option.selected {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.email-option .contact-details h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.email-option .contact-details p {
    color: #00ffff;
    font-size: 0.9rem;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: #00ffff;
    min-width: 50px;
}

.contact-details h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

/* Badge link styling */
.badge-link {
    text-decoration: none;
    display: inline-block;
}

.badge-link:hover .badge {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer p {
    color: #999;
}

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

.footer-social a {
    color: #999;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00ffff;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

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

/* Course animation keyframes */
@keyframes courseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shieldAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.8); }
}

@keyframes checkBounce {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Quiz Styles */
.quiz-hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
}

.quiz-hero-content h1 {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.quiz-hero-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.quiz-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ffff;
    font-weight: 600;
}

.quiz-stats .stat i {
    font-size: 1.2rem;
}

.quiz-container {
    padding: 3rem 0;
    min-height: 60vh;
}

.quiz-screen {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-screen.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

/* Start Screen */
.start-content {
    text-align: center;
    padding: 2rem;
}

.start-icon {
    font-size: 4rem;
    color: #00ffff;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.start-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.start-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.quiz-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.topic {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #00ffff;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.topic.animate-in {
    animation: slideInUp 0.5s ease-out forwards;
}

.topic:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Question Screen */
.quiz-progress {
    margin-bottom: 2rem;
}

.quiz-progress .progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.quiz-progress .progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #00ffff;
    font-size: 0.9rem;
    text-align: center;
}

.question-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.question-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.question-number {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.question-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
}

.option.selected {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.option-radio {
    position: relative;
    flex-shrink: 0;
}

.option-radio input[type="radio"] {
    display: none;
}

.option-radio label {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    display: block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-radio input[type="radio"]:checked + label {
    border-color: #00ffff;
    background: #00ffff;
}

.option-radio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.option-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Results Screen */
.results-content {
    text-align: center;
    padding: 2rem;
}

.results-header {
    margin-bottom: 3rem;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: scorePulse 2s ease-in-out infinite;
}

.score-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.score-percent {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.8;
}

.results-header h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.results-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.results-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.results-breakdown h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.breakdown-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #00ffff;
    font-weight: 600;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    min-height: 60px;
}

.stat-item i {
    font-size: 1.2rem;
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.results-sharing {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.results-sharing h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sharing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.sharing-options .btn {
    min-width: 150px;
    transition: all 0.3s ease;
}

.sharing-options .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.results-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Quiz Actions */
.quiz-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Password Checker Styles */
.password-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.password-header i {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.password-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.password-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.password-checker {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.password-input-group {
    margin-bottom: 2rem;
}

.password-input-group label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.toggle-password {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #00ffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: #fff;
}

.password-strength {
    margin-bottom: 2rem;
}

.strength-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 0%;
}

.strength-fill.very-weak { background: #ff4444; }
.strength-fill.weak { background: #ff8800; }
.strength-fill.fair { background: #ffcc00; }
.strength-fill.good { background: #00cc00; }
.strength-fill.strong { background: #00ff00; }

.strength-text {
    color: #00ffff;
    font-size: 1rem;
    font-weight: 600;
}

.password-feedback {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.password-feedback h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.password-feedback ul {
    color: #b0b0b0;
    margin: 0;
    padding-left: 1.5rem;
}

.password-feedback li {
    margin-bottom: 0.25rem;
}

.password-suggestions {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
}

.password-suggestions h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.password-suggestions ul {
    color: #b0b0b0;
    margin: 0;
    padding-left: 1.5rem;
}

.password-suggestions li {
    margin-bottom: 0.25rem;
}

.password-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Home Page Password Checker Section */
.password-checker-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 4rem 0;
}

.password-checker-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.password-checker-content .section-header h2 {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.password-checker-content .section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.password-checker-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: left;
}

.password-checker-widget .password-actions {
    margin-top: 2rem;
}

/* Quiz Animations */
@keyframes glow {
    from { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes scorePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); }
}

/* Responsive Quiz */
@media (max-width: 768px) {
    .quiz-hero-content h1 {
        font-size: 2rem;
    }
    
    .quiz-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-topics {
        grid-template-columns: 1fr;
    }
    
    .question-header {
        flex-direction: column;
        text-align: center;
    }
    
    .question-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breakdown-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
        min-height: 50px;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .sharing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .sharing-options .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .password-checker-widget {
        padding: 1.5rem;
    }
    
    .password-checker-content .section-header h2 {
        font-size: 2rem;
    }
}

/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #00ffff;
    color: #000;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 6px;
}



/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 1px solid #333333;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-secondary);
    transform: translateY(-3px);
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-spinner.show {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--border-color) 25%, var(--bg-secondary) 50%, var(--border-color) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

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

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure smooth animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Products Page Styles */
.products-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.products-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.products-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-hero-content p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.products-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    margin-bottom: 4rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #00ffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.product-icon {
    font-size: 3rem;
    color: #00ffff;
    min-width: 60px;
}

.product-title h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-badge {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.product-description h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-description h4 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description ul {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.product-description li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

/* Mockup Styles */
.dashboard-mockup {
    background: #1a1a2e;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff6b6b;
}

.mockup-dot:nth-child(2) { background: #ffd93d; }
.mockup-dot:nth-child(3) { background: #6bcf7f; }

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

.mockup-chart {
    height: 100px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 8px;
    opacity: 0.7;
}

.mockup-stats {
    display: flex;
    gap: 0.5rem;
}

.stat-item {
    flex: 1;
    height: 40px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 6px;
}

.simulation-mockup {
    background: #1a1a2e;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
}

.simulation-screen {
    border: 2px solid #00ffff;
    border-radius: 8px;
    overflow: hidden;
}

.simulation-header {
    background: #00ffff;
    color: #000;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.simulation-content {
    padding: 1rem;
}

.email-preview {
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.simulation-options {
    display: flex;
    gap: 0.5rem;
}

.option-btn {
    flex: 1;
    height: 30px;
    background: rgba(0, 255, 255, 0.3);
    border-radius: 6px;
}

.chat-mockup {
    background: #1a1a2e;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-avatar {
    width: 30px;
    height: 30px;
    background: #00ffff;
    border-radius: 50%;
}

.chat-header span {
    color: #fff;
    font-weight: 600;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

.message.user {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    align-self: flex-end;
}

.message.ai {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    align-self: flex-start;
}

.learning-mockup {
    background: #1a1a2e;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.course-card.animated-course {
    animation: courseGlow 3s ease-in-out infinite;
}

.course-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.course-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.course-progress {
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.progress-text {
    color: #00ffff;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: right;
}

.course-progress.completed {
    opacity: 0;
    transform: scale(0.8);
}

.course-title.completed {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.course-icon.completed {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.shield-checkmark {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: shieldAppear 0.6s ease-out;
}

.shield-checkmark.show {
    display: block;
}

.shield-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    animation: shieldPulse 2s ease-in-out infinite;
}

.check-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: #00ff88;
    animation: checkBounce 0.8s ease-out 0.3s both;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 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.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-top: 80px;
    }
    
    .hero-visual {
        padding: 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .device-mockups {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
        min-height: 250px;
    }
    
    .desktop-mockup .device-frame {
        width: 280px;
        height: 180px;
    }
    
    .tablet-mockup .device-frame {
        width: 180px;
        height: 130px;
    }
    
    .phone-mockup {
        display: none;
    }
    

    
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact section mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .email-selection {
        gap: 0.75rem;
    }
    
    .email-option {
        padding: 0.75rem;
    }
    
    .email-option .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .email-option .contact-details p {
        font-size: 0.8rem;
    }
    
    /* Products page mobile */
    .products-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features h2,
    .audience h2,
    .status h2,
    .contact h2,
    .products-hero-content h1,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .desktop-mockup .device-frame {
        width: 240px;
        height: 150px;
    }
    
    .tablet-mockup .device-frame {
        width: 160px;
        height: 115px;
    }
    
    .phone-mockup .device-frame {
        width: 100px;
        height: 160px;
    }
    
    .hero-visual {
        padding: 1rem 0;
    }
    
    .device-mockups {
        margin: 1rem 0;
        min-height: 200px;
    }
    
    .product-header {
        padding: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .email-option {
        padding: 0.5rem;
    }
    
    .email-option .contact-details h4 {
        font-size: 0.85rem;
    }
    
    .email-option .contact-details p {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .product-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .device-mockups {
        gap: 1.5rem;
    }
    
    .desktop-mockup .device-frame {
        width: 300px;
        height: 200px;
    }
    
    .tablet-mockup .device-frame {
        width: 200px;
        height: 145px;
    }
    
    .phone-mockup .device-frame {
        width: 130px;
        height: 220px;
    }
    

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features h2,
    .audience h2,
    .status h2 {
        font-size: 2rem;
    }
} 