/* =============================================================================
   ZELEZNICKI THEME — custom.css
   Kancelaria Radcy Prawnego Sebastiana Żeleźnickiego
   Production CSS for WordPress FSE Block Theme
   ============================================================================= */

/* =============================================================================
   SECTION 1: CSS VARIABLES (Design Tokens)
   ============================================================================= */
:root {
    /* Brand colors */
    --zel-navy: #1E293B;
    --zel-navy-deep: #0F172A;
    --zel-navy-mid: #334155;
    --zel-blue: #3B82F6;
    --zel-blue-hover: #2563EB;
    --zel-blue-dark: #1D4ED8;
    --zel-blue-glow: rgba(59,130,246,0.35);
    --zel-cyan: #06B6D4;
    --zel-cyan-light: #22D3EE;
    --zel-cyan-glow: rgba(6,182,212,0.25);

    /* Neutrals */
    --zel-white: #FFFFFF;
    --zel-light: #F8FAFC;
    --zel-light-alt: #F1F5F9;
    --zel-border: #E2E8F0;

    /* Text */
    --zel-text: #1E293B;
    --zel-text-mid: #475569;
    --zel-text-light: #64748B;
    --zel-text-on-dark: #CBD5E1;

    /* Accents */
    --zel-green: #10B981;
    --zel-green-glow: rgba(16,185,129,0.2);
    --zel-red: #EF4444;
    --zel-amber: #F59E0B;

    /* Shadows */
    --zel-shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --zel-shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --zel-shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --zel-shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

    /* Radii */
    --zel-radius: 14px;
    --zel-radius-lg: 20px;
    --zel-radius-xl: 28px;

    /* Transition */
    --zel-ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* WordPress compatibility — map to WP preset vars */
    --zel-accent: var(--wp--preset--color--blue, #3B82F6);
    --zel-accent-hover: var(--wp--preset--color--blue-hover, #2563EB);

    /* Legacy makieta vars for backward compat */
    --navy: var(--zel-navy);
    --navy-deep: var(--zel-navy-deep);
    --navy-mid: var(--zel-navy-mid);
    --blue: var(--zel-blue);
    --blue-hover: var(--zel-blue-hover);
    --blue-dark: var(--zel-blue-dark);
    --blue-glow: var(--zel-blue-glow);
    --cyan: var(--zel-cyan);
    --cyan-light: var(--zel-cyan-light);
    --cyan-glow: var(--zel-cyan-glow);
    --white: var(--zel-white);
    --light: var(--zel-light);
    --light-alt: var(--zel-light-alt);
    --border: var(--zel-border);
    --text: var(--zel-text);
    --text-mid: var(--zel-text-mid);
    --text-light: var(--zel-text-light);
    --text-on-dark: var(--zel-text-on-dark);
    --green: var(--zel-green);
    --green-glow: var(--zel-green-glow);
    --red: var(--zel-red);
    --amber: var(--zel-amber);
    --shadow-sm: var(--zel-shadow-sm);
    --shadow-md: var(--zel-shadow-md);
    --shadow-lg: var(--zel-shadow-lg);
    --shadow-xl: var(--zel-shadow-xl);
    --radius: var(--zel-radius);
    --radius-lg: var(--zel-radius-lg);
    --radius-xl: var(--zel-radius-xl);
    --ease: var(--zel-ease);
}

/* =============================================================================
   SECTION 2: GLOBAL RESET (minimal — WordPress has its own)
   ============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--zel-text);
    line-height: 1.7;
    overflow-x: clip;
    font-size: 16px;
    background: var(--zel-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* =============================================================================
   SECTION 3: TYPOGRAPHY HELPERS
   ============================================================================= */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 16px;
    color: var(--zel-text-light);
    line-height: 1.8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
   SECTION 4: TOP BAR
   ============================================================================= */
.top-bar {
    background: linear-gradient(90deg, var(--zel-navy-deep) 0%, var(--zel-navy) 100%);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--zel-text-on-dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--zel-cyan-light);
    font-weight: 600;
    transition: color var(--zel-ease);
}

.top-bar a:hover {
    color: var(--zel-white);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* =============================================================================
   SECTION 5: NAVBAR
   ============================================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 30px rgba(0,0,0,0.15);
}

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

/* Navbar logo image */
.navbar-logo-img {
    flex-shrink: 0;
    margin: 0;
}
.navbar-logo-img img {
    height: auto;
    max-height: 44px;
    width: auto;
}

.navbar-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--zel-white);
    letter-spacing: -0.3px;
}

.navbar-logo span {
    color: var(--zel-cyan);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-nav a {
    color: var(--zel-text-on-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--zel-ease);
    position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--zel-white);
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--zel-blue), var(--zel-cyan));
    border-radius: 2px;
}

/* WP Navigation block — styling within navbar */
.navbar .wp-block-navigation__responsive-container-open {
    color: var(--zel-white);
}
.navbar .wp-block-navigation__responsive-container-open svg {
    fill: var(--zel-white);
    stroke: var(--zel-white);
}

/* WP Navigation block — link styling */
.navbar .wp-block-navigation {
    gap: 0;
}
.navbar .wp-block-navigation a,
.navbar .wp-block-navigation-item__content {
    color: var(--zel-text-on-dark) !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: color var(--zel-ease);
}
.navbar .wp-block-navigation a:hover,
.navbar .wp-block-navigation-item__content:hover {
    color: var(--zel-white) !important;
}
.navbar .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content {
    color: var(--zel-white) !important;
}

/* ---- Buttons ---- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4F93FF 0%, var(--zel-blue) 50%, var(--zel-blue-dark) 100%);
    color: var(--zel-white);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--zel-ease);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px var(--zel-blue-glow), 0 0 20px rgba(59,130,246,0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--zel-blue-glow), 0 0 30px rgba(59,130,246,0.25);
}

/* Navbar CTA — always glowing, white text override */
.navbar .btn-cta,
.navbar-nav a.btn-cta,
.navbar-nav a.btn-cta:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #2563EB 100%);
    box-shadow: 0 0 16px rgba(96,165,250,0.5), 0 0 32px rgba(59,130,246,0.3), 0 2px 8px rgba(0,0,0,0.2);
    animation: navGlow 2.5s ease-in-out infinite;
}

.navbar .btn-cta:hover,
.navbar-nav a.btn-cta:hover {
    box-shadow: 0 0 24px rgba(96,165,250,0.6), 0 0 48px rgba(59,130,246,0.35), 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta-lg {
    padding: 15px 34px;
    font-size: 15px;
    border-radius: 12px;
}

.btn-cta-white {
    background: var(--zel-white);
    color: var(--zel-navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.btn-cta-white:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--zel-white);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--zel-ease);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}

