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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #282829;
    background-color: #f1f2f6;
    padding-top: 80px; /* Account for fixed header */
}

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-link {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.solution-brief-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: #00d4ff;
    position: relative;
    overflow: hidden;
}

.solution-brief-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.solution-brief-btn:hover::before {
    left: 100%;
}

.solution-brief-btn:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.header-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.header-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.header-demo-btn:hover::before {
    left: 100%;
}

.header-demo-btn:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #00d4ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero {
    background: url('assets/electric.jpeg') center right/cover no-repeat;
    background-color: #1a1a3a; /* Fallback color */
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

.hero::after {
    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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.hero-content-left {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 10;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px; /* Slight offset to center the play icon visually */
}

.video-overlay p {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    background: #000;
    transition: opacity 0.3s ease;
}

/* Add a subtle loading state */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container.loading::before {
    opacity: 1;
}

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

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    max-width: 1200px;
    max-height: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

.video-modal-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out;
    letter-spacing: -2px;
}

.hero h1 .grid-text {
    color: #00d4ff; /* Bright cyan/electric blue */
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero h1 .vizion-text {
    color: #2c2c2c; /* Dark charcoal gray */
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.3s both;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #5e5658;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-cta {
    margin-top: 50px;
    animation: slideInUp 1s ease-out 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 60px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00b8e6 0%, #00d4ff 100%);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-icon {
    transform: translateX(4px);
}

/* Floating elements */
.hero-floating {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-floating:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-floating:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Main Content */
.main {
    padding: 80px 0;
}


/* Benefits Section */
.benefits-section {
    margin-bottom: 80px;
}

.benefits-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #282829;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(12, 34, 198, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(12, 34, 198, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #ff0099 50%, #7b1fa2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(12, 34, 198, 0.15);
    border-color: rgba(12, 34, 198, 0.2);
}

.benefit-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0099 100%);
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #ff0099 0%, #ff4da9 100%);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #7b1fa2 0%, #ff0099 100%);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #ff4da9 0%, #ce42d7 100%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-card p {
    font-size: 18px;
    color: #5e5658;
    line-height: 1.6;
}

/* Demo Videos Section */
.demo-videos-section {
    margin-bottom: 80px;
}

.demo-videos-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #282829;
    text-align: center;
    margin-bottom: 20px;
}

.demo-videos-section .section-description {
    font-size: 18px;
    color: #5e5658;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.persona-section {
    margin-bottom: 60px;
}

.persona-section:last-child {
    margin-bottom: 0;
}

.persona-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f1f2f6 0%, #ffffff 100%);
    border-radius: 16px;
    border-left: 6px solid #00d4ff;
}

.persona-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0099 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.persona-icon svg {
    width: 32px;
    height: 32px;
}

.persona-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #282829;
    margin: 0 0 8px 0;
}

.persona-header p {
    font-size: 18px;
    color: #5e5658;
    margin: 0;
    line-height: 1.5;
}

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

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #00d4ff;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 24px;
}

.video-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #282829;
    margin: 0 0 12px 0;
}

.video-info p {
    font-size: 16px;
    color: #5e5658;
    line-height: 1.6;
    margin: 0;
}

/* Tools Section */
.tools-section {
    margin-bottom: 80px;
}

.tools-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #282829;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #5e5658;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.tool-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tool-card.available {
    border-color: #3bd491;
}

.tool-card.coming-soon {
    border-color: #5e5658;
    opacity: 0.8;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.tool-header h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282829;
    margin: 0;
    flex: 1;
}

.tool-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tool-status.available {
    background: #3bd491;
    color: white;
}

.tool-status.coming-soon {
    background: #5e5658;
    color: white;
}

.tool-card p {
    font-size: 18px;
    color: #5e5658;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: #f1f2f6;
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.tool-card .btn {
    width: 100%;
    justify-content: center;
}

.tool-card .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #5e5658;
}

.tool-card .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 16px;
    text-align: center;
}

.form-description {
    font-size: 18px;
    color: #5e5658;
    text-align: center;
    margin-bottom: 40px;
}

.compliance-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #282829;
    margin-bottom: 12px;
}

.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    background-color: white;
    color: #282829;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group select:invalid {
    border-color: #ff4da9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #00d4ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: #5e5658;
    color: white;
}

.btn-secondary:hover {
    background: #282829;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 32px;
    font-size: 20px;
    min-height: 64px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.results-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 40px;
    text-align: center;
}

/* Score Card */
.score-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #f1f2f6 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.score-circle {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0099 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.score-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

.score-description h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 16px;
}

.score-description p {
    font-size: 18px;
    color: #5e5658;
    line-height: 1.6;
}

/* Chart Container */
.chart-container {
    margin-bottom: 40px;
}

.chart-container h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 24px;
    text-align: center;
}

.chart-container canvas {
    max-width: 100%;
    height: 400px;
    width: 100%;
    display: block;
}

/* Effort Analysis */
.effort-analysis {
    margin-bottom: 40px;
}

.effort-analysis h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 24px;
    text-align: center;
}

.effort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.effort-card {
    background: linear-gradient(135deg, #f1f2f6 0%, #ffffff 100%);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.effort-card:hover {
    border-color: #3bd491;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.effort-value {
    font-size: 36px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 8px;
}

.effort-label {
    font-size: 16px;
    font-weight: 500;
    color: #5e5658;
}

/* Blind Spots */
.blind-spots {
    margin-bottom: 40px;
}

.blind-spots h3 {
    font-size: 25px;
    font-weight: 700;
    color: #282829;
    margin-bottom: 24px;
    text-align: center;
}

.blind-spots-list {
    display: grid;
    gap: 16px;
}

.blind-spot-item {
    background: linear-gradient(135deg, #ff4da9 0%, #ce42d7 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blind-spot-item::before {
    content: "⚠️";
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a3a 0%, #7b1fa2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2,
.cta-section h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

/* Start Over */
.start-over {
    text-align: center;
}

/* Footer */
.footer {
    background: #282829;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

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

.footer-logo .logo-img {
    height: 32px;
    width: auto;
}

.footer-info p {
    font-size: 16px;
    color: #f1f2f6;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* More padding for mobile due to stacked layout */
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .solution-brief-btn,
    .header-demo-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-left {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 50px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-floating {
        display: none;
    }
    
    .video-container {
        max-width: 100%;
        margin-top: 20px;
    }
    
    
    .form-section,
    .results-section {
        padding: 40px 20px;
    }
    
    .form-container h2,
    .results-container h2 {
        font-size: 32px;
    }
    
    .score-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-value {
        font-size: 36px;
    }
    
    .effort-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .benefit-card h3 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .tool-status {
        align-self: flex-start;
    }
    
    /* Demo Videos Responsive */
    .persona-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }
    
    .persona-header h3 {
        font-size: 24px;
    }
    
    .persona-header p {
        font-size: 16px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h4 {
        font-size: 18px;
    }
    
    .video-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
        min-height: 45vh;
    }
    
    .hero h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .form-section,
    .results-section {
        padding: 30px 16px;
    }
    
    .btn {
        width: 100%;
    }
    
    .video-container {
        margin-top: 16px;
    }
    
    .video-modal-content {
        width: 98%;
        height: 98%;
        max-height: 70vh;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .video-modal-close svg {
        width: 16px;
        height: 16px;
    }
}

