/* ============================================================================
   LION SECURITY — Design System v7 · DARK PREMIUM
   Immersive navy/black theme · gold accents · glass surfaces · glow & motion
   ============================================================================ */

:root {
    /* Core dark palette */
    --bg:        #070c18;   /* page base — near-black navy */
    --bg-2:      #0a1122;
    --bg-soft:   #0d1528;   /* alt sections */
    --bg-soft2:  #111b32;

    /* Glass surfaces (over the dark bg) */
    --surface:   rgba(255, 255, 255, 0.035);
    --surface-2: rgba(255, 255, 255, 0.06);
    --surface-3: rgba(255, 255, 255, 0.09);
    --line:      rgba(255, 255, 255, 0.09);
    --line-2:    rgba(255, 255, 255, 0.16);

    /* Navy depth */
    --navy-950: #050a14;
    --navy-900: #0a1426;
    --navy-800: #0f1d36;
    --navy-700: #16294a;
    --navy-600: #1e3a66;

    /* Gold accent — brightened for dark */
    --gold-700: #b07f23;
    --gold-600: #d3a043;
    --gold-500: #e6b659;
    --gold-400: #f1c878;
    --gold-100: rgba(230, 182, 89, 0.12);
    --gold-glow: rgba(230, 182, 89, 0.35);

    --red: #e8543f;
    --green: #3ec97a;

    /* Text */
    --ink:      #f3f6fc;   /* headings — near white */
    --ink-soft: #ccd6e8;   /* body — brightened for readability */
    --muted:    #9aa9c6;   /* secondary — raised contrast on dark */

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.30);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.42);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.55);
    --glow:      0 0 0 1px var(--gold-glow), 0 18px 50px rgba(211, 160, 67, 0.18);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t: 0.35s var(--ease);

    --radius: 16px;
    --radius-sm: 11px;
    --max-w: 1240px;

    --font-head: 'Manrope', 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    line-height: 1.72;
    font-size: 16px;
    letter-spacing: 0.005em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 60% 50% at 12% -5%, rgba(211, 160, 67, 0.10), transparent 60%),
        radial-gradient(ellipse 55% 45% at 95% 8%, rgba(30, 58, 102, 0.45), transparent 60%),
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(22, 41, 74, 0.40), transparent 65%);
    background-attachment: fixed;
}

/* Fine grain / noise overlay for texture */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold-500); color: #08101f; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.01em;   /* relaxed — Greek accents read better with less negative tracking */
    text-wrap: balance;        /* nicer multi-line heading breaks */
}
h1 { font-size: clamp(2.15rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-weight: 700; letter-spacing: -0.006em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }

p { color: var(--ink-soft); text-wrap: pretty; }   /* avoids ugly single-word last lines */
a { color: var(--gold-500); text-decoration: none; transition: var(--t); }
strong { color: var(--ink); font-weight: 700; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; }
section { padding: 100px 0; position: relative; }
.bg-soft { background: linear-gradient(180deg, var(--bg-soft), transparent); }
.bg-navy { background: var(--navy-950); }

/* Eyebrow */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--gold-500); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: linear-gradient(90deg, var(--gold-500), transparent); }

/* Section header */
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; color: var(--muted); }

.accent {
    background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--gold-500);
}