/* Force emoji/icons in buttons to inherit text color */
.btn-cta,
.btn-outline {
    -webkit-text-fill-color: currentColor;
}

/* Phone icon in outline button — render as text (inherits white) */
.btn-outline[href^="tel"] {
    font-variant-emoji: text;
}

/* =============================================================================
   SECTION 6: HAMBURGER + MOBILE NAV + CLASSIC MENU BRIDGE
   ============================================================================= */

/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1002;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--zel-white);
    border-radius: 2px;
    transition: all var(--zel-ease);
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Classic menu bridge (wp_nav_menu() output) --- */
.zeleznicki-classic-nav {
    display: flex;
    align-items: center;
}

.zeleznicki-classic-nav--primary {
    /* Primary nav variant */
}

.zeleznicki-classic-nav__list {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.zeleznicki-classic-nav__list li {
    margin: 0;
    padding: 0;
}

.zeleznicki-classic-nav__list a {
    color: var(--zel-text-on-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--zel-ease);
    position: relative;
    text-decoration: none;
}

.zeleznicki-classic-nav__list a:hover {
    color: var(--zel-white);
}

.zeleznicki-classic-nav__list .current-menu-item > a,
.zeleznicki-classic-nav__list .current_page_item > a {
    color: var(--zel-white);
}

.zeleznicki-classic-nav__list .current-menu-item > a::after,
.zeleznicki-classic-nav__list .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--zel-blue), var(--zel-cyan));
    border-radius: 2px;
}

/* CTA item in classic nav */
.zeleznicki-classic-nav__list .menu-item--cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #2563EB 100%);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(96,165,250,0.5), 0 0 32px rgba(59,130,246,0.3), 0 2px 8px rgba(0,0,0,0.2);
    animation: navGlow 2.5s ease-in-out infinite;
}

.zeleznicki-classic-nav__list .menu-item--cta a:hover {
    color: #FFFFFF !important;
    box-shadow: 0 0 24px rgba(96,165,250,0.6), 0 0 48px rgba(59,130,246,0.35), 0 4px 12px rgba(0,0,0,0.2);
}

/* CTA fallback: last nav item if no .menu-item--cta class is set */
.zeleznicki-classic-nav__list > li:last-child > a[href*="konsultacja"],
.zeleznicki-classic-nav__list > li:last-child > a[href*="kontakt-bezplatna"],
.zeleznicki-classic-nav__list > li:last-child > a[href*="analiza"] {
    display: inline-flex;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #2563EB 100%);
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(96,165,250,0.5), 0 0 32px rgba(59,130,246,0.3), 0 2px 8px rgba(0,0,0,0.2);
    animation: navGlow 2.5s ease-in-out infinite;
}

/* Toggle button — hidden on desktop, shown on mobile */
.zeleznicki-classic-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    color: var(--zel-white);
    padding: 8px;
    background: none;
    border: none;
    z-index: 1002;
}

.zeleznicki-classic-nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--zel-white);
    border-radius: 2px;
    transition: all var(--zel-ease);
}

.zeleznicki-classic-nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.zeleznicki-classic-nav__toggle.open span:nth-child(2) {
    opacity: 0;
}

.zeleznicki-classic-nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop nav container */
.zeleznicki-classic-nav__desktop {
    display: block;
}

/* Mobile overlay nav */
.zeleznicki-classic-nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #0F172A;
    background-image: linear-gradient(160deg, #0F172A 0%, #1a2744 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 70px 24px 40px;
    overflow-y: auto;
    transition: opacity var(--zel-ease);
}

.zeleznicki-classic-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--zel-white);
    cursor: pointer;
    z-index: 10000;
    padding: 8px;
    line-height: 1;
}

.zeleznicki-classic-nav__close svg {
    fill: var(--zel-white);
    width: 28px;
    height: 28px;
}

.zeleznicki-classic-nav__overlay.open,
.zeleznicki-classic-nav__overlay.is-open {
    display: flex;
    opacity: 1;
}

.zeleznicki-classic-nav__overlay .zeleznicki-classic-nav__list {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
}

.zeleznicki-classic-nav__overlay .zeleznicki-classic-nav__list a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--zel-text-on-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.zeleznicki-classic-nav__overlay .zeleznicki-classic-nav__list a:hover {
    color: var(--zel-white);
}

.zeleznicki-classic-nav__overlay .zeleznicki-classic-nav__list .menu-item--cta a {
    margin-top: 24px;
    padding: 15px 34px;
    font-size: 15px;
    border-bottom: none;
}

/* =============================================================================
   SECTION 7: STATS BAR
   ============================================================================= */
.stats-bar,
.zel-stats-bar {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--zel-light) 0%, var(--zel-white) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-radius: var(--zel-radius);
    background: var(--zel-white);
    box-shadow: var(--zel-shadow-sm);
    transition: all var(--zel-ease);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--zel-shadow-md);
}

.stat-item strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--zel-navy) 0%, var(--zel-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-item span {
    font-size: 13px;
    color: var(--zel-text-light);
    font-weight: 500;
}

/* =============================================================================
   SECTION 8: PROCESS STEPS
   ============================================================================= */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--zel-light) 0%, var(--zel-light-alt) 50%, var(--zel-light) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
}

.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--zel-blue) 0%, var(--zel-cyan) 100%);
    color: var(--zel-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px var(--zel-blue-glow);
}

.process-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: var(--zel-text-light);
    line-height: 1.6;
}

/* =============================================================================
   SECTION 9: SOCIAL PROOF / TESTIMONIALS
   ============================================================================= */
.proof-section {
    padding: 80px 0;
}

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

.proof-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius-lg);
    padding: 32px;
    transition: all var(--zel-ease);
}

.proof-card:hover {
    border-color: var(--zel-blue);
    box-shadow: 0 8px 30px rgba(59,130,246,0.08);
    transform: translateY(-4px);
}

.proof-stars {
    color: var(--zel-amber);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.proof-card blockquote {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
}

.proof-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--zel-navy);
}

.proof-author span {
    font-weight: 400;
    color: var(--zel-text-light);
}

/* =============================================================================
   SECTION 10: CTA BAND
   ============================================================================= */
.cta-band {
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--zel-blue) 0%, var(--zel-blue-dark) 40%, #1a2744 100%);
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--zel-white);
    margin-bottom: 14px;
}

.cta-band p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-size: 17px;
}

.cta-band .btn-cta-white {
    padding: 15px 36px;
    font-size: 15px;
}

.cta-band-phone {
    display: block;
    margin-top: 18px;
    color: var(--zel-cyan-light);
    font-weight: 700;
    font-size: 16px;
}

