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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Golden Retriever Morph Animation Styles */
.retriever-morph {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.retriever-morph:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.retriever-svg-morph {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.tennis-ball {
    transition: transform 0.3s ease;
    animation: tennisBallSpin 2s linear infinite;
}

@keyframes tennisBallSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.wagging-tail {
    transform-origin: 85px 48px;
}

/* Add some sparkle effects around the retriever with new color scheme */
.retriever-morph::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 4px;
    height: 4px;
    background: #4A90E2;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 6px #4A90E2;
}

.retriever-morph::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 3px;
    height: 3px;
    background: #32CD32;
    border-radius: 50%;
    animation: sparkle 2.5s ease-in-out infinite;
    animation-delay: 1s;
    box-shadow: 0 0 4px #32CD32;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

p {
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-ghost {
    background: transparent;
    color: #666;
    border: 2px solid #e5e5e5;
}

.btn-ghost:hover {
    border-color: #667eea;
    color: #667eea;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shield-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

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

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 40px;
}

.trust-text {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 16px;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.protection-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.shield-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.shield-pulse {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.shield-rings {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: pulse-ring 2s infinite 1s;
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.data-points {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.compliance-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #ffffff;
}

.steps-container {
    display: grid;
    gap: 80px;
}

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

.step:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.step:nth-child(even) .step-visual {
    order: 2;
}

.step:nth-child(even) .step-content {
    order: 1;
    text-align: right;
}

.step-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.2);
    margin-bottom: 16px;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Code Animation */
.code-animation {
    width: 100%;
    max-width: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.code-block {
    background: #2d2d2d;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #404040;
}

.code-line {
    font-size: 14px;
    line-height: 1.4;
}

.code-tag {
    color: #ff6b6b;
}

.code-attr {
    color: #4ecdc4;
}

.code-string {
    color: #ffe66d;
}

/* Scanner Animation */
.scanner-container {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    border-radius: 16px;
    border: 2px solid #667eea;
    overflow: hidden;
}

.scanner-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #667eea, transparent);
    transform-origin: bottom;
    animation: radar-sweep 3s linear infinite;
}

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

.scanner-dots {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    top: 30%;
    left: 60%;
    animation: scanner-ping 2s infinite;
}

.scanner-dots::before,
.scanner-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
}

.scanner-dots::before {
    top: 40px;
    left: -20px;
    animation: scanner-ping 2s infinite 0.5s;
}

.scanner-dots::after {
    top: -20px;
    left: 30px;
    animation: scanner-ping 2s infinite 1s;
}

@keyframes scanner-ping {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Website Mockup */
.website-mockup {
    position: relative;
    width: 280px;
    height: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.website-header {
    height: 40px;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.website-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b6b;
    box-shadow: 16px 0 #ffe66d, 32px 0 #4ecdc4;
}

.website-content {
    padding: 16px;
    height: calc(100% - 40px);
    position: relative;
}

.website-content::before,
.website-content::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
}

.website-content::before {
    top: 16px;
    right: 60px;
}

.website-content::after {
    top: 40px;
    right: 100px;
}

.protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: protection-appear 2s ease-out;
}

@keyframes protection-appear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.shield-icon-large {
    font-size: 48px;
    margin-bottom: 8px;
    animation: shield-glow 2s infinite alternate;
}

@keyframes shield-glow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

.protection-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: #ffffff;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.demo-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.demo-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-check {
    color: #10b981;
    font-weight: 600;
}

/* Compliance Dashboard */
.compliance-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 32px;
    max-width: 400px;
}

.dashboard-header {
    margin-bottom: 32px;
    text-align: center;
}

.dashboard-header h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.compliance-score-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.score-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #10b981 0deg 353deg, #e5e5e5 353deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: score-fill 2s ease-out;
}

@keyframes score-fill {
    0% { background: conic-gradient(from 0deg, #10b981 0deg 0deg, #e5e5e5 0deg 360deg); }
    100% { background: conic-gradient(from 0deg, #10b981 0deg 353deg, #e5e5e5 353deg 360deg); }
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.score-label {
    font-size: 12px;
    color: #666;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 16px 0;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-right: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-left: 4px;
}

.pricing-description {
    color: #666;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #666;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

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

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #666;
}

.about-certifications h4 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cert-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Globe Animation */
.team-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.globe-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.globe {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

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

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.data-nodes {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: orbit-nodes 12s linear infinite;
}

@keyframes orbit-nodes {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-guarantee {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .brand-text {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Frameworks Page Styles */
.frameworks-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.frameworks-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.frameworks-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.frameworks-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.frameworks-section {
    padding: 80px 0;
}

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

.framework-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

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

.framework-card.healthcare {
    border-left-color: #10b981;
}

.framework-card.finance {
    border-left-color: #f59e0b;
}

.framework-card.corporate {
    border-left-color: #8b5cf6;
}

.framework-card.accessibility {
    border-left-color: #06b6d4;
}

.framework-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.framework-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.framework-info {
    flex: 1;
}

.framework-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.framework-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.framework-location {
    font-size: 0.8rem;
    color: #999;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.framework-features {
    list-style: none;
    margin-bottom: 24px;
}

.framework-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.framework-features li:last-child {
    border-bottom: none;
}

.framework-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.framework-penalty {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid #dc2626;
}

/* Industry Compliance Section */
.industry-compliance {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

/* Accessibility Section */
.accessibility-section {
    padding: 80px 0;
    background: #ffffff;
}

.accessibility-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.accessibility-tabs {
    margin-top: 24px;
}

.tab-nav {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    background: none;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.accessibility-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.accessibility-stats {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
}

.accessibility-stats h4 {
    color: white;
    margin-bottom: 24px;
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accessibility-tools {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
}

.accessibility-tools h4 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.tool-list {
    list-style: none;
}

.tool-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.check {
    color: #10b981;
    font-weight: 600;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

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

.industry-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.industry-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.industry-frameworks {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.industry-frameworks li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: #667eea;
    font-weight: 500;
    font-size: 0.9rem;
}

.industry-frameworks li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
}

.industry-description {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .demo-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step:nth-child(even) .step-content {
        text-align: center;
        order: 2;
    }
    
    .step:nth-child(even) .step-visual {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations for scroll-triggered elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    transition-delay: var(--delay);
}