/* ============================================ Buttons ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px; font-family: var(--font-head);
    font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em;
    border-radius: var(--radius-sm); transition: var(--t);
    cursor: pointer; border: 1px solid transparent; line-height: 1; position: relative;
}
.btn-primary, .btn-gold {
    background: linear-gradient(120deg, var(--gold-500), var(--gold-700));
    color: #0a101e; box-shadow: 0 10px 30px rgba(211, 160, 67, 0.30);
}
.btn-primary:hover, .btn-gold:hover {
    color: #0a101e; transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(230, 182, 89, 0.45);
}
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--gold-500); color: #fff; background: var(--surface-2); transform: translateY(-2px); }

/* ============================================ Top utility bar ============================================ */
.topbar { background: rgba(5, 10, 20, 0.85); color: #a9b6cc; font-size: 0.82rem; border-bottom: 1px solid var(--line); }
.topbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 9px 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.topbar a { color: #d7e0ee; font-weight: 600; }
.topbar a:hover { color: var(--gold-500); }
.topbar-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left svg { width: 14px; height: 14px; color: var(--gold-500); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-badge { display: inline-flex; align-items: center; gap: 6px; color: #9fb0c8; letter-spacing: 0.5px; }
.topbar-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s ease-in-out infinite; }

/* ============================================ Navbar ============================================ */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(7, 12, 24, 0.72);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.navbar.scrolled { background: rgba(6, 10, 20, 0.9); box-shadow: 0 10px 30px rgba(0,0,0,0.35); border-color: var(--line-2); }
.nav-container { max-width: var(--max-w); margin: 0 auto; padding: 14px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; z-index: 1010; }
.nav-logo img { height: 46px; width: auto; filter: drop-shadow(0 4px 14px rgba(211,160,67,0.25)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: #fff; letter-spacing: -0.01em; }
.nav-logo-text .tag { font-size: 0.6rem; letter-spacing: 2.5px; color: var(--gold-500); text-transform: uppercase; margin-top: 4px; font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-family: var(--font-head); font-size: 0.92rem; font-weight: 600; padding: 10px 16px; border-radius: 9px; transition: var(--t); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--surface-2); }
.nav-cta {
    margin-left: 10px;
    background: linear-gradient(120deg, var(--gold-500), var(--gold-700)) !important;
    color: #0a101e !important; padding: 11px 20px !important; border-radius: var(--radius-sm) !important;
    display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 22px rgba(211,160,67,0.30);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(230,182,89,0.45); }
.nav-cta svg { width: 15px; height: 15px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1010; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }

/* ============================================ Hero ============================================ */
.hero { padding: 86px 0 96px; overflow: hidden; position: relative; }
.hero::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(211,160,67,0.18), transparent 65%);
    filter: blur(20px); animation: float 14s ease-in-out infinite; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -25%; left: -8%;
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,58,102,0.55), transparent 65%);
    filter: blur(20px); animation: float 18s ease-in-out infinite reverse; pointer-events: none;
}
.hero .container { position: relative; z-index: 3; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--gold-100); color: var(--gold-400);
    border: 1px solid rgba(230,182,89,0.25);
    font-weight: 700; font-size: 0.78rem; letter-spacing: 0.5px;
    padding: 8px 16px; border-radius: 30px; margin-bottom: 26px; backdrop-filter: blur(6px);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.3);} }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { display: block; }
.hero-lead { font-size: 1.16rem; line-height: 1.75; color: var(--ink-soft); max-width: 54ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 26px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }
.hero-badge b { color: var(--ink); font-family: var(--font-head); font-size: 0.96rem; display: block; line-height: 1.2; }
.hero-badge span { font-size: 0.78rem; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-img {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 4.6; position: relative; border: 1px solid var(--line-2);
}
.hero-visual-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, rgba(7,12,24,0.55)); }
.hero-visual-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-card {
    position: absolute; left: -26px; bottom: 36px; z-index: 2;
    background: rgba(13, 21, 40, 0.85); border: 1px solid var(--line-2);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 270px;
    backdrop-filter: blur(12px);
}
.hero-visual-card .ico { width: 44px; height: 44px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #0a101e; }
.hero-visual-card .ico svg { width: 22px; height: 22px; }
.hero-visual-card b { font-family: var(--font-head); color: var(--ink); display: block; font-size: 1rem; }
.hero-visual-card span { font-size: 0.8rem; color: var(--muted); }
.hero-visual-badge {
    position: absolute; top: 24px; right: -18px; z-index: 2;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e;
    font-family: var(--font-head); font-weight: 800; padding: 12px 18px; border-radius: var(--radius-sm);
    box-shadow: 0 14px 34px rgba(211,160,67,0.4); text-align: center; line-height: 1.1;
}
.hero-visual-badge b { font-size: 1.6rem; display: block; }
.hero-visual-badge span { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }

/* ============================================ Trust strip ============================================ */
.trust-strip { position: relative; }
.trust-strip section { padding: 0; }
.trust-strip .container {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line-2);
    border-radius: var(--radius); overflow: hidden; padding: 0;
    box-shadow: var(--shadow-md);
}
.trust-cell { background: linear-gradient(180deg, var(--bg-soft2), var(--bg-soft)); padding: 40px 28px; text-align: center; transition: var(--t); }
.trust-cell:hover { background: var(--surface-2); }
.trust-num {
    font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800;
    background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; letter-spacing: -0.02em; display: block; margin-bottom: 8px;
}
.trust-lbl { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ============================================ Service cards ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 38px 32px; transition: var(--t);
    display: flex; flex-direction: column; text-decoration: none; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-700)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service-card:hover { border-color: rgba(230,182,89,0.4); background: var(--surface-2); box-shadow: var(--glow); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { width: 56px; height: 56px; border-radius: 13px; background: var(--surface-3); color: var(--gold-500); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--t); }