/* =============================================================================
   SECTION 11: FAQ ACCORDION
   ============================================================================= */
.faq-section {
    padding: 88px 0;
    background: var(--zel-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--zel-ease);
}

.faq-item:hover {
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 4px 16px rgba(59,130,246,0.06);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--zel-navy);
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(6,182,212,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--zel-blue);
    font-weight: 400;
    transition: all var(--zel-ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.75;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    color: var(--zel-white);
}

/* =============================================================================
   SECTION 12: FINAL CTA (dark section with form)
   ============================================================================= */
.final-cta {
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0F172A 0%, #1a2744 50%, #1E293B 100%);
}

.final-cta .hero-orb--1 {
    width: 400px;
    height: 400px;
    top: -15%;
    right: -5%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    animation: orbMove1 12s ease-in-out infinite;
}

.final-cta .container {
    max-width: 720px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--zel-white);
    margin-bottom: 14px;
}

.final-cta > .container > p {
    color: var(--zel-text-on-dark);
    font-size: 16px;
    margin-bottom: 36px;
}

.final-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--zel-radius-lg);
    padding: 36px;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--zel-text-on-dark);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--zel-white);
    background: rgba(255,255,255,0.06);
    transition: all var(--zel-ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--zel-cyan);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-select option {
    background: var(--zel-navy);
    color: var(--zel-white);
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    font-size: 15px;
}

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--zel-text-on-dark);
    opacity: 0.7;
}

.final-phone {
    display: block;
    margin-top: 28px;
    color: var(--zel-cyan-light);
    font-weight: 700;
    font-size: 17px;
}

/* Ninja Forms in final-cta — override NF default styles */
.final-cta .nf-form-cont {
    text-align: left;
}

.final-cta .nf-form-cont .nf-field-label label {
    color: var(--zel-text-on-dark) !important;
    font-size: 13px;
    font-weight: 600;
}

.final-cta .nf-form-cont .nf-field-element input[type="text"],
.final-cta .nf-form-cont .nf-field-element input[type="email"],
.final-cta .nf-form-cont .nf-field-element input[type="tel"],
.final-cta .nf-form-cont .nf-field-element select,
.final-cta .nf-form-cont .nf-field-element textarea {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    color: var(--zel-white) !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
}

.final-cta .nf-form-cont .nf-field-element input:focus,
.final-cta .nf-form-cont .nf-field-element select:focus,
.final-cta .nf-form-cont .nf-field-element textarea:focus {
    border-color: var(--zel-cyan) !important;
    box-shadow: 0 0 0 3px rgba(6,182,212,0.15) !important;
}

/* =============================================================================
   SECTION 13: FOOTER
   ============================================================================= */
.footer,
.zel-footer {
    background: linear-gradient(180deg, var(--zel-navy-deep) 0%, #080E1A 100%);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--zel-white);
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--zel-cyan);
}

.footer-desc {
    color: var(--zel-text-on-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-okpr {
    font-size: 12px;
    color: var(--zel-text-on-dark);
    opacity: 0.6;
}

.footer h4,
.zel-footer h4,
.zel-footer .wp-block-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.footer ul,
.zel-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li,
.zel-footer ul li {
    margin-bottom: 10px;
}

.footer ul a,
.zel-footer ul a {
    color: var(--zel-text-on-dark);
    font-size: 14px;
    transition: color var(--zel-ease);
}

/* Footer phone/email — cyan */
.zel-footer a[href^="tel"],
.zel-footer .has-cyan-light-color a {
    color: var(--zel-cyan-light) !important;
    font-weight: 700;
}

.footer ul a:hover,
.zel-footer ul a:hover {
    color: var(--zel-cyan-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--zel-text-on-dark);
    font-size: 13px;
    opacity: 0.7;
}

/* =============================================================================
   SECTION 14: MOBILE STICKY CTA
   ============================================================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
}

.mobile-cta-inner {
    display: flex;
    gap: 10px;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--zel-ease);
}

.mobile-cta .mc-call {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--zel-white);
}

.mobile-cta .mc-form {
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-blue-dark));
    color: var(--zel-white);
    box-shadow: 0 2px 12px var(--zel-blue-glow);
}

/* =============================================================================
   SECTION 15: ANIMATIONS
   ============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--zel-blue-glow); }
    50% { box-shadow: 0 0 40px var(--zel-blue-glow), 0 0 60px rgba(59,130,246,0.15); }
}

@keyframes orbMove1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbMove2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes navGlow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(96,165,250,0.5), 0 0 32px rgba(59,130,246,0.3), 0 2px 8px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 0 24px rgba(96,165,250,0.65), 0 0 48px rgba(59,130,246,0.4), 0 2px 8px rgba(0,0,0,0.2);
    }
}

/* Shared orb base */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   SECTION 16: SERVICE CARDS (oferta pages)
   ============================================================================= */
.zel-services {
    padding: 80px 0;
}

.zel-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zel-service-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius-lg);
    padding: 36px 28px;
    transition: all var(--zel-ease);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.zel-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zel-blue), var(--zel-cyan));
    opacity: 0;
    transition: opacity var(--zel-ease);
}

.zel-service-card:hover {
    border-color: var(--zel-blue);
    box-shadow: 0 8px 30px rgba(59,130,246,0.08);
    transform: translateY(-6px);
}

.zel-service-card:hover::before {
    opacity: 1;
}

.zel-service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--zel-blue);
    transition: all var(--zel-ease);
}

.zel-service-card:hover .zel-service-card__icon {
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    color: var(--zel-white);
    box-shadow: 0 6px 20px var(--zel-blue-glow);
}

.zel-service-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 10px;
}

.zel-service-card__desc {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
}

.zel-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--zel-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap var(--zel-ease), color var(--zel-ease);
}

.zel-service-card__link:hover {
    color: var(--zel-blue-hover);
    gap: 10px;
}

/* =============================================================================
   SECTION 17: HERO SECTION UTILITIES
   ============================================================================= */
/* =============================================================================
   SECTION 17A: FRONT-PAGE SPECIFIC COMPONENTS
   ============================================================================= */

/* --- White bar fix: remove WordPress blockGap between ALL sections --- */
.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}

.wp-block-post-content > * + *,
.wp-block-post-content > *:first-child {
    margin-block-start: 0 !important;
}

.wp-block-group > * + * {
    margin-block-start: 0 !important;
}

/* --- Hero base (centered, single column — for WXR subpage heroes) --- */
section.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- Hero 2-column layout (ONLY when .hero-photo exists — front-page) --- */
section.hero .container:has(.hero-photo) {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(59,130,246,0.12);
    color: var(--zel-cyan-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

section.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--zel-white);
    line-height: 1.15;
    margin-bottom: 18px;
}

