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

:root {
    /* Colors - HSL format */
    --background: 0 0% 100%;
    --foreground: 215 25% 27%;
    --card: 0 0% 100%;
    --card-foreground: 215 25% 27%;
    --primary: 213 94% 68%;
    --primary-foreground: 0 0% 100%;
    --secondary: 220 13% 91%;
    --secondary-foreground: 215 25% 27%;
    --muted: 220 13% 91%;
    --muted-foreground: 215 20% 65%;
    --accent: 217 91% 60%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 213 94% 68%;
    
    /* Custom design tokens for NIS2 landing */
    --cyber-blue: 213 94% 68%;
    --cyber-dark: 215 25% 27%;
    --cyber-light: 220 13% 91%;
    --success-green: 142 76% 36%;
    --warning-orange: 25 95% 53%;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(213 94% 68%) 0%, hsl(217 91% 60%) 100%);
    --gradient-section: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 13% 97%) 100%);
    
    /* Shadows */
    --shadow-cyber: 0 10px 30px -10px hsl(213 94% 68% / 0.3);
    --shadow-card: 0 4px 6px -1px hsl(215 25% 27% / 0.1);
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .logo {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-by {
    font-size: var(--font-size-sm);
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

.logo-image {
    height: 1.75rem;
    width: auto;
}

.logo-link {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: hsl(var(--primary));
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.powered-text {
    font-size: var(--font-size-xs);
    color: hsl(var(--muted-foreground));
    font-weight: 400;
}

.powered-logo {
    height: 1.25rem;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--foreground));
}

.cta-button {
    background: var(--gradient-hero);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-cyber);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 15px 35px -10px hsl(213 94% 68% / 0.4);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    margin: 4px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--foreground));
}

.mobile-cta-button {
    background: var(--gradient-hero);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-cyber);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    z-index: 3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
}

.trust-badge {
    position: absolute;
    top: 6rem;
    right: 1rem;
    z-index: 20;
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-cyber);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px hsl(213 94% 68% / 0.4);
    border-color: hsl(var(--cyber-blue));
    background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
    .trust-badge {
        right: 2rem;
    }
}

.trust-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--success-green));
}

.trust-number {
    font-weight: 700;
    color: hsl(var(--cyber-dark));
}

.trust-text {
    font-size: var(--font-size-sm);
    color: hsl(var(--muted-foreground));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background-color: hsl(var(--background) / 0.9);
    color: hsl(var(--cyber-dark));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-6xl);
    }
}

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

.hero-title-accent {
    display: block;
    background: linear-gradient(to right, white, #bfdbfe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-country {
    display: block;
    font-size: var(--font-size-2xl);
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .hero-title-country {
        font-size: var(--font-size-3xl);
    }
}

@media (min-width: 1024px) {
    .hero-title-country {
        font-size: var(--font-size-4xl);
    }
}

.hero-description {
    font-size: var(--font-size-xl);
    color: #bfdbfe;
    max-width: 32rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: var(--font-size-2xl);
    }
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4ade80;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        align-items: start;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: hsl(var(--primary));
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-cyber);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f9ff;
    box-shadow: 0 15px 35px -10px hsl(213 94% 68% / 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 1px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: hsl(var(--background) / 0.1);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.trust-indicators {
    color: #bfdbfe;
    font-size: var(--font-size-sm);
}

.trust-indicators p {
    margin-bottom: 0.5rem;
}

.hero-stats {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-stats {
        display: flex;
    }
}

.stats-card {
    background-color: hsl(var(--background) / 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.stats-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #4ade80;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: #bfdbfe;
}

.recognition-card {
    background-color: hsl(var(--background) / 0.05);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.recognition-card p {
    font-size: var(--font-size-sm);
    color: #bfdbfe;
    text-align: center;
}

.recognition-card strong {
    color: white;
}

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

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

.section-description {
    font-size: var(--font-size-xl);
    color: hsl(var(--muted-foreground));
    max-width: 64rem;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.text-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
}

.stat-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: hsl(var(--muted-foreground));
}

.explanation-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: left;
    max-width: 64rem;
    margin: 0 auto;
}

.explanation-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.title-icon {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.changes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .changes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.change-item h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.change-item ul {
    list-style: none;
    color: hsl(var(--muted-foreground));
}

.change-item li {
    margin-bottom: 0.25rem;
}

.important-note {
    padding: 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 0.5rem;
    border-left: 4px solid hsl(var(--primary));
}

.important-note p {
    color: hsl(var(--foreground));
}

/* Obligations Section */
.obligations-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.obligations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .obligations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.obligation-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
}

.obligation-card.immediate {
    border-left: 4px solid hsl(var(--warning-orange));
}

.obligation-card.implementation {
    border-left: 4px solid hsl(var(--primary));
}

.obligation-card.continuous {
    border-left: 4px solid hsl(var(--success-green));
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.immediate-badge {
    background-color: hsl(var(--warning-orange) / 0.1);
    color: hsl(var(--warning-orange));
}

.implementation-badge {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.continuous-badge {
    background-color: hsl(var(--success-green) / 0.1);
    color: hsl(var(--success-green));
}

.obligation-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

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

.obligation-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--success-green));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.obligation-list span {
    color: hsl(var(--muted-foreground));
    font-size: var(--font-size-sm);
}

.penalties-card {
    background-color: hsl(var(--destructive) / 0.05);
    border: 1px solid hsl(var(--destructive) / 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
}

.penalties-content {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.penalties-icon {
    flex-shrink: 0;
}

.penalties-icon svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--destructive));
}

.penalties-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.penalties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .penalties-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.penalty-item h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.penalty-item p {
    color: hsl(var(--muted-foreground));
}

.penalty-note {
    font-size: var(--font-size-sm);
    color: hsl(var(--muted-foreground));
}

.section-cta {
    text-align: center;
}

.cta-note {
    font-size: var(--font-size-sm);
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px -10px hsl(215 25% 27% / 0.2);
    transform: translateY(-2px);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.service-badge.free {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.service-badge.recommended {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.service-badge.enterprise {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
    padding-right: 4rem;
}

.service-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-features span {
    font-size: var(--font-size-sm);
    color: hsl(var(--muted-foreground));
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn.primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.service-btn.primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.service-btn.outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.service-btn.outline:hover {
    background-color: hsl(var(--secondary));
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.faq-question {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.faq-answer {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: hsl(var(--foreground));
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.contact-item a {
    color: hsl(var(--primary));
    text-decoration: none;
}

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

.cta-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.cta-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.cta-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: hsl(var(--cyber-dark));
    color: white;
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: 1;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logo {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.footer-brand-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-by {
    font-size: var(--font-size-sm);
    color: #94a3b8;
    font-weight: 500;
}

.footer-logo-link {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo-link:hover {
    color: hsl(var(--primary));
}

.footer-powered-section {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.footer-powered-text {
    font-size: var(--font-size-xs);
    color: #94a3b8;
    font-weight: 400;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: #94a3b8;
    text-decoration: none;
}

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

.contact-text {
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 1rem;
}

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

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright {
    color: #94a3b8;
    font-size: var(--font-size-sm);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.legal-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: var(--font-size-sm);
}

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

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-sm);
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero {
        min-height: 50vh;
        max-height: 60vh;
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-description {
        font-size: var(--font-size-lg);
    }
    
    .trust-badge {
        top: 5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-description {
        font-size: var(--font-size-lg);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* Animation for hover effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.stat-card,
.obligation-card {
    animation: fadeInUp 0.6s ease-out;
}