/* ============================================
   NIS2 Compliance Assessment Platform
   Defend.bg — Cybersecurity Services
   ============================================ */

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

:root {
    --navy: #0F1B2D;
    --navy-light: #1A2B42;
    --navy-lighter: #243B56;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-pale: #EFF6FF;
    --green: #10B981;
    --green-pale: #ECFDF5;
    --red: #EF4444;
    --red-pale: #FEF2F2;
    --amber: #F59E0B;
    --amber-pale: #FFFBEB;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.05);
    --shadow: 0 1px 3px rgba(15, 27, 45, 0.1), 0 1px 2px rgba(15, 27, 45, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 27, 45, 0.1), 0 2px 4px -1px rgba(15, 27, 45, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 27, 45, 0.1), 0 4px 6px -2px rgba(15, 27, 45, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 27, 45, 0.1), 0 10px 10px -5px rgba(15, 27, 45, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--blue-light); }

img { max-width: 100%; height: auto; }

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
}
.logo-defend { color: var(--navy); }
.logo-dot { color: var(--blue); }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--navy);
    background: var(--gray-100);
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
}
.nav-cta:hover {
    background: var(--blue-light) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-accent {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-accent:hover {
    background: #059669;
    border-color: #059669;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-300);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-block { width: 100%; }

/* --- Hero --- */
.hero {
    position: relative;
    padding: 160px 0 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

.hero-stats {
    position: relative;
    background: var(--navy);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    gap: 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 32px;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--navy-lighter);
    flex-shrink: 0;
}

/* --- Section Common --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* --- About Section --- */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.about-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.about-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-sectors {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.sectors-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sector-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--navy-lighter);
    color: var(--gray-300);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-chip:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-1px);
}

.sector-chip i {
    font-size: 12px;
    opacity: 0.8;
}

/* --- Obligations --- */
.obligations-section {
    margin-bottom: 60px;
}

.obligations-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.obligations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.obligation-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

.obligation-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.obligation-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.obligation-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.obligation-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* --- Penalties --- */
.penalties-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.penalty-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.penalty-essential {
    background: var(--red-pale);
    border: 1px solid #FECACA;
}
.penalty-important {
    background: var(--amber-pale);
    border: 1px solid #FDE68A;
}
.penalty-personal {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.penalty-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.penalty-header i {
    font-size: 18px;
}

.penalty-essential .penalty-header i { color: var(--red); }
.penalty-important .penalty-header i { color: var(--amber); }
.penalty-personal .penalty-header i { color: var(--gray-600); }

.penalty-header h4 {
    font-size: 16px;
}

.penalty-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.penalty-essential .penalty-amount { color: var(--red); }
.penalty-important .penalty-amount { color: var(--amber); }
.penalty-personal .penalty-amount { color: var(--navy); }

.penalty-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* --- Assessment Section --- */
.section-assessment {
    background: var(--bg);
}

.assessment-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 48px;
    border: 1px solid var(--gray-200);
}

/* Progress */
.wizard-progress {
    margin-bottom: 40px;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
    transition: color var(--transition);
}

.progress-step.active {
    color: var(--blue);
}

.progress-step.completed {
    color: var(--green);
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition);
}

.progress-step.active .step-dot {
    background: var(--blue);
    color: var(--white);
}

.progress-step.completed .step-dot {
    background: var(--green);
    color: var(--white);
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

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

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

.step-header h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.step-header p {
    color: var(--gray-500);
    font-size: 15px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.required { color: var(--red); }

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8.825L0.35 3.175l0.7-0.7L6 7.425l4.95-4.95 0.7 0.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.error select,
.form-group.error input {
    border-color: var(--red);
}

.error-message {
    color: var(--red);
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* Questions */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.question-item.answered-yes {
    background: var(--green-pale);
    border-color: rgba(16, 185, 129, 0.3);
}

.question-item.answered-no {
    background: var(--red-pale);
    border-color: rgba(239, 68, 68, 0.3);
}

.question-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.question-content {
    flex: 1;
}

.question-content p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.question-buttons {
    display: flex;
    gap: 8px;
}

.qbtn {
    padding: 8px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qbtn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.qbtn.selected-yes {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.qbtn.selected-no {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Contact optional note */
.contact-optional-note {
    background: var(--blue-pale);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

/* --- Results --- */
.results-loading {
    text-align: center;
    padding: 60px 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.results-loading p {
    color: var(--gray-500);
    font-size: 16px;
}

.result-score-section {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.score-ring-container {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.score-ring {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.score-ring-fill {
    fill: none;
    stroke: var(--blue);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 389.56;
    stroke-dashoffset: 389.56;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s;
}

.score-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.score-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
}

.score-percent {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    margin-top: 8px;
}

.score-meta {
    flex: 1;
}

.scope-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.scope-badge.in-scope {
    background: var(--red-pale);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.scope-badge.out-scope {
    background: var(--green-pale);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.category-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: var(--blue-pale);
    color: var(--blue);
    margin-bottom: 10px;
    margin-left: 6px;
}

.scope-reason {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.result-risk {
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.result-risk.risk-high {
    background: var(--red-pale);
    border: 1px solid #FECACA;
}

.result-risk.risk-medium {
    background: var(--amber-pale);
    border: 1px solid #FDE68A;
}

.result-risk.risk-low {
    background: var(--green-pale);
    border: 1px solid #BBF7D0;
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 6px;
}

.result-risk p {
    font-size: 14px;
    color: var(--gray-600);
    margin-left: 26px;
}

.result-gaps {
    margin-bottom: 24px;
}

.result-gaps h4 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gaps-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 14px;
    border: 1px solid var(--gray-200);
}

.gap-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--white);
    flex-shrink: 0;
}

.gap-icon.green { background: var(--green); }
.gap-icon.red { background: var(--red); }

.gap-text {
    flex: 1;
    font-weight: 500;
}

.gap-req {
    font-size: 12px;
    color: var(--gray-400);
}

.result-penalties {
    margin-bottom: 24px;
}

.result-penalties h4 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
}

.penalty-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--red-pale);
    border: 1px solid #FECACA;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 8px;
}

.penalty-info-item i {
    color: var(--red);
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* --- Services / Pricing --- */
.section-services {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 2px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--green);
    margin-top: 3px;
    font-size: 13px;
}

/* --- FAQ --- */
.section-faq {
    background: var(--bg);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.open {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question i {
    font-size: 14px;
    color: var(--gray-400);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Contact --- */
.section-contact {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: var(--navy-lighter);
    color: var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--navy-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--navy-lighter);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: var(--navy-lighter);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* --- Footer --- */
.footer {
    background: #0A1220;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--navy-lighter);
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy-lighter);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--gray-500);
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

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

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

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .obligations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .penalties-section {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open { display: flex; }

    .hero { padding-top: 120px; }
    .hero-content { padding-bottom: 48px; }

    .stats-grid {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .section { padding: 60px 0; }

    .obligations-grid {
        grid-template-columns: 1fr;
    }

    .assessment-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .progress-steps span {
        display: none;
    }

    .progress-steps {
        justify-content: space-around;
    }

    .result-score-section {
        flex-direction: column;
        text-align: center;
    }

    .result-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .question-item {
        flex-direction: column;
        gap: 8px;
    }

    .question-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .stat-number { font-size: 20px; }
    .assessment-wrapper { padding: 20px 16px; }
    .score-ring-container { width: 120px; height: 120px; }
    .score-ring { width: 120px; height: 120px; }
    .score-value { font-size: 32px; }
}