section.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--zel-text-on-dark);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust-item {
    font-size: 13px;
    color: var(--zel-text-on-dark);
}

.hero-trust-item strong {
    color: var(--zel-white);
    font-weight: 700;
}

/* Hero TSUE badge */
.hero-tsue {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 12px;
    font-size: 13px;
}

.hero-tsue-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--zel-amber), #D97706);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.hero-tsue-text {
    color: var(--zel-text-on-dark);
    flex: 1;
    min-width: 200px;
}

.hero-tsue-link {
    color: var(--zel-cyan-light);
    font-weight: 600;
    white-space: nowrap;
}

/* Hero photo */
.hero-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-wrapper {
    position: relative;
    width: 420px;
    height: 500px;
    margin: 0 auto;
}

.hero-photo-rim {
    display: none;
}

.hero-photo-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.hero-photo-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #0F172A 0%, transparent 100%);
    z-index: 3;
}

.hero-photo-glow {
    display: none;
}

.hero-photo-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    white-space: nowrap;
}

.hero-photo-label h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--zel-white);
    margin: 0;
}

.hero-photo-label p {
    font-size: 13px;
    color: var(--zel-text-on-dark);
    margin: 2px 0 0;
}

/* --- Hero orbs (front-page & why-section) --- */
section.hero .hero-orb--1,
.why-section .hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    animation: orbMove1 15s ease-in-out infinite;
}

section.hero .hero-orb--2,
.why-section .hero-orb--2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    animation: orbMove2 12s ease-in-out infinite;
}

section.hero .hero-orb--3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    animation: orbMove2 10s ease-in-out infinite reverse;
}

/* --- Pain section --- */
.pain-section {
    padding: 88px 0;
    background: var(--zel-white);
}

.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    background: var(--zel-white);
    transition: all var(--zel-ease);
}

.pain-card:hover {
    border-color: var(--zel-blue);
    box-shadow: var(--zel-shadow-md);
    transform: translateX(4px);
}

.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
    color: var(--zel-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.pain-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 4px;
}

.pain-card p {
    font-size: 13px;
    color: var(--zel-text-mid);
    line-height: 1.6;
}

/* --- Services section --- */
.services-section {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--zel-light) 0%, var(--zel-white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius-lg);
    overflow: hidden;
    transition: all var(--zel-ease);
}

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

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 24px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tag-cyber {
    background: rgba(239,68,68,0.06);
    color: var(--zel-red);
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--zel-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap var(--zel-ease);
}

.service-link:hover {
    gap: 10px;
}

/* Secondary services */
.services-secondary-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--zel-navy);
    text-align: center;
    margin-bottom: 24px;
}

.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-mini {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    padding: 24px;
    text-align: center;
    transition: all var(--zel-ease);
}

.service-mini:hover {
    border-color: var(--zel-blue);
    box-shadow: var(--zel-shadow-md);
    transform: translateY(-4px);
}

.service-mini-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-mini h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 6px;
}

.service-mini p {
    font-size: 13px;
    color: var(--zel-text-mid);
    line-height: 1.6;
}

.service-mini a {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--zel-blue);
}

/* --- Why section (dark) --- */
.why-section {
    padding: 88px 0;
    background: linear-gradient(160deg, #0F172A 0%, #1a2744 50%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

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

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--zel-radius);
    padding: 28px;
    transition: all var(--zel-ease);
}

.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--zel-white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--zel-text-on-dark);
    line-height: 1.7;
}

/* --- Personal section --- */
.personal-section {
    padding: 88px 0;
}

.personal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.personal-photo-wrapper {
    position: relative;
}

.personal-photo {
    border-radius: var(--zel-radius-xl);
    overflow: hidden;
    box-shadow: var(--zel-shadow-xl);
}

.personal-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.personal-photo-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

.personal-info .lead {
    font-size: 16px;
    color: var(--zel-text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

.personal-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.personal-detail {
    font-size: 14px;
    color: var(--zel-text);
    font-weight: 500;
}

.personal-detail-icon {
    color: var(--zel-blue);
    margin-right: 8px;
}

.personal-quote {
    padding: 20px 24px;
    background: var(--zel-light);
    border-left: 4px solid var(--zel-blue);
    border-radius: 0 var(--zel-radius) var(--zel-radius) 0;
    font-style: italic;
    font-size: 15px;
    color: var(--zel-text-mid);
    line-height: 1.7;
}

/* =============================================================================
   SECTION 17C: HERO SECTION VARIANTS
   ============================================================================= */

.zel-hero,
section.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #0F172A 0%, #1a2744 50%, #1E293B 100%);
}

.zel-hero .container,
section.hero .container {
    position: relative;
    z-index: 2;
}

.zel-hero__content {
    max-width: 640px;
}

.zel-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(59,130,246,0.12);
    color: var(--zel-cyan-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.zel-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--zel-white);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.zel-hero__title span {
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zel-hero__subtitle {
    font-size: 17px;
    color: var(--zel-text-on-dark);
    line-height: 1.8;
    margin-bottom: 32px;
}

.zel-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero with orbs */
.zel-hero .hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    animation: orbMove1 15s ease-in-out infinite;
}

.zel-hero .hero-orb--2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    animation: orbMove2 12s ease-in-out infinite;
}

/* Sub-page hero (smaller) */
.zel-hero--sub {
    padding: 60px 0 48px;
}

.zel-hero--sub .zel-hero__title {
    font-size: 36px;
}

/* =============================================================================
   SECTION 17B: SHARED CONTENT SECTIONS (WXR page content patterns)
   ============================================================================= */

/* --- Dark content section --- */
.zel-dark-section {
    padding: 88px 0;
    background: linear-gradient(160deg, #0F172A 0%, #1a2744 50%, #1E293B 100%);
    color: var(--zel-text-on-dark);
    position: relative;
    overflow: hidden;
}

.zel-dark-section .container {
    position: relative;
    z-index: 2;
}

.zel-dark-section h2,
.zel-dark-section h3,
.zel-dark-section h4 {
    color: var(--zel-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.zel-dark-section .section-badge {
    background: rgba(59,130,246,0.12);
    color: var(--zel-cyan-light);
}

.zel-dark-section p {
    color: var(--zel-text-on-dark);
}

.zel-dark-section a:not(.btn-cta):not(.btn-outline) {
    color: var(--zel-cyan-light);
}

/* --- Dark section cards --- */
.zel-dark-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--zel-radius);
    padding: 28px;
    transition: all var(--zel-ease);
}

.zel-dark-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-4px);
}

