/* 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: 70vh;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

.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;
    width: 100%;
    max-width: 100%;
}

@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: 1.5rem 0;
}

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

/* Hero section specific button styling */
.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: hsl(var(--primary-foreground));
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

.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: hsl(var(--background));
    color: hsl(var(--cyber-blue));
    padding: 1rem 2rem;
    border: 2px solid hsl(var(--cyber-blue));
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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 ease;
}

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

.btn-secondary:hover {
    background-color: hsl(var(--cyber-blue));
    color: hsl(var(--primary-foreground));
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyber);
}

.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: 60vh;
        max-height: none;
        padding-top: 5.5rem;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-description {
        font-size: var(--font-size-lg);
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin: 1rem 0;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-sm);
    }
    
    .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;
}

/* Requirements Section - Additional styles */
.requirements-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

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

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

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

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

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

.requirement-card .card-icon {
    margin-bottom: 1rem;
}

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

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

.requirement-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.benefits-section {
    background-color: hsl(var(--primary) / 0.05);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 3rem;
}

.benefits-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

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

.benefits-list span {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Compliance Calendar Styles */
.compliance-calendar {
    margin: 3rem 0;
    padding: 2rem 0;
}

.calendar-container {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border: 2px solid hsl(var(--cyber-blue));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px -5px hsl(var(--cyber-blue) / 0.15);
}

.calendar-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: hsl(var(--cyber-blue));
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--cyber-blue));
}

.table-container {
    overflow-x: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px -3px hsl(var(--foreground) / 0.1);
}

.compliance-table {
    width: 100%;
    background: hsl(var(--background));
    border-radius: 0.75rem;
    overflow: hidden;
    font-size: var(--font-size-sm);
}

.compliance-table thead tr {
    background: linear-gradient(135deg, hsl(var(--cyber-blue)) 0%, hsl(var(--accent)) 100%);
    color: hsl(var(--primary-foreground));
}

.compliance-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    font-size: var(--font-size-base);
}

.compliance-table tbody tr {
    border-bottom: 1px solid hsl(var(--border));
    transition: background-color 0.2s ease;
}

.compliance-table tbody tr:hover {
    background: hsl(var(--muted) / 0.5);
}

.compliance-table tbody tr:last-child {
    border-bottom: none;
}

.compliance-table td {
    padding: 1rem;
    vertical-align: middle;
}

.urgent-term {
    color: #dc2626;
    font-weight: 600;
}

.priority-term {
    color: #ea580c;
    font-weight: 600;
}

.medium-term {
    color: #ca8a04;
    font-weight: 600;
}

.long-term {
    color: #16a34a;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.urgent {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.priority {
    background: #fed7aa;
    color: #9a3412;
}

.status-badge.medium {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.planning {
    background: #dcfce7;
    color: #166534;
}

.status-badge.continuous {
    background: #e0e7ff;
    color: #3730a3;
}

.warning-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
    border-radius: 0.75rem;
    text-align: center;
}

.warning-notice p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    color: #991b1b;
    font-weight: 500;
}

.warning-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #dc2626;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .calendar-title {
        font-size: var(--font-size-xl);
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .compliance-table {
        font-size: var(--font-size-xs);
    }
    
    .compliance-table th,
    .compliance-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .warning-notice p {
        flex-direction: column;
        text-align: center;
    }
}

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

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px -5px hsl(var(--cyber-blue) / 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: hsl(var(--foreground));
    cursor: pointer;
    border-bottom: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: hsl(var(--cyber-blue));
    background: hsl(var(--muted) / 0.3);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(var(--cyber-blue));
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--cyber-blue));
    flex-shrink: 0;
}

.faq-answer {
    padding: 2rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInAnswer 0.3s ease-in-out forwards;
}

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

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.faq-cta {
    background: linear-gradient(135deg, hsl(var(--cyber-blue)) 0%, hsl(var(--accent)) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: hsl(var(--primary-foreground));
}

.faq-cta-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--primary-foreground));
}

.faq-cta-description {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.faq-cta .btn-primary {
    background: hsl(var(--background));
    color: hsl(var(--cyber-blue));
    border: 2px solid hsl(var(--background));
}

.faq-cta .btn-primary:hover {
    background: hsl(var(--muted));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

.faq-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: hsl(var(--primary-foreground));
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.faq-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .faq-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-base);
    }
    
    .faq-question::after {
        right: 1.5rem;
    }
    
    .faq-answer {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta-title {
        font-size: var(--font-size-xl);
    }
}

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

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

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

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

@media (min-width: 1024px) {
    .help-grid {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
}

.step-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.step-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.expertise-card {
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    height: fit-content;
}

.expertise-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.expertise-list li:last-child {
    margin-bottom: 0;
}

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

.expertise-list span {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Enhanced button styling for help section */
.help-buttons .btn-primary {
    background: var(--gradient-hero);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px -3px hsl(var(--cyber-blue) / 0.4);
}

.help-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px hsl(var(--cyber-blue) / 0.5);
}

.help-buttons .btn-secondary {
    background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--muted)) 100%);
    color: hsl(var(--foreground));
    border: 2px solid hsl(var(--border));
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px -2px hsl(var(--foreground) / 0.1);
}

.help-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, hsl(var(--cyber-blue)) 0%, hsl(var(--accent)) 100%);
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--cyber-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px hsl(var(--cyber-blue) / 0.3);
}

@media (min-width: 640px) {
    .help-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}