.service-card:hover .service-ico { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; transform: rotate(-6deg) scale(1.05); }
.service-ico svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--ink); margin-bottom: 12px; }
.service-card > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; flex: 1; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.service-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.service-list li svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.service-more { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--gold-500); display: inline-flex; align-items: center; gap: 8px; }
.service-card:hover .service-more { gap: 13px; color: var(--gold-400); }

/* ============================================ Clients ============================================ */
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.client-cell { background: var(--bg-soft); height: 118px; display: flex; align-items: center; justify-content: center; padding: 22px; transition: var(--t); }
.client-cell img { max-height: 52px; max-width: 130px; width: auto; filter: brightness(0) invert(1) opacity(0.55); transition: var(--t); }
.client-cell:hover { background: var(--surface-2); }
.client-cell:hover img { filter: brightness(0) invert(1) opacity(0.95); transform: scale(1.06); }

/* ============================================ Projects ============================================ */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold-600); border-radius: var(--radius-sm); padding: 28px 30px; transition: var(--t); }
.project:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateX(4px); border-left-color: var(--gold-400); }
.project-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 10px; }
.project h4 { color: var(--ink); font-size: 1.15rem; }
.project-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-400); background: var(--gold-100); border: 1px solid rgba(230,182,89,0.2); padding: 5px 11px; border-radius: 20px; white-space: nowrap; }
.project p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ============================================ Process steps (index) ============================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; position: relative; transition: var(--t); }
.process-step:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-num { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.process-step h4 { color: var(--ink); margin-bottom: 10px; }
.process-step p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ============================================ Offices / Feature (shared utility cards) ============================================ */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.office { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: var(--t); }
.office:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.office-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-400); margin-bottom: 12px; display: block; }
.office h3 { color: var(--ink); margin-bottom: 10px; }
.office p { font-size: 0.95rem; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: var(--t); }
.feature:hover { background: var(--surface-2); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-100); color: var(--gold-400); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-ico svg { width: 24px; height: 24px; }
.feature h4 { color: var(--ink); margin-bottom: 9px; }
.feature p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ============================================ Page hero (inner pages) ============================================ */
.page-hero { padding: 96px 0 84px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--navy-900), var(--bg)); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,12,24,0.55), rgba(7,12,24,0.95)); }
.page-hero::after { content: ''; position: absolute; top: -30%; right: 5%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(211,160,67,0.16), transparent 65%); filter: blur(10px); pointer-events: none; z-index: 1; }
.page-hero .container { position: relative; z-index: 3; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; }
.page-hero .lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 62ch; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 0.82rem; font-weight: 600; }
.breadcrumb a { color: var(--gold-500); }
.breadcrumb .sep { color: var(--line-2); }

/* ============================================ FAQ ============================================ */
.faq { max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: var(--t); }
.faq-item[open] { border-color: rgba(230,182,89,0.35); background: var(--surface-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--surface-3); color: var(--gold-500); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; }
.faq-answer { padding: 0 24px 24px; color: var(--muted); font-size: 0.98rem; }