.zel-dark-card h3,
.zel-dark-card h4 {
    color: var(--zel-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.zel-dark-card p {
    color: var(--zel-text-on-dark);
    font-size: 14px;
    line-height: 1.7;
}

/* --- Numbered badge (small circle with number) --- */
.zel-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    color: var(--zel-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--zel-blue-glow);
}

/* --- Argument / feature grids --- */
.zel-arg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zel-arg-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Light card (for arguments, features on white bg) */
.zel-light-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    padding: 28px;
    transition: all var(--zel-ease);
}

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

.zel-light-card h3,
.zel-light-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 8px;
    font-size: 16px;
}

.zel-light-card p {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.7;
}

/* --- Vertical timeline --- */
.zel-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 72px;
}

.zel-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--zel-blue), var(--zel-cyan));
    border-radius: 2px;
}

.zel-timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.zel-timeline-item:last-child {
    padding-bottom: 0;
}

.zel-timeline-num {
    position: absolute;
    left: -72px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    color: var(--zel-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 16px var(--zel-blue-glow);
    z-index: 1;
}

.zel-timeline-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--zel-navy);
    font-size: 17px;
    margin-bottom: 6px;
}

.zel-timeline-item p {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.7;
}

/* Dark timeline variant */
.zel-dark-section .zel-timeline::before {
    background: linear-gradient(180deg, var(--zel-blue), rgba(6,182,212,0.3));
}

.zel-dark-section .zel-timeline-item h4 {
    color: var(--zel-white);
}

.zel-dark-section .zel-timeline-item p {
    color: var(--zel-text-on-dark);
}

/* --- Image-text split layout --- */
.zel-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.zel-split img {
    width: 100%;
    height: auto;
    border-radius: var(--zel-radius-lg);
    box-shadow: var(--zel-shadow-lg);
}

/* --- Highlight callout box --- */
.zel-callout {
    background: rgba(59,130,246,0.04);
    border: 1px solid rgba(59,130,246,0.15);
    border-left: 4px solid var(--zel-blue);
    border-radius: 0 var(--zel-radius) var(--zel-radius) 0;
    padding: 24px 28px;
    margin: 24px 0;
}

.zel-callout p {
    color: var(--zel-text-mid);
    font-size: 15px;
    line-height: 1.7;
}

.zel-callout strong {
    color: var(--zel-navy);
}

/* Dark callout */
.zel-dark-section .zel-callout {
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.25);
}

.zel-dark-section .zel-callout p {
    color: var(--zel-text-on-dark);
}

.zel-dark-section .zel-callout strong {
    color: var(--zel-white);
}

/* --- Scenario / feature list cards (compact) --- */
.zel-scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zel-scenario-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    padding: 24px;
    transition: all var(--zel-ease);
}

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

.zel-scenario-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--zel-navy);
    margin-bottom: 8px;
}

.zel-scenario-card p {
    font-size: 13px;
    color: var(--zel-text-mid);
    line-height: 1.6;
}

/* =============================================================================
   SECTION 17D: TSUE PAGE — PRESTIGE GOLD DESIGN
   ============================================================================= */

/* — Gold / Amber prestige accents — */
:root {
    --gold: #D4A843;
    --gold-light: #F0D078;
    --gold-glow: rgba(212,168,67,0.25);
    --eu-blue: #003399;
    --eu-blue-glow: rgba(0,51,153,0.2);
}

/* ============ HERO ============ */
.tsue-hero {
    background: linear-gradient(160deg, #07101F 0%, #0C1A30 30%, #111D35 60%, #0A1628 100%);
    padding: 100px 0 96px; position: relative; overflow: hidden;
}
.tsue-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212,168,67,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,168,67,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.tsue-hero .hero-orb--1 {
    width: 700px; height: 700px; top: -20%; right: -12%;
    background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, rgba(0,51,153,0.04) 40%, transparent 70%);
    animation: orbMove1 14s ease-in-out infinite;
}
.tsue-hero .hero-orb--2 {
    width: 450px; height: 450px; bottom: -15%; left: -8%;
    background: radial-gradient(circle, rgba(0,51,153,0.06) 0%, transparent 70%);
    animation: orbMove2 18s ease-in-out infinite;
}
.tsue-hero .hero-orb--3 {
    width: 300px; height: 300px; top: 30%; left: 25%;
    background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
    animation: orbMove1 20s ease-in-out infinite reverse;
}
/* Subtle gold line at top */
.tsue-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5; z-index: 3;
}
.tsue-hero .container {
    position: relative; z-index: 2; text-align: center; max-width: 880px;
}
.tsue-court-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(0,51,153,0.1));
    border: 1px solid rgba(212,168,67,0.25);
    padding: 8px 22px; border-radius: 100px;
    font-size: 11px; font-weight: 700; color: var(--gold-light);
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}
.tsue-court-badge svg { width: 16px; height: 16px; fill: var(--gold-light); }
.tsue-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px; font-weight: 800; color: var(--white); line-height: 1.15;
    margin-bottom: 20px; letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.tsue-hero h1 em {
    font-style: normal; color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text; background-clip: text;
}
.tsue-hero-sub {
    font-size: 18px; color: var(--text-on-dark); line-height: 1.75; margin-bottom: 36px;
    max-width: 720px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.tsue-hero-sub strong { color: var(--white); font-weight: 600; }
.tsue-case-number {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(212,168,67,0.15);
    padding: 14px 28px; border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--gold-light);
    animation: fadeInUp 0.8s ease 0.3s both;
}
.tsue-case-number span { color: var(--text-on-dark); font-weight: 400; font-family: 'Inter', sans-serif; font-size: 14px; }

/* EU emblem placeholder */
.tsue-emblem {
    width: 80px; height: 80px; margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,51,153,0.15), rgba(212,168,67,0.1));
    border: 2px solid rgba(212,168,67,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--gold-light);
    animation: fadeInUp 0.5s ease both;
}

/* ============ ABOUT THE CASE ============ */
.tsue-about {
    padding: 88px 0; position: relative;
}
.tsue-about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.tsue-about-narrative { font-size: 16px; color: var(--text-mid); line-height: 1.85; }
.tsue-about-narrative p { margin-bottom: 20px; }
.tsue-about-narrative strong { color: var(--navy); font-weight: 700; }
.tsue-about-sidebar {
    background: linear-gradient(160deg, #0C1A30, #111D35);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: var(--radius-lg); padding: 32px;
}
.tsue-about-sidebar h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.tsue-fact {
    display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start;
}
.tsue-fact:last-child { margin-bottom: 0; }
.tsue-fact-icon {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--gold-light);
}
.tsue-fact-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.tsue-fact-value { font-size: 14px; color: var(--white); font-weight: 600; line-height: 1.5; }

