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

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --border: #e5e7eb;
    --success: #059669;
    --danger: #dc2626;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle::after {
    content: '▾';
    margin-left: 8px;
    font-size: 16px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

/* Mega Menu */
.nav-mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(1px);
    margin-top: 0;
    background: white;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
    min-width: 800px;
    padding-top: 0;
}

.nav-mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(17px);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    padding: 24px 24px 32px 24px;
}

.mega-column {
    padding: 0 20px;
    border-right: 1px solid #e5e7eb;
}

.mega-column:last-child {
    border-right: none;
}

.mega-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mega-icon svg {
    width: 18px;
    height: 18px;
    color: #8B1E79;
}

.mega-column a {
    display: block;
    padding: 10px 0;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

.mega-column a:hover {
    color: #8B1E79;
    border-left-color: #8B1E79;
    padding-left: 16px;
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    padding: 32px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.preview-header {
    background: #f3f4f6;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

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

.preview-content {
    padding: 24px;
}

.metric-card {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.trend {
    font-size: 16px;
    margin-left: 12px;
}

.trend.down {
    color: var(--success);
}

.chart-placeholder {
    height: 120px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 8px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 16px 12px 12px;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(100, 116, 139, 0.2);
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:nth-child(1) { height: 45%; opacity: 0.7; }
.chart-bar:nth-child(2) { height: 65%; opacity: 0.8; }
.chart-bar:nth-child(3) { height: 85%; opacity: 0.9; }
.chart-bar:nth-child(4) { height: 55%; opacity: 0.75; }
.chart-bar:nth-child(5) { height: 40%; opacity: 0.7; }
.chart-bar:nth-child(6) { height: 30%; opacity: 0.65; }

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg);
}

.problem-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: #FCFCFC;
    border-radius: 12px;
    border: 1px solid #e0e0de;
}

.problem-icon {
    margin-right: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.problem-icon svg,
.problem-icon img {
    display: block;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 12px;
}

/* How It Works */
.how-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.how-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.how-step {
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.how-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.how-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features */
.features-section {
    padding: 100px 0;
    background: var(--bg);
}

.features-intro {
    text-align: center;
    margin-bottom: 80px;
}

.features-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.features-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 100px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.feature-bullets li {
    padding: 8px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-bullets li svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Feature Visuals */
.feature-visual {
    padding: 24px;
}

.email-preview {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.email-header {
    background: var(--bg-alt);
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
}

.email-body {
    padding: 20px;
    font-size: 15px;
    color: var(--text-light);
}

.fake-button {
    margin-top: 16px;
    padding: 12px 24px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.fake-button:hover {
    background: #b91c1c;
}

.training-preview {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.progress-bar {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

.training-preview h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.preview-text {
    color: var(--text-light);
    margin-bottom: 16px;
}

.quiz-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option {
    padding: 12px;
    background: #ecfdf5;
    border-radius: 6px;
    color: var(--success);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quiz-option svg {
    flex-shrink: 0;
}

.questionnaire-preview {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.question-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 6px;
    margin-bottom: 12px;
}

.q-number {
    font-weight: 700;
    color: var(--primary);
}

.q-text {
    flex: 1;
}

.q-status.complete {
    color: var(--success);
    font-weight: 700;
}

.q-status.complete svg {
    display: block;
}

.q-status.pending {
    color: var(--text-light);
}

/* Technical Features */
.technical-features {
    padding: 60px 40px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.technical-features h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

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

.tech-item {
    text-align: center;
}

.tech-item svg {
    color: var(--primary);
}

.tech-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.tech-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pricing-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 32px;
    border: 2px solid var(--border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-users {
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 8px;
}

/* Contact */
.contact-section {
    padding: 100px 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-size: 18px;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}


.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.logo-p {
    color: #8B1E79;
}

.logo-aware {
    color: white;
}

.logo-io {
    color: #8B1E79;
}

.footer-col h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-col p {
    line-height: 1.5;
}

/* Phishing Demo Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B1E79 0%, #6d1760 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(139, 30, 121, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(139, 30, 121, 0.5);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.open {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: #1f2937;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-header-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9fafb;
}

.chat-message {
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.bot .message-bubble {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.chat-message.user .message-bubble {
    background: #8B1E79;
    color: white;
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.chat-input-wrapper {
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: #8B1E79;
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8B1E79;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chat-send:hover {
    background: #6d1760;
    transform: scale(1.05);
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.quick-reply {
    padding: 8px 14px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-reply:hover {
    background: #8B1E79;
    color: white;
    border-color: #8B1E79;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-content {
        padding: 8px 16px;
        width: 100%;
    }
    
    .mega-menu {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .problem-grid,
    .how-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Social Media Icons Hover Effects */
.footer a[aria-label="LinkedIn"]:hover,
.footer a[aria-label="Twitter/X"]:hover,
.footer a[aria-label="GitHub"]:hover,
.footer a[aria-label="Email"]:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer a[aria-label] svg {
    transition: transform 0.2s ease;
}

.footer a[aria-label]:hover svg {
    transform: scale(1.1);
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-320px);
    width: 320px;
    background: linear-gradient(135deg, #8B1E79 0%, #6d1760 100%);
    color: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    z-index: 999;
}

.floating-sidebar.active {
    transform: translateY(-50%) translateX(0);
}

.floating-sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #8B1E79 0%, #6d1760 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-sidebar-toggle:hover {
    background: linear-gradient(135deg, #6d1760 0%, #8B1E79 100%);
    right: -42px;
}

.floating-sidebar-content {
    padding: 32px 24px;
}

.floating-sidebar-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.floating-sidebar-close:hover {
    opacity: 1;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.sidebar-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    transition: all 0.2s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 12px 24px;
    background: white;
    color: #8B1E79;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
}

.sidebar-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(4px);
}

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    gap: 8px;
    max-width: 320px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 14px;
    transition: all 0.2s;
}

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

.footer-newsletter input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
}

.footer-newsletter button {
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter button:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.footer-col-large {
    flex: 1.5;
    min-width: 280px;
}

.footer-col a {
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-sidebar {
        width: 280px;
        transform: translateY(-50%) translateX(-280px);
    }
    
    /* Mobile chat styling */
    .chat-window {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100vw;
        max-width: 100%;
        height: 80vh;
        max-height: 600px;
        border-radius: 16px 16px 0 0;
        margin: 0;
    }
    
    .chat-button {
        bottom: 20px;
        right: 20px;
    }
    
    /* Ensure all containers fit mobile viewport */
    .container {
        padding: 0 16px;
        width: 100%;
    }
    
    /* Prevent any element from exceeding viewport */
    section,
    .hero,
    .features,
    .footer {
        width: 100%;
        overflow-x: hidden;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
}

/* Navigation Button Styles */
.nav-links a[style*="border: 1px solid"]:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.nav-links a[style*="background: #fff"]:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: translateY(-1px);
}

/* Pricing CTA Buttons */
.pricing-cta {
    display: block;
    margin-top: 24px;
    padding: 12px 32px;
    background: #2563eb;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.pricing-cta:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-cta.featured-cta {
    background: #8B1E79;
}

.pricing-cta.featured-cta:hover {
    background: #6d1760;
    box-shadow: 0 4px 12px rgba(139, 30, 121, 0.3);
}

/* Pricing Toggle Switch */
.pricing-toggle {
    display: inline-flex;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.toggle-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.toggle-btn.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toggle-btn:hover:not(.active) {
    color: #111827;
}

.price-note {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 16px;
    min-height: 18px;
}


/* Drag Captcha Styles - Professional Design */
.captcha-container {
    position: relative;
    width: 100%;
    height: 48px;
    margin: 24px 0;
    user-select: none;
}

.captcha-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e1e4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.captcha-track.verified {
    background: #f0fdf4;
    border-color: #86efac;
}

.captcha-track-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.captcha-success-text {
    color: #16a34a;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

.captcha-slider {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
    z-index: 10;
}

.captcha-slider:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 3px -1px rgba(0, 0, 0, 0.12);
}

.captcha-slider:active {
    cursor: grabbing;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.captcha-slider svg {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.captcha-slider.verified {
    background: #ffffff;
    border-color: #86efac;
    cursor: default;
}

.captcha-slider.verified svg {
    opacity: 1;
}

.captcha-slider.verified svg path {
    stroke: #16a34a;
}

.submit-button {
    background: #111827;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-button:hover:not(:disabled) {
    background: #1f2937;
}

.submit-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #9ca3af;
}

.submit-button:disabled:hover {
    background: #9ca3af;
}