/* ============================================ CTA bands (navy + glow) ============================================ */
.cta, .cta-banner {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff; text-align: center; position: relative; overflow: hidden;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta::after, .cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(211,160,67,0.22), transparent 60%); pointer-events: none; }
.cta .eyebrow, .cta-banner .eyebrow { color: var(--gold-500); justify-content: center; }
.cta h2, .cta-banner h2 { color: #fff; max-width: 24ch; margin: 0 auto 16px; }
.cta p, .cta-banner p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================ Contact ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; }
.contact-info, .contact-side {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
    color: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 44px 40px; position: relative; overflow: hidden;
}
.contact-info::before, .contact-side::before { content: ''; position: absolute; top: -40%; right: -20%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(211,160,67,0.18), transparent 65%); pointer-events: none; }
.contact-info h2, .contact-side h2 { color: #fff; }
.contact-info .eyebrow, .contact-side .eyebrow { color: var(--gold-500); }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.10); position: relative; }
.contact-item:last-of-type { border-bottom: none; }
.contact-item .ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: var(--surface-3); color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
.contact-item p, .contact-item a { display: block; color: var(--ink-soft); font-size: 0.96rem; }
.contact-item a:hover { color: var(--gold-500); }

.legal-strip { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; flex-direction: column; gap: 8px; }
.legal-strip div { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--muted); }
.legal-strip div b { color: #e5ebf4; font-weight: 600; }

.contact-form, .contact-form-side { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 40px; }
.contact-form h3, .contact-form-side h3 { color: var(--ink); margin-bottom: 8px; }
.contact-form-side .eyebrow { color: var(--gold-500); }
.form-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group .required { color: var(--gold-500); }
.form-control { width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--ink); font-family: inherit; font-size: 0.98rem; transition: var(--t); }
.form-control::placeholder { color: var(--muted); }
.form-control:focus { outline: none; border-color: var(--gold-500); background: var(--bg); box-shadow: 0 0 0 3px rgba(230,182,89,0.16); }
textarea.form-control { min-height: 130px; resize: vertical; }

.map-wrap { margin-top: 28px; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.dark-map iframe { filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.9); }