/* ============ AG OPINION — 4 CARDS ============ */
.tsue-opinion {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--light-alt) 50%, var(--light) 100%);
}
.tsue-opinion-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.tsue-opinion-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; position: relative; overflow: hidden; transition: all var(--ease);
}
.tsue-opinion-card:hover {
    border-color: var(--gold); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212,168,67,0.1);
}
.tsue-opinion-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.tsue-opinion-num {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1400; display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800;
    margin-bottom: 16px;
}
.tsue-opinion-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35;
}
.tsue-opinion-card p {
    font-size: 14px; color: var(--text-mid); line-height: 1.75;
}

/* ============ SIGNIFICANCE ============ */
.tsue-significance {
    padding: 88px 0; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #07101F 0%, #0C1A30 50%, #111D35 100%);
}
.tsue-significance .hero-orb--1 {
    width: 500px; height: 500px; top: -10%; right: -8%;
    background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
    animation: orbMove1 14s ease-in-out infinite;
}
.tsue-sig-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.tsue-sig-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 32px; transition: all var(--ease);
}
.tsue-sig-card:hover {
    background: rgba(255,255,255,0.06); border-color: rgba(212,168,67,0.2);
    transform: translateY(-4px);
}
.tsue-sig-icon {
    width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.15);
}
.tsue-sig-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.tsue-sig-card p { font-size: 14px; color: var(--text-on-dark); line-height: 1.75; }

/* ============ PRACTICAL IMPLICATIONS ============ */
.tsue-practical {
    padding: 88px 0;
}
.tsue-practical-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tsue-practical-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; transition: all var(--ease); text-align: center;
}
.tsue-practical-card:hover {
    border-color: var(--blue); transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.1);
}
.tsue-practical-icon {
    width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.08));
    color: var(--blue);
}
.tsue-practical-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.tsue-practical-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* ============ TIMELINE ============ */
.tsue-timeline-section {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.tsue-timeline {
    max-width: 740px; margin: 0 auto; position: relative;
    padding-left: 44px;
}
.tsue-timeline::before {
    content: ''; position: absolute; left: 17px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--blue), var(--text-light));
}
.tsue-tl-item {
    position: relative; margin-bottom: 36px; padding-left: 24px;
}
.tsue-tl-item:last-child { margin-bottom: 0; }
.tsue-tl-dot {
    position: absolute; left: -34px; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    border: 3px solid var(--gold);
    background: var(--white);
}
.tsue-tl-item.active .tsue-tl-dot {
    background: var(--gold);
    box-shadow: 0 0 0 5px var(--gold-glow);
}
.tsue-tl-item.future .tsue-tl-dot {
    border-color: var(--text-light); background: var(--light);
}
.tsue-tl-date {
    font-size: 12px; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.tsue-tl-item.future .tsue-tl-date { color: var(--text-light); }
.tsue-tl-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.tsue-tl-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ============ QUOTE ============ */
.tsue-quote-section {
    padding: 72px 0; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0C1A30, #111D35);
}
.tsue-quote-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,168,67,0.03), transparent, rgba(0,51,153,0.03));
    pointer-events: none;
}
.tsue-quote {
    position: relative; z-index: 1; max-width: 780px; margin: 0 auto;
}
.tsue-quote-mark {
    font-family: Georgia, serif; font-size: 72px; color: var(--gold);
    line-height: 0.5; margin-bottom: 16px; opacity: 0.6;
}
.tsue-quote blockquote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px; font-weight: 700; color: var(--white); line-height: 1.5;
    margin-bottom: 20px; font-style: normal;
}
.tsue-quote cite {
    font-style: normal; font-size: 15px; color: var(--gold-light); font-weight: 600;
}
.tsue-quote cite span { display: block; font-size: 13px; color: var(--text-on-dark); font-weight: 400; margin-top: 4px; }

/* ============ NAV HIGHLIGHT FOR TSUE ============ */
.navbar-nav a.nav-tsue {
    color: var(--gold-light); font-weight: 700; position: relative;
}
.navbar-nav a.nav-tsue::before {
    content: ''; position: absolute; inset: -4px -10px; border-radius: 8px;
    background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.15);
    z-index: -1;
}
.navbar-nav a.nav-tsue:hover { color: var(--gold); }

/* ============ STATUS BADGE ============ */
.tsue-status {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 700; color: var(--green);
    margin-top: 16px;
}
.tsue-status-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    animation: pulseGlow 2s infinite;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .tsue-about-grid { grid-template-columns: 1fr; gap: 32px; }
    .tsue-opinion-grid { grid-template-columns: 1fr; }
    .tsue-sig-grid { grid-template-columns: 1fr; }
    .tsue-practical-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .tsue-hero { padding: 72px 0 64px; }
    .tsue-hero h1 { font-size: 30px; }
    .tsue-hero-sub { font-size: 16px; }
    .tsue-quote blockquote { font-size: 19px; }
    .tsue-about-grid { grid-template-columns: 1fr; }
    .tsue-opinion-grid { grid-template-columns: 1fr; }
    .tsue-sig-grid { grid-template-columns: 1fr; }
    .tsue-practical-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   SECTION 18: WORDPRESS-SPECIFIC OVERRIDES
   ============================================================================= */

/* --- Blog Cards --- */
.zel-card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius-lg);
    overflow: hidden;
    transition: all var(--zel-ease);
}

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

.zel-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.zel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--zel-ease);
}

.zel-card:hover .zel-card__image img {
    transform: scale(1.05);
}

.zel-card__body {
    padding: 24px;
}

.zel-card__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--zel-blue);
    margin-bottom: 10px;
}

.zel-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--zel-navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.zel-card__title a {
    color: inherit;
    transition: color var(--zel-ease);
}

.zel-card__title a:hover {
    color: var(--zel-blue);
}

.zel-card__excerpt {
    font-size: 14px;
    color: var(--zel-text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.zel-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--zel-text-light);
}

/* WordPress block spacing override — FSE trap #2 */
.zel-card + .zel-card {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

/* --- Breadcrumbs --- */
.zel-breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
    color: var(--zel-text-light);
}

.zel-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zel-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zel-breadcrumbs__item a {
    color: var(--zel-text-light);
    transition: color var(--zel-ease);
}

.zel-breadcrumbs__item a:hover {
    color: var(--zel-blue);
}

.zel-breadcrumbs__item::after {
    content: '/';
    color: var(--zel-border);
}

.zel-breadcrumbs__item:last-child::after {
    display: none;
}

.zel-breadcrumbs__item:last-child {
    color: var(--zel-text);
    font-weight: 600;
}

/* Dark background breadcrumbs */
.zel-breadcrumbs--dark {
    color: var(--zel-text-on-dark);
}

