/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
/* Default (Dark Theme) Variables */
:root {
    --color-primary: #e71e28;      /* Safety/Tactical Orange */
    --color-primary-rgb: 231, 30, 40;
    --color-primary-hover: #c61a22;
    --color-secondary: #00e5ff;    /* Cyan Highlight */
    --color-success: #10b981;
    --color-error: #f43f5e;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', var(--font-primary);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Dynamic Colors (Dark Mode Default) */
    --color-bg: #060913;
    --color-bg-alt: #0d1222;
    --color-surface: rgba(20, 27, 47, 0.6);
    --color-surface-hover: rgba(29, 39, 68, 0.85);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-focus: rgba(231, 30, 40, 0.4);
    --color-text-main: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-body-gradient: radial-gradient(circle at 50% 0%, #151e36 0%, #060913 60%);
    --color-accent-dim: rgba(231, 30, 40, 0.05);
    --color-input-bg: rgba(255, 255, 255, 0.02);
    --color-modal-bg: rgba(4, 7, 15, 0.7);
    --color-footer-bg: #04060d;
    --color-nav-bg: rgba(6, 9, 19, 0.85);
    --color-shadow-base: rgba(0, 0, 0, 0.5);
    --hero-gradient: linear-gradient(to bottom, rgba(6, 9, 19, 0.85), rgba(6, 9, 19, 0.95));

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px var(--color-shadow-base);
    --shadow-md: 0 8px 24px var(--color-shadow-base);
    --shadow-lg: 0 16px 40px var(--color-shadow-base);
    --shadow-glow: 0 0 20px rgba(231, 30, 40, 0.15);
}

/* Light Theme Variables Override */
html[data-theme="light"] {
    --color-bg: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-surface: rgba(255, 255, 255, 0.75);
    --color-surface-hover: rgba(255, 255, 255, 0.95);
    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-focus: rgba(231, 30, 40, 0.5);
    --color-text-main: #0f172a;
    --color-text-muted: #475569;
    --color-body-gradient: radial-gradient(circle at 50% 0%, #e2e8f0 0%, #f8fafc 60%);
    --color-accent-dim: rgba(231, 30, 40, 0.08);
    --color-input-bg: rgba(15, 23, 42, 0.03);
    --color-modal-bg: rgba(241, 245, 249, 0.8);
    --color-footer-bg: #e2e8f0;
    --color-nav-bg: rgba(248, 250, 252, 0.85);
    --color-shadow-base: rgba(15, 23, 42, 0.08);
    --hero-gradient: linear-gradient(to bottom, rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.95));
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-body-gradient);
    transition: background var(--transition-normal), color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), #ff4d5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(231, 30, 40, 0.12);
    border: 1px solid rgba(231, 30, 40, 0.3);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