/* ============================================ Footer ============================================ */
.footer { background: var(--navy-950); color: #9aa8bf; padding: 76px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 40ch; }
.footer-col h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a, .footer-col ul span { color: #9fb0c8; font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--gold-500); }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; color: #8696b4; }

/* ============================================ Floating actions ============================================ */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 990; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: #0a101e; border-radius: 50%; box-shadow: var(--shadow-md); transition: var(--t); }
.fab a svg { width: 24px; height: 24px; }
.fab-call { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); }
.fab-call:hover { transform: scale(1.10); box-shadow: 0 0 24px rgba(230,182,89,0.55); }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-whatsapp:hover { background: #1ebe5b; transform: scale(1.10); box-shadow: 0 0 24px rgba(37,211,102,0.5); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); z-index: 9999; transition: width 0.1s ease-out; box-shadow: 0 0 10px var(--gold-glow); }

.back-to-top { position: fixed; right: 22px; bottom: 88px; width: 46px; height: 46px; background: var(--surface-3); color: #fff; border: 1px solid var(--line-2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; border-radius: 50%; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--t); z-index: 988; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================ Reveal ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ============================================================================
   INNER PAGES — about / services / contact specific blocks
   ============================================================================ */
.section-alt { background: linear-gradient(180deg, var(--bg-soft), transparent); }
.section-header { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-header.align-left { margin-left: 0; margin-right: auto; text-align: left; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.06rem; color: var(--muted); }

/* ABOUT — Manifesto */
.manifesto { max-width: 820px; margin: 0 auto; text-align: center; }
.manifesto h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.manifesto .lead { font-size: 1.15rem; line-height: 1.85; color: var(--ink-soft); }
.manifesto .lead.dropcap::first-letter { float: left; font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; line-height: 0.84; padding: 6px 14px 0 0; color: var(--gold-500); }
.manifesto-signature { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.manifesto-signature .from { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
.manifesto-signature .name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: #fff; }

/* ABOUT — Offices (mini-process) */
.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); border-top: 3px solid var(--gold-600); padding: 30px 28px; transition: var(--t); }
.mini-step:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mini-step-num { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-400); background: var(--gold-100); border: 1px solid rgba(230,182,89,0.2); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.mini-step h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 10px; }
.mini-step p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ABOUT — Infrastructure */
.infra-section { background: linear-gradient(180deg, var(--bg-soft), transparent); }
.infra-header { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 48px; align-items: end; margin-bottom: 48px; }
.infra-header h2 { margin-top: 12px; }
.infra-header p { color: var(--muted); font-size: 1.04rem; }
.infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.infra-item { background: var(--bg-soft); padding: 34px 30px; transition: var(--t); }
.infra-item:hover { background: var(--surface-2); }
.infra-item-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.infra-num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--line-2); letter-spacing: 1px; }
.infra-icon { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; background: var(--surface-3); color: var(--gold-500); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.infra-item:hover .infra-icon { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; }
.infra-icon svg { width: 24px; height: 24px; }
.infra-item h4 { color: var(--ink); margin-bottom: 9px; }
.infra-item p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ABOUT — Team roles */
.team-roles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.role-item { display: flex; gap: 20px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; transition: var(--t); }
.role-item:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-2); }
.role-num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; flex-shrink: 0; }
.role-content h4 { color: var(--ink); margin-bottom: 8px; }
.role-content p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.cta-banner .btn-primary { background: linear-gradient(120deg, var(--gold-500), var(--gold-700)); color: #0a101e; }

/* SERVICES — Index jump links */
.service-index { max-width: var(--max-w); margin: -42px auto 0; padding: 0 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 5; }
.service-index-link { display: flex; align-items: center; gap: 16px; background: rgba(13, 21, 40, 0.9); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 22px 24px; transition: var(--t); backdrop-filter: blur(12px); }
.service-index-link:hover { transform: translateY(-4px); border-color: var(--gold-500); box-shadow: var(--glow); }
.service-index-link > div { flex: 1; }
.service-index-num { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--gold-500); flex-shrink: 0; }
.service-index-link h4 { color: var(--ink); margin-bottom: 3px; }
.service-index-link p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.service-index-link svg { color: var(--gold-500); flex-shrink: 0; transition: var(--t); }
.service-index-link:hover svg { transform: translateY(3px); }

/* SERVICES — Detail blocks */
.service-detail { padding: 88px 0; border-bottom: 1px solid var(--line); }
.service-detail-head { max-width: 720px; margin-bottom: 44px; }
.service-detail-mark { display: inline-block; font-family: var(--font-head); font-weight: 800; color: var(--gold-500); font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 14px; }
.service-detail-head h2 { margin: 6px 0 16px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; position: relative; transition: var(--t); }
.service-feature:hover { background: var(--surface-2); box-shadow: var(--shadow-md); border-color: var(--line-2); transform: translateY(-3px); }
.service-feature-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; margin-bottom: 14px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; }
.service-feature h4 { color: var(--ink); margin-bottom: 9px; }
.service-feature p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* SERVICES — Systems cards */
.systems-dual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.system-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: var(--t); }
.system-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.system-card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.system-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.system-card:hover .system-card-media img { transform: scale(1.06); }
.system-card-tag { position: absolute; top: 16px; left: 16px; background: rgba(10,20,38,0.85); color: var(--gold-500); border: 1px solid var(--line-2); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 13px; border-radius: 20px; backdrop-filter: blur(6px); }
.system-card-body { padding: 30px 30px 34px; }
.system-card-body h3 { color: var(--ink); margin-bottom: 12px; }
.system-card-body > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.system-card-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.system-card-list li { position: relative; padding-left: 26px; font-size: 0.93rem; color: var(--ink-soft); }
.system-card-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 15px; height: 8px; border-left: 2px solid var(--gold-500); border-bottom: 2px solid var(--gold-500); transform: rotate(-45deg); }