.zel-breadcrumbs--dark .zel-breadcrumbs__item a {
    color: var(--zel-text-on-dark);
}

.zel-breadcrumbs--dark .zel-breadcrumbs__item a:hover {
    color: var(--zel-cyan-light);
}

.zel-breadcrumbs--dark .zel-breadcrumbs__item::after {
    color: rgba(255,255,255,0.2);
}

.zel-breadcrumbs--dark .zel-breadcrumbs__item:last-child {
    color: var(--zel-white);
}

/* --- Reading Time --- */
.zel-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--zel-text-light);
    font-weight: 500;
}

/* --- Related Posts --- */
.zel-related {
    padding: 64px 0;
    background: var(--zel-light);
}

.zel-related__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--zel-navy);
    margin-bottom: 32px;
    text-align: center;
}

.zel-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zel-related__card {
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    border-radius: var(--zel-radius);
    overflow: hidden;
    transition: all var(--zel-ease);
}

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

.zel-related__card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.zel-related__card-body {
    padding: 20px;
}

.zel-related__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--zel-navy);
    line-height: 1.4;
    margin-bottom: 8px;
}

.zel-related__card-title a {
    color: inherit;
    transition: color var(--zel-ease);
}

.zel-related__card-title a:hover {
    color: var(--zel-blue);
}

.zel-related__card-date {
    font-size: 12px;
    color: var(--zel-text-light);
}

/* --- Content Styling (single post/page) --- */
.zel-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--zel-text);
}

.zel-content a {
    color: var(--zel-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--zel-ease);
}

.zel-content a:hover {
    color: var(--zel-blue-hover);
}

.zel-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--zel-navy);
    margin: 40px 0 16px;
    letter-spacing: -0.3px;
}

.zel-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--zel-navy);
    margin: 32px 0 12px;
}

.zel-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--zel-navy);
    margin: 24px 0 10px;
}

.zel-content p {
    margin-bottom: 18px;
}

.zel-content blockquote {
    border-left: 4px solid linear-gradient(180deg, var(--zel-blue), var(--zel-cyan));
    border-left: 4px solid var(--zel-blue);
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--zel-light);
    border-radius: 0 var(--zel-radius) var(--zel-radius) 0;
    font-style: italic;
    color: var(--zel-text-mid);
}

.zel-content blockquote p:last-child {
    margin-bottom: 0;
}

.zel-content ul,
.zel-content ol {
    margin: 18px 0;
    padding-left: 24px;
}

.zel-content ul {
    list-style: disc;
}

.zel-content ol {
    list-style: decimal;
}

.zel-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.zel-content code {
    background: var(--zel-light-alt);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: var(--zel-blue-dark);
}

.zel-content pre {
    background: var(--zel-navy-deep);
    color: var(--zel-text-on-dark);
    padding: 24px;
    border-radius: var(--zel-radius);
    overflow-x: auto;
    margin: 24px 0;
}

.zel-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.zel-content img {
    border-radius: var(--zel-radius);
    margin: 24px 0;
}

.zel-content figure {
    margin: 24px 0;
}

.zel-content figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--zel-text-light);
    margin-top: 8px;
}

.zel-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.zel-content th,
.zel-content td {
    padding: 12px 16px;
    border: 1px solid var(--zel-border);
    text-align: left;
}

.zel-content th {
    background: var(--zel-light);
    font-weight: 700;
    color: var(--zel-navy);
}

.zel-content td {
    color: var(--zel-text-mid);
}

/* --- Pagination --- */
.zel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 48px 0;
}

.zel-pagination a,
.zel-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--zel-ease);
}

.zel-pagination a {
    color: var(--zel-text-mid);
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
}

.zel-pagination a:hover {
    color: var(--zel-blue);
    border-color: var(--zel-blue);
    box-shadow: var(--zel-shadow-sm);
}

.zel-pagination .current,
.zel-pagination span.current {
    color: var(--zel-white);
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-blue-dark));
    border: 1px solid transparent;
    box-shadow: 0 2px 8px var(--zel-blue-glow);
}

/* WordPress default pagination override */
.wp-block-query-pagination {
    gap: 8px;
}

.wp-block-query-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zel-text-mid);
    background: var(--zel-white);
    border: 1px solid var(--zel-border);
    transition: all var(--zel-ease);
}

.wp-block-query-pagination .page-numbers:hover {
    color: var(--zel-blue);
    border-color: var(--zel-blue);
}

.wp-block-query-pagination .page-numbers.current {
    color: var(--zel-white);
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-blue-dark));
    border-color: transparent;
}

/* --- Search Form --- */
.zel-search {
    max-width: 600px;
    margin: 0 auto;
}

.zel-search__form {
    display: flex;
    gap: 10px;
}

.zel-search__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--zel-border);
    border-radius: var(--zel-radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--zel-text);
    background: var(--zel-white);
    transition: all var(--zel-ease);
}

.zel-search__input:focus {
    outline: none;
    border-color: var(--zel-blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.zel-search__submit {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-blue-dark));
    color: var(--zel-white);
    border: none;
    border-radius: var(--zel-radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--zel-ease);
}

.zel-search__submit:hover {
    box-shadow: 0 4px 16px var(--zel-blue-glow);
    transform: translateY(-1px);
}

/* WordPress search block override */
.wp-block-search .wp-block-search__input {
    border: 2px solid var(--zel-border) !important;
    border-radius: var(--zel-radius) !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
}

.wp-block-search .wp-block-search__input:focus {
    border-color: var(--zel-blue) !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1) !important;
}

.wp-block-search .wp-block-search__button {
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-blue-dark)) !important;
    color: var(--zel-white) !important;
    border: none !important;
    border-radius: var(--zel-radius) !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
}

/* --- 404 Page --- */
.zel-404 {
    text-align: center;
    padding: 100px 24px;
}

.zel-404__code {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--zel-blue), var(--zel-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.zel-404__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--zel-navy);
    margin-bottom: 12px;
}