section {
    padding: 7rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   INTERACTIVE GLASSMORPHISM
   ========================================================================== */
.glass {
    background: var(--color-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(231, 30, 40, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 30, 40, 0.45);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    background: none;
    border: none;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.btn-text svg {
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-primary-hover);
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: var(--color-nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: var(--color-nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 70px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px var(--color-shadow-base);
}

.nav-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-btn {
    padding: 0.6rem 1.25rem;
    background: rgba(231, 30, 40, 0.1);
    border: 1px solid rgba(231, 30, 40, 0.4);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
}

.nav-btn:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(231, 30, 40, 0.25);
    border-color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    z-index: 2;
    transition: background var(--transition-normal);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--color-text-main), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.philosophy-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(231, 30, 40, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.philosophy-icon {
    color: var(--color-primary);
    margin-top: 2px;
}

.philosophy-box h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.philosophy-box p {
    color: var(--color-text-main);
    font-style: italic;
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
    height: 450px;
}

.image-wrapper-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-img {
    position: absolute;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-normal);
}

.stack-img.main-img {
    top: 0;
    left: 0;
    width: 85%;
    height: 80%;
    z-index: 2;
}

.stack-img.overlay-img {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
    border-color: var(--color-primary);
}

.image-wrapper-stack:hover .main-img {
    transform: translate(-10px, -10px);
}

.image-wrapper-stack:hover .overlay-img {
    transform: translate(10px, 10px);
}

/* ==========================================================================
   PROGRAMS / CURRICULA
   ========================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(231, 30, 40, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.program-card:hover .card-glow {
    opacity: 1;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 30, 40, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 30, 40, 0.35);
    background: var(--color-surface-hover);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.program-card:hover::before {
    opacity: 1;
}

.program-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(231, 30, 40, 0.08);
    border: 1px solid rgba(231, 30, 40, 0.25);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.program-card:hover .program-icon-wrapper {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(231, 30, 40, 0.3);
}

.program-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.program-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.program-card .btn-text {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   THREAT ASSESSMENT WIDGET
   ========================================================================== */
.assessment-section {
    background: radial-gradient(circle at 10% 80%, rgba(231, 30, 40, 0.04), transparent 50%), var(--color-bg);
}

.assessment-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.assessment-info {
    padding: 3.5rem;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assessment-desc {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.steps-progress {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.step.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(231, 30, 40, 0.3);
}

.step.completed {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: #fff;
}

.assessment-form-container {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.assessment-step {
    display: none;
}

.assessment-step.active {
    display: block;
    animation: slideIn 0.4s ease forwards;
}

.assessment-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.assessment-step > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.option-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.option-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.option-card input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transform: scale(0);
    transition: var(--transition-fast);
}

.option-card input[type="radio"]:checked {
    border-color: var(--color-primary);
}

.option-card input[type="radio"]:checked::before {
    transform: scale(1);
}

.option-card:has(input[type="radio"]:checked) {
    background: rgba(231, 30, 40, 0.04);
    border-color: rgba(231, 30, 40, 0.25);
}

.option-content {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.option-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.btn-group-nav {
    display: flex;
    gap: 1rem;
}

/* Assessment Results */
.result-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.risk-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.risk-badge.high {
    background: rgba(244, 63, 94, 0.15);
    color: var(--color-error);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.risk-badge.medium {
    background: rgba(231, 30, 40, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(231, 30, 40, 0.3);
}

.risk-badge.low {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.result-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.result-box > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.suggested-courses {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.suggested-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.suggested-item:hover {
    border-color: var(--color-primary);
    background: rgba(231, 30, 40, 0.05);
}

.suggested-item span:not(.suggested-item-arrow) {
    color: var(--color-text);
}

.suggested-item-arrow {
    margin-left: auto;
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* ==========================================================================
   WHY CHOOSE CTA (ACCORDION)
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.benefits-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all var(--transition-normal);
}

.accordion-item.active {
    border-color: rgba(231, 30, 40, 0.25);
    background: rgba(231, 30, 40, 0.02);
}

.accordion-item.active .accordion-header {
    color: var(--color-text-main);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-primary-hover);
}

.accordion-item.active .accordion-body {
    padding-bottom: 1.5rem;
    max-height: 200px; /* arbitrary height to slide down */
}

/* ==========================================================================
   TRAINING OPERATIONS GALLERY
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(5, 8, 17, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   CONTACT FORM / RFP INQUIRY
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.contact-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(231, 30, 40, 0.08);
    border: 1px solid rgba(231, 30, 40, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h5 {
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 0.15rem;
}

.contact-method p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-method p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-method p a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-input-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background: var(--color-surface);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(231, 30, 40, 0.15);
}

.form-group select option {
    background-color: var(--color-bg-alt);
    color: var(--color-text-main);
}

/* ==========================================================================
   CF7 FORM GRID (cta-form-grid classes)
   ========================================================================== */
.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cta-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-form-field.cta-full {
    grid-column: 1 / -1;
}

.cta-form-field.cta-half {
    grid-column: span 1;
}

/* CF7 Conditional Fields group wrappers â€” span full width */
.cta-form-grid .wpcf7-cf-conditions,
.cta-form-grid .wpcf7cf-group,
.cta-form-grid [class*="group-"],
.cta-form-grid > [data-class*="group"],
.cta-form-grid .wpcf7-cf-group {
    grid-column: 1 / -1;
}

/* Style the labels */
.cta-form-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Style inputs, selects, textareas inside cta-form-field */
.cta-form-field input,
.cta-form-field select,
.cta-form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-input-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.cta-form-field input::placeholder,
.cta-form-field textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.cta-form-field input:focus,
.cta-form-field select:focus,
.cta-form-field textarea:focus {
    background: var(--color-surface);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(231, 30, 40, 0.15);
    outline: none;
}

.cta-form-field select option {
    background-color: var(--color-bg-alt);
    color: var(--color-text-main);
}

/* Neutralise CF7 wrapper elements that break layout */
.cta-form-grid br { display: none; }

.cta-form-grid p {
    margin: 0;
    padding: 0;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Keep submit button full-width */
.cta-form-field .btn-block {
    width: 100%;
}

/* SecureHER field badge */
.secureher-field-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-right: 0.4rem;
    vertical-align: middle;
}

/* CF7 validation error styling */
.cta-form-field .wpcf7-not-valid-tip {
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 0.25rem;
}

.cta-form-field .wpcf7-not-valid {
    border-color: var(--color-error) !important;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2) !important;
}

.cta-form-grid .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

.cta-form-grid .wpcf7-mail-sent-ok {
    border: 2px solid var(--color-success);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.cta-form-grid .wpcf7-mail-sent-ng,
.cta-form-grid .wpcf7-spam-blocked,
.cta-form-grid .wpcf7-validation-errors {
    border: 2px solid var(--color-error);
    background: rgba(244, 63, 94, 0.1);
    color: var(--color-error);
}

.contact-form-wrapper form {
    transition: opacity var(--transition-normal);
}

.contact-form-wrapper.submitted form {
    opacity: 0;
    pointer-events: none;
}

.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.contact-form-wrapper.submitted .success-message {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--color-success);
    border-radius: 50%;
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 320px;
}

/* ==========================================================================
   MODAL FOR COURSE DETAILS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    width: 90%;
    max-width: 680px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 30, 40, 0.6) rgba(15, 23, 42, 0.5);
}

.modal-card::-webkit-scrollbar {
    width: 6px;
}

.modal-card::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 0 16px 16px 0;
    margin: 12px 0;
}

.modal-card::-webkit-scrollbar-thumb {
    background: rgba(231, 30, 40, 0.6);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 30, 40, 0.95);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-muted);
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: #fff;
}

.modal-body-content {
    padding: 3.5rem;
}

.modal-body-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.modal-body-content .modal-course-badge {
    margin-bottom: 1.5rem;
}

.modal-body-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-body-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.modal-body-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.modal-body-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    font-size: 1rem;
}

.modal-body-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--color-footer-bg);
    padding: 5rem 0 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-container {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links h4 {
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    align-self: flex-start;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & SCROLLBAR
   ========================================================================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 30, 40, 0.6) #0d1222;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0d1222;
}

::-webkit-scrollbar-thumb {
    background: rgba(231, 30, 40, 0.4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 30, 40, 0.85);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .about-grid, .benefits-grid, .contact-container {
        gap: 3rem;
    }
    .about-visual {
        height: 380px;
    }
}

@media (max-width: 900px) {
    section {
        padding: 5rem 0;
    }
    .about-grid, .benefits-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    .about-visual {
        width: 100%;
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }
    .benefits-visual {
        display: none;
    }
    .assessment-card {
        grid-template-columns: 1fr;
    }
    .assessment-info {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 2.5rem;
    }
    .steps-progress {
        margin-top: 1.5rem;
    }
    .assessment-form-container {
        padding: 2.5rem;
        min-height: auto;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--color-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 3rem 0;
        gap: 2.5rem;
        transition: left var(--transition-normal);
        border-top: 1px solid var(--color-border);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ==========================================================================
   THEME TOGGLE & ANTI-SPAM ADDITIONAL STYLES
   ========================================================================== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: 1rem;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: var(--color-primary);
    transform: scale(1.05) rotate(15deg);
    color: var(--color-primary);
}

html[data-theme="light"] {
    --color-text: #172033;
    --color-text-muted: #526078;
    --color-border: rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] {
    --color-text: #f8fafc;
    --color-text-muted: #a9b5c8;
    --color-border: rgba(148, 163, 184, 0.2);
}

html[data-theme="light"] .option-title,
html[data-theme="light"] .suggested-item,
html[data-theme="light"] .suggested-item span:not(.suggested-item-arrow) {
    color: #172033 !important;
}

html[data-theme="dark"] .option-title,
html[data-theme="dark"] .suggested-item,
html[data-theme="dark"] .suggested-item span:not(.suggested-item-arrow) {
    color: #f8fafc !important;
}


html[data-theme="light"] .theme-toggle .sun-icon { display: none; }
html[data-theme="dark"] .theme-toggle .moon-icon { display: none; }
@media (prefers-color-scheme: light) {
    html:not([data-theme]) .theme-toggle .sun-icon { display: none; }
}
@media (prefers-color-scheme: dark) {
    html:not([data-theme]) .theme-toggle .moon-icon { display: none; }
}




/* ==========================================================================
   SECUREHER PARTNER PROGRAMME — CARD ACCENT STYLES
   Uses a muted rose/mauve (#b85c72) so the card is visually distinct
   without overpowering the site's primary red (#e71e28) palette.
   ========================================================================== */
:root {
    --secureher-rose:     #b85c72;
    --secureher-rose-rgb: 184, 92, 114;
    --secureher-rose-dim: rgba(184, 92, 114, 0.12);
    --secureher-rose-glow: rgba(184, 92, 114, 0.18);
}

/* Card border tint on hover */
.secureher-card {
    border-color: rgba(var(--secureher-rose-rgb), 0.15) !important;
}
.secureher-card:hover {
    border-color: rgba(var(--secureher-rose-rgb), 0.35) !important;
    box-shadow: 0 8px 32px rgba(var(--secureher-rose-rgb), 0.12),
                0 0 0 1px rgba(var(--secureher-rose-rgb), 0.2);
}

/* Radial glow follows mouse just like existing cards,
   but in rose instead of red */
.secureher-card .secureher-glow {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        var(--secureher-rose-glow),
        transparent 40%
    );
}

/* Icon wrapper accent */
.secureher-icon {
    background: var(--secureher-rose-dim) !important;
    border-color: rgba(var(--secureher-rose-rgb), 0.25) !important;
    color: var(--secureher-rose) !important;
}
.secureher-card:hover .secureher-icon {
    background: rgba(var(--secureher-rose-rgb), 0.2) !important;
    box-shadow: 0 0 18px rgba(var(--secureher-rose-rgb), 0.25) !important;
}

/* "Read Details" link colour */
.btn-text.secureher-link {
    color: var(--secureher-rose) !important;
}
.btn-text.secureher-link:hover {
    color: #d47a8f !important;
}

/* Small "PARTNER PROGRAMME" pill badge */
.secureher-partner-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secureher-rose);
    background: var(--secureher-rose-dim);
    border: 1px solid rgba(var(--secureher-rose-rgb), 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

/* Light-mode adjustments */
html[data-theme="light"] .secureher-card {
    border-color: rgba(var(--secureher-rose-rgb), 0.2) !important;
}
html[data-theme="light"] .secureher-partner-badge {
    background: rgba(var(--secureher-rose-rgb), 0.08);
}



/* ==========================================================================
   SECUREHER CONTACT FORM — EXTRA FIELD BADGE & ANIMATION
   ========================================================================== */
.secureher-field-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(184, 92, 114, 0.10);
    border: 1px solid rgba(184, 92, 114, 0.28);
    border-radius: 4px;
    color: #b85c72;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 6px;
    vertical-align: middle;
}

.secureher-extra {
    border-left: 2px solid rgba(184, 92, 114, 0.40);
    padding-left: 1rem;
}

/* WordPress compatibility */
.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .navbar { top: 46px; } }
.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); clip-path: inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; word-wrap:normal!important; }
.wp-block-image img, .entry-content img { max-width:100%; height:auto; }
.entry-content { color: var(--text-color); }
.cta-page-content { padding: 8rem 0 4rem; min-height: 60vh; }
.cta-page-content .container { max-width: 980px; }
.cta-page-content h1 { margin-bottom: 1.5rem; }
.cta-page-content p, .cta-page-content li { line-height: 1.75; }

/* Contact Form 7 / FormLayer friendly defaults inside the design */
.contact-form-wrapper .wpcf7 form,
.contact-form-wrapper .formlayer-form,
.contact-form-wrapper form { width: 100%; }
.contact-form-wrapper .wpcf7 input,
.contact-form-wrapper .wpcf7 textarea,
.contact-form-wrapper .wpcf7 select,
.contact-form-wrapper .formlayer-form input,
.contact-form-wrapper .formlayer-form textarea,
.contact-form-wrapper .formlayer-form select { width: 100%; }
.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper button[type="submit"],
.contact-form-wrapper input[type="submit"] { cursor: pointer; }
.cta-plugin-form-note { margin-bottom: 1rem; color: var(--text-muted); font-size: .95rem; }

/* Contact form: phone is required for every programme. */
@media (min-width: 900px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Fullscreen SecureHER modal opened from /#secureher */
.secureher-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    background: rgba(12, 8, 20, .78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.secureher-modal.active {
    display: block;
}
.secureher-modal-shell {
    position: fixed;
    inset: 0;
    background: #21172f;
}
.secureher-modal-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #21172f;
}
.secureher-modal-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    color: #26003d;
    background: rgba(248, 237, 249, .94);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(20, 0, 28, .24);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.secureher-modal-close:hover {
    transform: translateY(-2px);
    color: #d0138b;
    background: #ffffff;
}
body.secureher-modal-open {
    overflow: hidden;
}
@media (max-width: 640px) {
    .secureher-modal-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 1.55rem;
    }
}