/* SERVICES — ΑΠΕ banner */
.ape-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 44px; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.ape-hero-media { position: relative; min-height: 380px; }
.ape-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ape-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(10,20,38,0.4)); }
.ape-hero-body { padding: 46px 44px; }
.ape-hero-body p { color: var(--muted); margin-bottom: 24px; }
.ape-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.ape-tag { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 6px 13px; border-radius: 20px; }
.ape-stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.ape-stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.ape-stat-lbl { font-size: 0.8rem; color: var(--muted); }

/* SERVICES — Process flow */
.process-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-flow .process-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: var(--t); }
.process-flow .process-step:hover { background: var(--surface-2); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-dot { width: 46px; height: 46px; border-radius: 11px; margin-bottom: 20px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #0a101e; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.process-flow .process-step h4 { color: var(--ink); margin-bottom: 10px; }
.process-flow .process-step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* CONTACT — hours block */
.hours-block { margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); position: relative; }
.hours-block h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: 0.9rem; color: var(--ink-soft); }
.hours-row span:first-child { color: var(--muted); }
.hours-row.live span:last-child { color: var(--green); font-weight: 600; }

/* Old service-detail aliases (svc-*) kept for safety */
.svc-block { padding: 84px 0; border-bottom: 1px solid var(--line); }
.svc-head { max-width: 720px; margin-bottom: 44px; }
.svc-mark { font-family: var(--font-head); font-weight: 800; color: var(--gold-500); font-size: 0.9rem; letter-spacing: 1px; }
.svc-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }

/* ============================================ Responsive ============================================ */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 460px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
    .process { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .offices { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .infra-grid { grid-template-columns: repeat(2, 1fr); }
    .infra-header { grid-template-columns: 1fr; gap: 14px; align-items: start; }
    .mini-process { grid-template-columns: 1fr; }
    .process-flow { grid-template-columns: repeat(2, 1fr); }
    .service-index { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    section { padding: 72px 0; }
    .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .systems-dual { grid-template-columns: 1fr; }
    .svc-features { grid-template-columns: 1fr; }
    .projects { grid-template-columns: 1fr; }
    .service-detail { padding: 64px 0; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .team-roles { grid-template-columns: 1fr; }
    .ape-hero { grid-template-columns: 1fr; }
    .ape-hero-media { min-height: 240px; }
    .infra-grid { grid-template-columns: 1fr; }
    .process-flow { grid-template-columns: 1fr; }
    .contact-info, .contact-form, .contact-side, .contact-form-side { padding: 32px 24px; }

    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; inset: 0; top: 0; height: 100dvh; width: 100%;
        flex-direction: column; justify-content: flex-start; align-items: stretch;
        gap: 0; padding: 90px 24px 30px;
        background: rgba(7, 12, 24, 0.97); backdrop-filter: blur(20px);
        transform: translateX(100%); transition: transform 0.35s var(--ease);
        z-index: 1005; overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { border-bottom: 1px solid var(--line); }
    .nav-links a { display: block; font-size: 1.3rem; font-weight: 700; padding: 20px 6px; border-radius: 0; }
    .nav-links a:hover, .nav-links a.active { background: none; color: var(--gold-500); }
    .nav-cta { margin: 18px 0 0 !important; justify-content: center; font-size: 1rem !important; padding: 16px !important; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
    body { font-size: 15.5px; }
    .container { padding: 0 18px; }
    .topbar-left span:nth-child(2) { display: none; }
    .topbar { font-size: 0.76rem; }
    .topbar-inner { padding: 8px 18px; }
    section { padding: 56px 0; }
    .hero { padding: 48px 0 64px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-visual-card { left: 12px; right: 12px; bottom: 14px; max-width: none; }
    .hero-visual-badge { right: 12px; }
    .hero-badges { gap: 14px 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .trust-strip .container { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .project-top { flex-direction: column; gap: 8px; }
    .ape-stats { gap: 28px; }
    .ape-hero-body { padding: 32px 24px; }
    .manifesto .lead.dropcap::first-letter { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero::before, .hero::after { animation: none; }
}