.zel-404__text {
    font-size: 16px;
    color: var(--zel-text-mid);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Placeholder Image --- */
.zel-placeholder {
    background: linear-gradient(135deg, var(--zel-light), var(--zel-light-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zel-text-light);
    font-size: 14px;
    border-radius: var(--zel-radius);
    aspect-ratio: 16 / 9;
}

/* --- WordPress Block Overrides --- */

/* Ensure WP blocks inside dark sections get correct colors */
.zel-hero .wp-block-heading,
.final-cta .wp-block-heading,
.cta-band .wp-block-heading {
    color: var(--zel-white);
}

.zel-hero .wp-block-paragraph,
.final-cta .wp-block-paragraph {
    color: var(--zel-text-on-dark);
}

/* WordPress buttons block styling */
.wp-block-button .wp-block-button__link {
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    transition: all var(--zel-ease);
}

/* (WordPress group block spacing — handled in SECTION 17A with !important) */

/* WordPress template part sticky fix — FSE trap #7 */
body:has(.navbar) .wp-site-blocks > header,
body:has(.navbar) .wp-site-blocks > .wp-block-template-part:first-child {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* =============================================================================
   SECTION 19: PRINT STYLES
   ============================================================================= */
@media print {
    .navbar,
    .top-bar,
    .footer,
    .zel-footer,
    .mobile-cta,
    .cta-band,
    .final-cta,
    .stats-bar,
    .hamburger,
    .zeleznicki-classic-nav__toggle,
    .zeleznicki-classic-nav__overlay,
    .btn-cta,
    .btn-outline,
    .hero-orb {
        display: none !important;
    }

    body {
        color: #000 !important;
        background: #fff !important;
        font-size: 12pt;
        padding-bottom: 0 !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .zel-content a {
        color: #000 !important;
        text-decoration: underline;
    }

    .zel-content a::after {
        content: ' (' attr(href) ')';
        font-size: 10pt;
        color: #666;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* =============================================================================
   SECTION 20: ACCESSIBILITY
   ============================================================================= */

/* Focus outlines */
:focus-visible {
    outline: 2px solid var(--zel-blue);
    outline-offset: 2px;
}

/* Dark backgrounds focus */
.navbar :focus-visible,
.top-bar :focus-visible,
.footer :focus-visible,
.zel-footer :focus-visible,
.final-cta :focus-visible,
.zel-hero :focus-visible {
    outline-color: var(--zel-cyan-light);
}

/* Skip link */
.zel-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--zel-blue);
    color: var(--zel-white);
    padding: 12px 24px;
    border-radius: 0 0 var(--zel-radius) var(--zel-radius);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.zel-skip-link:focus {
    top: 0;
    outline: 2px solid var(--zel-white);
    outline-offset: 2px;
}

/* Screen reader only */
.zel-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-orb {
        animation: none !important;
    }

    .btn-cta:hover,
    .zel-service-card:hover,
    .proof-card:hover,
    .stat-item:hover,
    .zel-card:hover,
    .zel-related__card:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-cta {
        border: 2px solid var(--zel-white);
    }

    .zel-card,
    .proof-card,
    .faq-item,
    .stat-item,
    .zel-service-card {
        border-width: 2px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        border-width: 2px;
    }
}

/* =============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* ---- Tablet (1024px) ---- */
@media (max-width: 1024px) {
    /* Front-page hero: stack on tablet */
    section.hero .container:has(.hero-photo) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group,
    .hero-trust {
        justify-content: center;
    }

    .hero-tsue {
        justify-content: center;
    }

    .hero-photo-wrapper {
        width: 280px;
        height: 320px;
    }

    /* Why grid: 2 columns on tablet */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Secondary services: 2 columns */
    .services-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Personal: stack */
    .personal-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

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

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

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

    .zel-hero__title {
        font-size: 40px;
    }
}

/* ---- Mobile (768px) ---- */
@media (max-width: 768px) {
    /* Front-page mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-secondary-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-photo {
        display: none;
    }

    section.hero h1 {
        font-size: 26px !important;
    }

    section.hero {
        padding: 48px 0 40px !important;
    }

    section.hero .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-group .btn-cta,
    .hero-cta-group .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }

    .hero-tsue {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
    }

    /* WXR hero inline grids on mobile */
    section.hero [style*="display:grid"],
    section.hero [style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* WXR hero buttons on mobile */
    section.hero .btn-cta,
    section.hero .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    /* Navbar: hide desktop nav, show hamburger */
    .navbar-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Classic menu: hide desktop, show toggle */
    .zeleznicki-classic-nav__desktop {
        display: none;
    }

    .zeleznicki-classic-nav__toggle {
        display: flex;
    }

    .zeleznicki-classic-nav__toggle svg {
        fill: var(--zel-white);
    }

    /* Logo smaller on mobile */
    .navbar-logo-img img {
        max-height: 32px !important;
    }

    /* Typography */
    .section-title {
        font-size: 28px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Proof */
    .proof-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    /* CTA sections */
    .cta-band h2,
    .final-cta h2 {
        font-size: 26px;
    }

    /* Top bar */
    .top-bar-right {
        display: none;
    }

    /* Services */
    .zel-services-grid {
        grid-template-columns: 1fr;
    }

    /* Related posts */
    .zel-related__grid {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .zel-hero,
    section.hero {
        padding: 60px 0 48px;
    }

    .zel-hero__title {
        font-size: 32px;
    }

    .zel-hero__subtitle {
        font-size: 15px;
    }

    .zel-hero__actions {
        flex-direction: column;
    }

    .zel-hero__actions .btn-cta,
    .zel-hero__actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* WXR inline grid override — force single column on mobile */
    section [style*="grid-template-columns: repeat(2"],
    section [style*="grid-template-columns:repeat(2"],
    section [style*="grid-template-columns: repeat(3"],
    section [style*="grid-template-columns:repeat(3"],
    section [style*="grid-template-columns:1fr 1fr"],
    section [style*="grid-template-columns: 1fr 1fr"],
    section div[style*="grid-template-columns:1fr 1fr"],
    section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* (merged into front-page mobile block above) */

    /* New component responsiveness */
    .zel-arg-grid,
    .zel-arg-grid--3,
    .zel-scenario-grid {
        grid-template-columns: 1fr;
    }

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

    .zel-timeline {
        padding-left: 56px;
    }

    .zel-timeline::before {
        left: 15px;
    }

    .zel-timeline-num {
        left: -56px;
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* 404 */
    .zel-404__code {
        font-size: 80px;
    }

    .zel-404__title {
        font-size: 22px;
    }

    /* Blog card meta */
    .zel-card__body {
        padding: 18px;
    }

    .zel-card__title {
        font-size: 16px;
    }

    /* Search */
    .zel-search__form {
        flex-direction: column;
    }

    /* Content */
    .zel-content h2 {
        font-size: 24px;
    }

    .zel-content h3 {
        font-size: 20px;
    }

    /* Pagination */
    .zel-pagination a,
    .zel-pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ---- Small mobile (480px) ---- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .stats-grid {
        gap: 8px;
    }

    .stat-item {
        padding: 14px;
    }

    .stat-item strong {
        font-size: 26px;
    }

    .final-form {
        padding: 24px 18px;
    }

    .proof-card {
        padding: 24px;
    }

    .zel-hero__title {
        font-size: 28px;
    }

    .zel-404__code {
        font-size: 60px;
    }
}
