:root {
    --bg: #141414;
    --bg-light: #1c1c1c;
    --primary: #c41723;
    --white: #ffffff;
    --text: #f5f5f5;
    --muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --container: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    padding: 20px 0;
}

.hero,
.about,
.sections,
.exhibitors,
.partners,
.gallery,
.contact {
    padding: 80px 0;
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: inline-flex;
    align-items: center;
    height: 92px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    position: relative;
}

.nav-list > li > a:hover {
    color: var(--primary);
}

.nav-list > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav-list > li > a:hover::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 14px 0;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(196, 23, 35, 0.12);
    color: var(--primary);
    padding-left: 26px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 23, 35, 0.28);
}

.header-btn:hover {
    transform: translateY(-2px);
    background: #dc1b28;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px auto;
    transition: 0.3s ease;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 1100px) {
    .nav-list {
        gap: 18px;
    }

    .nav-list > li > a {
        font-size: 0.84rem;
    }

    .header-btn {
        padding: 12px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
        z-index: 1101;
    }

    .header-btn {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 92px;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: calc(100vh - 92px);
        background: #121212;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 28px 24px 40px;
        justify-content: flex-start;
        overflow-y: auto;
        transition: 0.35s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-list > li > a {
        width: 100%;
        height: auto;
        padding: 18px 0;
        font-size: 0.95rem;
    }

    .nav-list > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        padding: 0 0 10px 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0 10px 18px;
        font-size: 0.88rem;
        color: var(--muted);
    }

    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--primary);
        padding-left: 24px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .header-wrap {
        min-height: 82px;
    }

    .site-logo img {
        height: 46px;
    }

    .main-nav {
        top: 82px;
        height: calc(100vh - 82px);
        max-width: 100%;
    }
}

.topbar {
    width: 100%;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-left span,
.topbar-left a,
.topbar-right a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
    transition: 0.3s ease;
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--primary);
}

@media (max-width: 960px) {
    .topbar {
        display: none;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh; /* možeš kasnije mijenjati */
    min-height: 500px;
    overflow: hidden;
}

/* Slika */
.hero-image {
    position: absolute;
    inset: 0;
    background: url('assets/hero.jpg') center/cover no-repeat;
}

/* Ako želiš lagani dark overlay (preporuka za premium look) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.5)
    );
}

/* Content (ako bude trebalo kasnije) */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Desktop (default) */
.hero-image {
    background: url('assets/hero-desktop.jpg') center/cover no-repeat;
}

/* Mobile verzija */
@media (max-width: 768px) {
    .hero-image {
        background: url('assets/hero-mobile.jpg') center/cover no-repeat;
    }
}

.about-event {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 23, 35, 0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(196, 23, 35, 0.10), transparent 28%),
        linear-gradient(180deg, #111111 0%, #141414 100%);
    overflow: hidden;
    isolation: isolate;
}

.about-wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.68);
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(2.4rem, 4.8vw, 4.5rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: #fff;
}

.about-text {
    max-width: 680px;
    font-size: 1.03rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.74);
    margin-bottom: 18px;
}

.about-actions {
    margin-top: 30px;
}

.red-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d71920;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.red-link::after {
    content: "";
    width: 42px;
    height: 1px;
    background: #d71920;
    transition: 0.3s ease;
}

.red-link:hover::after {
    width: 62px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.about-card {
    position: relative;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 30px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.03) 0%,
        rgba(255,255,255,0.01) 40%,
        rgba(215, 25, 32, 0.05) 100%
    );
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.32),
        0 0 30px rgba(215, 25, 32, 0.08);
}

.about-card-main {
    min-height: 260px;
}

.about-card-main h3 {
    position: relative;
    z-index: 2;
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 800;
    max-width: 420px;
}

.about-card-main p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.98rem;
    max-width: 470px;
}

.about-card-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    color: #d71920;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.card-line {
    position: absolute;
    top: 24px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-top: 1px solid rgba(215, 25, 32, 0.45);
    border-right: 1px solid rgba(215, 25, 32, 0.45);
    border-radius: 0 28px 0 0;
    transform: rotate(0deg);
    animation: rotateLine 8s linear infinite;
}

.small-card {
    min-height: 210px;
}

.small-card h4 {
    position: relative;
    z-index: 2;
    font-size: 1.22rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.small-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    font-size: 0.94rem;
}

.mini-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 18px;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(215, 25, 32, 0.95);
    letter-spacing: -0.03em;
}

/* Animated red lines background */
.about-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.about-bg-lines span {
    position: absolute;
    display: block;
    width: 160%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215, 25, 32, 0.00) 10%,
        rgba(215, 25, 32, 0.18) 35%,
        rgba(255,255,255,0.08) 50%,
        rgba(215, 25, 32, 0.22) 65%,
        transparent 100%
    );
    transform: rotate(-12deg);
    opacity: 0.7;
}

.about-bg-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: moveLineOne 11s linear infinite;
}

.about-bg-lines span:nth-child(2) {
    top: 36%;
    left: -18%;
    animation: moveLineTwo 14s linear infinite;
}

.about-bg-lines span:nth-child(3) {
    top: 58%;
    left: -22%;
    animation: moveLineThree 13s linear infinite;
}

.about-bg-lines span:nth-child(4) {
    top: 78%;
    left: -15%;
    animation: moveLineFour 16s linear infinite;
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.about-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 80px;
    left: -60px;
    animation: floatGlow 7s ease-in-out infinite;
}

.about-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 30px;
    animation: floatGlow 9s ease-in-out infinite reverse;
}

/* Animations */
@keyframes moveLineOne {
    0% { transform: translateX(-8%) rotate(-12deg); opacity: 0.25; }
    50% { transform: translateX(6%) rotate(-12deg); opacity: 0.7; }
    100% { transform: translateX(-8%) rotate(-12deg); opacity: 0.25; }
}

@keyframes moveLineTwo {
    0% { transform: translateX(10%) rotate(-12deg); opacity: 0.2; }
    50% { transform: translateX(-4%) rotate(-12deg); opacity: 0.65; }
    100% { transform: translateX(10%) rotate(-12deg); opacity: 0.2; }
}

@keyframes moveLineThree {
    0% { transform: translateX(-12%) rotate(-12deg); opacity: 0.22; }
    50% { transform: translateX(8%) rotate(-12deg); opacity: 0.6; }
    100% { transform: translateX(-12%) rotate(-12deg); opacity: 0.22; }
}

@keyframes moveLineFour {
    0% { transform: translateX(6%) rotate(-12deg); opacity: 0.18; }
    50% { transform: translateX(-8%) rotate(-12deg); opacity: 0.55; }
    100% { transform: translateX(6%) rotate(-12deg); opacity: 0.18; }
}

@keyframes floatGlow {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-18px) translateX(10px) scale(1.05); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes rotateLine {
    0% { transform: rotate(0deg); opacity: 0.5; }
    50% { transform: rotate(2deg); opacity: 1; }
    100% { transform: rotate(0deg); opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1100px) {
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-title {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .about-event {
        padding: 90px 0;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.02;
    }

    .about-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-card {
        padding: 24px;
        border-radius: 22px;
    }

    .about-card-main h3 {
        font-size: 1.4rem;
    }

    .mini-number {
        font-size: 2.2rem;
    }
}

.sectors-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.08), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(215, 25, 32, 0.08), transparent 30%),
        linear-gradient(180deg, #141414 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.sectors-section .container {
    position: relative;
    z-index: 2;
}

.sectors-head {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 55px;
}

.sectors-head-left h2 {
    font-size: clamp(2.3rem, 4.6vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.sectors-head-right p {
    max-width: 560px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 1rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sector-card {
    position: relative;
    padding: 30px 28px 28px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.025) 0%,
        rgba(215,25,32,0.04) 100%
    );
    pointer-events: none;
}

.sector-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.28),
        0 0 28px rgba(215,25,32,0.12);
}

.sector-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215, 25, 32, 0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.sector-card:hover .sector-line {
    width: 110px;
}

.sector-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.sector-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.70);
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 520px;
}

/* moving background lines */
.sectors-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sectors-bg-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 15%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-8deg);
    opacity: 0.55;
}

.sectors-bg-lines span:nth-child(1) {
    top: 22%;
    left: -15%;
    animation: sectorsLineOne 14s linear infinite;
}

.sectors-bg-lines span:nth-child(2) {
    top: 48%;
    left: -20%;
    animation: sectorsLineTwo 17s linear infinite;
}

.sectors-bg-lines span:nth-child(3) {
    top: 76%;
    left: -18%;
    animation: sectorsLineThree 15s linear infinite;
}

@keyframes sectorsLineOne {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.2; }
    50% { transform: translateX(7%) rotate(-8deg); opacity: 0.6; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.2; }
}

@keyframes sectorsLineTwo {
    0% { transform: translateX(9%) rotate(-8deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-8deg); opacity: 0.52; }
    100% { transform: translateX(9%) rotate(-8deg); opacity: 0.16; }
}

@keyframes sectorsLineThree {
    0% { transform: translateX(-10%) rotate(-8deg); opacity: 0.2; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.58; }
    100% { transform: translateX(-10%) rotate(-8deg); opacity: 0.2; }
}

/* responsive */
@media (max-width: 992px) {
    .sectors-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 90px 0;
    }

    .sector-card {
        padding: 24px 22px 22px;
        border-radius: 20px;
    }

    .sector-card h3 {
        font-size: 1.24rem;
    }

    .sector-card p {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .sectors-head-left h2 {
        line-height: 1.02;
    }
}

.why-exhibit-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(215, 25, 32, 0.08), transparent 28%),
        radial-gradient(circle at 85% 85%, rgba(215, 25, 32, 0.07), transparent 26%),
        linear-gradient(180deg, #101010 0%, #141414 100%);
    overflow: hidden;
    isolation: isolate;
}

.why-exhibit-section .container {
    position: relative;
    z-index: 3;
}

.why-head {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
}

.why-head-left h2 {
    font-size: clamp(2.3rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.why-head-right p {
    max-width: 560px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 1rem;
}

.why-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: start;
}

.why-feature-card {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
}

.why-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.why-feature-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    color: #d71920;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.why-feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.85rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    max-width: 480px;
}

.why-feature-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 28px;
    max-width: 520px;
}

.why-feature-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.why-stat {
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.why-stat strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-stat span {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.why-card {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.04) 100%
    );
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 25, 32, 0.26);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.why-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(215,25,32,0.12);
    border: 1px solid rgba(215,25,32,0.18);
    color: #d71920;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.why-card h4 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* background lines */
.why-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.why-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-10deg);
    opacity: 0.55;
}

.why-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: whyLineOne 13s linear infinite;
}

.why-bg-lines span:nth-child(2) {
    top: 52%;
    left: -22%;
    animation: whyLineTwo 16s linear infinite;
}

.why-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: whyLineThree 14s linear infinite;
}

.why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
}

.why-glow-1 {
    width: 240px;
    height: 240px;
    background: rgba(215, 25, 32, 0.12);
    top: 70px;
    left: -40px;
    animation: whyGlowFloat 8s ease-in-out infinite;
}

.why-glow-2 {
    width: 280px;
    height: 280px;
    background: rgba(215, 25, 32, 0.08);
    right: -70px;
    bottom: 20px;
    animation: whyGlowFloat 10s ease-in-out infinite reverse;
}

@keyframes whyLineOne {
    0% { transform: translateX(-9%) rotate(-10deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-10deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-10deg); opacity: 0.18; }
}

@keyframes whyLineTwo {
    0% { transform: translateX(8%) rotate(-10deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-10deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-10deg); opacity: 0.16; }
}

@keyframes whyLineThree {
    0% { transform: translateX(-8%) rotate(-10deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-10deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-10deg); opacity: 0.18; }
}

@keyframes whyGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

/* responsive */
@media (max-width: 1100px) {
    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-exhibit-section {
        padding: 90px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-card,
    .why-card {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .why-feature-card h3 {
        font-size: 1.45rem;
    }

    .why-card h4 {
        font-size: 1.08rem;
    }

    .why-head-left h2 {
        line-height: 1.02;
    }
}

.stats-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(215, 25, 32, 0.08), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(215, 25, 32, 0.08), transparent 30%),
        linear-gradient(180deg, #141414 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.stats-section .container {
    position: relative;
    z-index: 3;
}

.stats-head {
    max-width: 760px;
    margin-bottom: 55px;
}

.stats-head h2 {
    font-size: clamp(2.3rem, 4.8vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.stats-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
    max-width: 680px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.stat-box {
    position: relative;
    padding: 30px 24px 28px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.12);
}

.stat-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215, 25, 32, 0.2) 100%);
    margin-bottom: 24px;
    transition: width 0.35s ease;
}

.stat-box:hover .stat-line {
    width: 108px;
}

.stat-number {
    position: relative;
    z-index: 2;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 14px;
}

.stat-box h3 {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.stat-box p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* background */
.stats-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stats-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.stats-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: statsLineOne 13s linear infinite;
}

.stats-bg-lines span:nth-child(2) {
    top: 50%;
    left: -22%;
    animation: statsLineTwo 16s linear infinite;
}

.stats-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: statsLineThree 14s linear infinite;
}

.stats-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
}

.stats-glow-1 {
    width: 240px;
    height: 240px;
    background: rgba(215, 25, 32, 0.12);
    top: 80px;
    left: -40px;
    animation: statsGlowFloat 8s ease-in-out infinite;
}

.stats-glow-2 {
    width: 280px;
    height: 280px;
    background: rgba(215, 25, 32, 0.08);
    right: -70px;
    bottom: 20px;
    animation: statsGlowFloat 10s ease-in-out infinite reverse;
}

@keyframes statsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes statsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes statsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes statsGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

/* responsive */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 90px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 24px 22px 22px;
        border-radius: 20px;
    }

    .stats-head h2 {
        line-height: 1.02;
    }

    .stat-number {
        font-size: 3rem;
    }
}

.cta-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    background: #fff;
    color: #d71920;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* outline */
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #d71920;
}

/* background lines */
.cta-bg-lines span {
    position: absolute;
    width: 140%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.4;
}

.cta-bg-lines span:nth-child(1) {
    top: 30%;
    left: -20%;
    transform: rotate(-10deg);
    animation: ctaLine 10s linear infinite;
}

.cta-bg-lines span:nth-child(2) {
    bottom: 25%;
    left: -25%;
    transform: rotate(-10deg);
    animation: ctaLine 14s linear infinite reverse;
}

@keyframes ctaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* glow */
.cta-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    filter: blur(120px);
    top: -80px;
    right: -80px;
    animation: glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {
    0% { transform: translate(0,0); }
    50% { transform: translate(-20px, 20px); }
    100% { transform: translate(0,0); }
}

/* responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

.site-footer {
    position: relative;
    padding: 90px 0 30px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.07), transparent 25%),
        linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    isolation: isolate;
}

.site-footer .container {
    position: relative;
    z-index: 3;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 360px;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 0.96rem;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.footer-socials a:hover {
    background: #d71920;
    border-color: #d71920;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a,
.footer-contact ul li,
.footer-contact ul li a {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #d71920;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,0.50);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

/* background lines */
.footer-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-bg-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.06) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-8deg);
    opacity: 0.45;
}

.footer-bg-lines span:nth-child(1) {
    top: 26%;
    left: -18%;
    animation: footerLineOne 15s linear infinite;
}

.footer-bg-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: footerLineTwo 17s linear infinite;
}

@keyframes footerLineOne {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-8deg); opacity: 0.46; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes footerLineTwo {
    0% { transform: translateX(8%) rotate(-8deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(8%) rotate(-8deg); opacity: 0.16; }
}

/* responsive */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 70px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 28px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


.about-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.about-page-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.about-page-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.about-page-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-page-hero h1 {
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.about-page-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.about-page-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-page-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.about-page-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: aboutHeroLineOne 14s linear infinite;
}

.about-page-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: aboutHeroLineTwo 17s linear infinite;
}

.about-page-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: aboutHeroLineThree 15s linear infinite;
}

.about-page-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.about-page-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: aboutGlowFloat 8s ease-in-out infinite;
}

.about-page-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: aboutGlowFloat 10s ease-in-out infinite reverse;
}

/* INTRO */
.about-intro-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    overflow: hidden;
}

.about-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.about-intro-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.about-intro-right p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-intro-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-intro-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(215,25,32,0.16),
        rgba(255,255,255,0.06),
        rgba(215,25,32,0.16),
        transparent
    );
    transform: rotate(-8deg);
    opacity: 0.4;
}

.about-intro-lines span:nth-child(1) {
    top: 30%;
    left: -18%;
    animation: aboutIntroLine 13s linear infinite;
}

.about-intro-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: aboutIntroLine 17s linear infinite reverse;
}

/* HIGHLIGHT */
.about-highlight-section {
    padding: 40px 0 110px;
    background: linear-gradient(180deg, #121212 0%, #101010 100%);
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.about-highlight-card {
    position: relative;
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.26);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 28px rgba(215,25,32,0.10);
}

.about-highlight-card.large {
    grid-row: span 2;
    min-height: 100%;
}

.mini-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #d71920;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-highlight-card.large h3 {
    font-size: 1.9rem;
    line-height: 1.08;
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-highlight-card.large p,
.about-highlight-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.97rem;
}

.highlight-number {
    display: block;
    margin-bottom: 16px;
    color: rgba(215,25,32,0.96);
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.about-highlight-card h4 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

/* VALUES */
.about-values-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #101010 0%, #141414 100%);
    overflow: hidden;
    isolation: isolate;
}

.about-values-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 48px;
}

.about-values-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.about-values-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.about-values-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-value-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.about-value-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.value-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.about-value-box:hover .value-line {
    width: 106px;
}

.about-value-box h3 {
    font-size: 1.2rem;
    line-height: 1.12;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.about-value-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-values-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-values-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.about-values-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: aboutValuesLineOne 14s linear infinite;
}

.about-values-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: aboutValuesLineTwo 16s linear infinite;
}

.about-values-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: aboutValuesLineThree 15s linear infinite;
}

/* ORGANIZER */
.organizer-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #141414 0%, #111111 100%);
    overflow: hidden;
    isolation: isolate;
}

.organizer-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
}

.organizer-left h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 22px;
}

.organizer-left p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.organizer-card {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.organizer-card-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #d71920;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.organizer-card h3 {
    font-size: 1.85rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.organizer-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 28px;
}

.organizer-points {
    display: grid;
    gap: 14px;
}

.organizer-point {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.organizer-point strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.organizer-point span {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
}

.organizer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.organizer-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215,25,32,0.12);
    top: 60px;
    left: -60px;
    animation: aboutGlowFloat 8s ease-in-out infinite;
}

.organizer-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(215,25,32,0.08);
    right: -80px;
    bottom: 30px;
    animation: aboutGlowFloat 10s ease-in-out infinite reverse;
}

/* STATS / GOALS */
.about-stats-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.about-stats-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.about-stats-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-stat-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.about-stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.about-stat-number {
    display: block;
    margin-bottom: 16px;
    color: rgba(215,25,32,0.96);
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.about-stat-box h3 {
    font-size: 1.15rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.about-stat-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* CTA */
.about-cta-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

.about-cta-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.about-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.about-cta-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-btn-primary,
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn-primary {
    background: #fff;
    color: #d71920;
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.about-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.about-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.about-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-cta-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.about-cta-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: aboutCtaLine 12s linear infinite;
}

.about-cta-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: aboutCtaLine 16s linear infinite reverse;
}

/* COMMON */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes aboutHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes aboutHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes aboutHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes aboutGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes aboutIntroLine {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes aboutValuesLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes aboutValuesLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes aboutValuesLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes aboutCtaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .about-intro-grid,
    .organizer-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-highlight-card.large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .about-page-hero,
    .about-intro-section,
    .about-values-section,
    .organizer-section,
    .about-stats-section,
    .about-cta-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .about-highlight-section {
        padding: 20px 0 90px;
    }

    .about-highlight-grid,
    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight-card,
    .about-value-box,
    .organizer-card,
    .about-stat-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .organizer-card h3,
    .about-highlight-card.large h3 {
        font-size: 1.45rem;
    }

    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
    }

    .about-cta-actions {
        flex-direction: column;
    }

    .about-page-hero h1,
    .about-intro-left h2,
    .about-values-head h2,
    .organizer-left h2,
    .about-stats-head h2,
    .about-cta-box h2 {
        line-height: 1.02;
    }
}


.packages-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.packages-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.packages-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.packages-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.packages-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.packages-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.packages-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.packages-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.packages-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: packagesHeroLineOne 14s linear infinite;
}

.packages-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: packagesHeroLineTwo 17s linear infinite;
}

.packages-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: packagesHeroLineThree 15s linear infinite;
}

.packages-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.packages-hero-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: packagesGlowFloat 8s ease-in-out infinite;
}

.packages-hero-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: packagesGlowFloat 10s ease-in-out infinite reverse;
}

/* PACKAGES GRID */
.packages-grid-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #151515 0%, #111111 100%);
    overflow: hidden;
    isolation: isolate;
}

.packages-grid-section .container {
    position: relative;
    z-index: 3;
}

.packages-section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.packages-section-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.packages-section-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.package-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.30),
        0 0 30px rgba(215,25,32,0.12);
}

.package-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.package-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(215,25,32,0.14);
    border: 1px solid rgba(215,25,32,0.18);
    color: #d71920;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.package-type {
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.package-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 20px;
    max-width: 560px;
}

.package-divider {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.18) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.package-card:hover .package-divider {
    width: 128px;
}

.package-features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.package-features li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.74);
    font-size: 0.96rem;
    line-height: 1.7;
}

.package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d71920;
    box-shadow: 0 0 14px rgba(215,25,32,0.5);
}

.package-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(215,25,32,0.24);
}

.package-btn:hover {
    transform: translateY(-3px);
    background: #eb1d25;
}

.featured {
    border-color: rgba(215,25,32,0.22);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.28),
        0 0 34px rgba(215,25,32,0.10);
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    color: #d71920;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.wide-card {
    grid-column: 1 / -1;
}

/* includes */
.package-includes-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.package-includes-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.package-includes-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.package-includes-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.package-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.include-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.include-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.include-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.include-box:hover .include-line {
    width: 108px;
}

.include-box h3 {
    font-size: 1.18rem;
    line-height: 1.14;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.include-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* sponsorship CTA */
.sponsorship-inquiry-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    isolation: isolate;
}

.sponsorship-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.sponsorship-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.sponsorship-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.sponsorship-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sponsorship-btn-primary,
.sponsorship-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sponsorship-btn-primary {
    background: #fff;
    color: #d71920;
}

.sponsorship-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.sponsorship-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.sponsorship-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.sponsorship-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sponsorship-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.sponsorship-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: sponsorshipLine 12s linear infinite;
}

.sponsorship-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: sponsorshipLine 16s linear infinite reverse;
}

/* bg lines */
.packages-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.packages-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.packages-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: packagesLineOne 14s linear infinite;
}

.packages-bg-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: packagesLineTwo 16s linear infinite;
}

.packages-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: packagesLineThree 15s linear infinite;
}

/* common */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* animations */
@keyframes packagesHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes packagesHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes packagesHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes packagesGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes packagesLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes packagesLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes packagesLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes sponsorshipLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* responsive */
@media (max-width: 1100px) {
    .packages-grid,
    .package-includes-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .packages-hero,
    .packages-grid-section,
    .package-includes-section,
    .sponsorship-inquiry-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .package-card,
    .include-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .package-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .package-card h3,
    .sponsorship-box h2,
    .packages-section-head h2,
    .package-includes-head h2,
    .packages-hero h1 {
        line-height: 1.02;
    }

    .sponsorship-btn-primary,
    .sponsorship-btn-secondary {
        width: 100%;
    }

    .sponsorship-actions {
        flex-direction: column;
    }
}


.presentation-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.presentation-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.presentation-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.presentation-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.presentation-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.presentation-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.presentation-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.presentation-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.presentation-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: presentationHeroLineOne 14s linear infinite;
}

.presentation-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: presentationHeroLineTwo 17s linear infinite;
}

.presentation-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: presentationHeroLineThree 15s linear infinite;
}

.presentation-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.presentation-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: presentationGlowFloat 8s ease-in-out infinite;
}

.presentation-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: presentationGlowFloat 10s ease-in-out infinite reverse;
}

/* INTRO */
.presentation-intro {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    overflow: hidden;
}

.presentation-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.presentation-intro-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.presentation-intro-right p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.presentation-intro-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.presentation-intro-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(215,25,32,0.16),
        rgba(255,255,255,0.06),
        rgba(215,25,32,0.16),
        transparent
    );
    transform: rotate(-8deg);
    opacity: 0.4;
}

.presentation-intro-lines span:nth-child(1) {
    top: 30%;
    left: -18%;
    animation: presentationIntroLine 13s linear infinite;
}

.presentation-intro-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: presentationIntroLine 17s linear infinite reverse;
}

/* CARDS */
.presentation-cards-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #121212 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.presentation-cards-section .container {
    position: relative;
    z-index: 3;
}

.presentation-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.presentation-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.presentation-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.presentation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.30),
        0 0 30px rgba(215,25,32,0.12);
}

.presentation-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.presentation-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(215,25,32,0.14);
    border: 1px solid rgba(215,25,32,0.18);
    color: #d71920;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.presentation-card-type {
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.presentation-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.presentation-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 20px;
    max-width: 560px;
}

.presentation-divider {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.18) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.presentation-card:hover .presentation-divider {
    width: 128px;
}

.presentation-features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.presentation-features li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.74);
    font-size: 0.96rem;
    line-height: 1.7;
}

.presentation-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d71920;
    box-shadow: 0 0 14px rgba(215,25,32,0.5);
}

.presentation-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(215,25,32,0.24);
}

.presentation-btn:hover {
    transform: translateY(-3px);
    background: #eb1d25;
}

.featured {
    border-color: rgba(215,25,32,0.22);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.28),
        0 0 34px rgba(215,25,32,0.10);
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    color: #d71920;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.presentation-cards-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.presentation-cards-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.presentation-cards-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: presentationCardsLineOne 14s linear infinite;
}

.presentation-cards-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: presentationCardsLineTwo 16s linear infinite;
}

.presentation-cards-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: presentationCardsLineThree 15s linear infinite;
}

/* CTA */
.presentation-cta-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    isolation: isolate;
}

.presentation-cta-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.presentation-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.presentation-cta-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.presentation-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.presentation-btn-primary,
.presentation-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.presentation-btn-primary {
    background: #fff;
    color: #d71920;
}

.presentation-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.presentation-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.presentation-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.presentation-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.presentation-cta-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.presentation-cta-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: presentationCtaLine 12s linear infinite;
}

.presentation-cta-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: presentationCtaLine 16s linear infinite reverse;
}

/* common */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* animations */
@keyframes presentationHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes presentationHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes presentationHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes presentationGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes presentationIntroLine {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes presentationCardsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes presentationCardsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes presentationCardsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes presentationCtaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* responsive */
@media (max-width: 1100px) {
    .presentation-intro-grid,
    .presentation-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .presentation-hero,
    .presentation-intro,
    .presentation-cards-section,
    .presentation-cta-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .presentation-card {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .presentation-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .presentation-card h3,
    .presentation-cta-box h2,
    .presentation-intro-left h2,
    .presentation-hero h1 {
        line-height: 1.02;
    }

    .presentation-btn-primary,
    .presentation-btn-secondary {
        width: 100%;
    }

    .presentation-cta-actions {
        flex-direction: column;
    }
}

.exhibitor-info-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.info-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.info-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.info-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.info-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.info-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.info-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.info-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.info-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: infoHeroLineOne 14s linear infinite;
}

.info-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: infoHeroLineTwo 17s linear infinite;
}

.info-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: infoHeroLineThree 15s linear infinite;
}

.info-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.info-hero-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: infoGlowFloat 8s ease-in-out infinite;
}

.info-hero-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: infoGlowFloat 10s ease-in-out infinite reverse;
}

/* INTRO */
.info-intro-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    overflow: hidden;
}

.info-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.info-intro-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.info-intro-right p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.info-intro-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.info-intro-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(215,25,32,0.16),
        rgba(255,255,255,0.06),
        rgba(215,25,32,0.16),
        transparent
    );
    transform: rotate(-8deg);
    opacity: 0.4;
}

.info-intro-lines span:nth-child(1) {
    top: 30%;
    left: -18%;
    animation: infoIntroLine 13s linear infinite;
}

.info-intro-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: infoIntroLine 17s linear infinite reverse;
}

/* CARDS */
.info-cards-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #121212 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.info-cards-section .container {
    position: relative;
    z-index: 3;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.info-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.30),
        0 0 30px rgba(215,25,32,0.12);
}

.large-card {
    grid-row: span 2;
}

.info-card-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    color: #d71920;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.info-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.9rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.info-card h4 {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    line-height: 1.12;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.info-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-bottom: 14px;
}

.info-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 18px;
    color: rgba(215,25,32,0.96);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.info-cards-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.info-cards-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.info-cards-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: infoCardsLineOne 14s linear infinite;
}

.info-cards-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: infoCardsLineTwo 16s linear infinite;
}

.info-cards-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: infoCardsLineThree 15s linear infinite;
}

/* DETAILS */
.info-details-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #101010 0%, #151515 100%);
}

.info-details-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.info-details-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.info-details-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.info-details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.detail-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.detail-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.detail-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.detail-box:hover .detail-line {
    width: 108px;
}

.detail-box h3 {
    font-size: 1.18rem;
    line-height: 1.14;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.detail-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* REQUIREMENTS */
.info-requirements-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #151515 0%, #111111 100%);
    overflow: hidden;
    isolation: isolate;
}

.requirements-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
}

.requirements-left h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 22px;
}

.requirements-left p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.requirements-card {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.requirements-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.requirements-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirements-item:first-child {
    padding-top: 0;
}

.requirements-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.requirements-item span {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.requirements-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.requirements-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.requirements-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: requirementsLineOne 14s linear infinite;
}

.requirements-bg-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: requirementsLineTwo 16s linear infinite;
}

.requirements-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: requirementsLineThree 15s linear infinite;
}

/* NOTES */
.info-notes-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.info-notes-box {
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.info-notes-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 28px;
}

.info-notes-list {
    display: grid;
    gap: 16px;
}

.note-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.note-item:first-child {
    border-top: none;
    padding-top: 0;
}

.note-item span {
    color: rgba(215,25,32,0.96);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.note-item p {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* CTA */
.info-cta-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    isolation: isolate;
}

.info-cta-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.info-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.info-cta-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.info-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.info-btn-primary,
.info-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-btn-primary {
    background: #fff;
    color: #d71920;
}

.info-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.info-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.info-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.info-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.info-cta-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.info-cta-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: infoCtaLine 12s linear infinite;
}

.info-cta-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: infoCtaLine 16s linear infinite reverse;
}

/* common */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* animations */
@keyframes infoHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes infoHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes infoHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes infoGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes infoIntroLine {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes infoCardsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes infoCardsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes infoCardsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes requirementsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes requirementsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes requirementsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes infoCtaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* responsive */
@media (max-width: 1100px) {
    .info-intro-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .large-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .info-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .info-hero,
    .info-intro-section,
    .info-cards-section,
    .info-details-section,
    .info-requirements-section,
    .info-notes-section,
    .info-cta-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .info-cards-grid,
    .info-details-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .detail-box,
    .requirements-card,
    .info-notes-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .note-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .info-btn-primary,
    .info-btn-secondary {
        width: 100%;
    }

    .info-cta-actions {
        flex-direction: column;
    }

    .info-hero h1,
    .info-intro-left h2,
    .requirements-left h2,
    .info-details-head h2,
    .info-notes-box h2,
    .info-cta-box h2 {
        line-height: 1.02;
    }
}


.accommodation-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.accommodation-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.accommodation-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.accommodation-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.accommodation-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.accommodation-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.accommodation-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.accommodation-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.accommodation-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: accommodationHeroLineOne 14s linear infinite;
}

.accommodation-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: accommodationHeroLineTwo 17s linear infinite;
}

.accommodation-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: accommodationHeroLineThree 15s linear infinite;
}

.accommodation-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.accommodation-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: accommodationGlowFloat 8s ease-in-out infinite;
}

.accommodation-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: accommodationGlowFloat 10s ease-in-out infinite reverse;
}

/* INTRO */
.accommodation-intro {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    overflow: hidden;
}

.accommodation-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.accommodation-intro-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.accommodation-intro-right p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.accommodation-intro-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.accommodation-intro-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(215,25,32,0.16),
        rgba(255,255,255,0.06),
        rgba(215,25,32,0.16),
        transparent
    );
    transform: rotate(-8deg);
    opacity: 0.4;
}

.accommodation-intro-lines span:nth-child(1) {
    top: 30%;
    left: -18%;
    animation: accommodationIntroLine 13s linear infinite;
}

.accommodation-intro-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: accommodationIntroLine 17s linear infinite reverse;
}

/* HOTELS */
.hotels-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #121212 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.hotels-section .container {
    position: relative;
    z-index: 3;
}

.hotels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hotel-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.hotel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.hotel-card:hover {
    transform: translateY(-10px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.30),
        0 0 30px rgba(215,25,32,0.12);
}

.featured-hotel {
    border-color: rgba(215,25,32,0.22);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.28),
        0 0 34px rgba(215,25,32,0.10);
}

.hotel-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    color: #d71920;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hotel-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.hotel-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(215,25,32,0.14);
    border: 1px solid rgba(215,25,32,0.18);
    color: #d71920;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hotel-type {
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hotel-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.85rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.hotel-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 20px;
    max-width: 560px;
}

.hotel-divider {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.18) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.hotel-card:hover .hotel-divider {
    width: 128px;
}

.hotel-features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.hotel-features li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.74);
    font-size: 0.96rem;
    line-height: 1.7;
}

.hotel-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d71920;
    box-shadow: 0 0 14px rgba(215,25,32,0.5);
}

.hotel-actions {
    position: relative;
    z-index: 2;
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(215,25,32,0.24);
}

.hotel-btn:hover {
    transform: translateY(-3px);
    background: #eb1d25;
}

.hotels-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hotels-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.hotels-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: hotelsLineOne 14s linear infinite;
}

.hotels-bg-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: hotelsLineTwo 16s linear infinite;
}

.hotels-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: hotelsLineThree 15s linear infinite;
}

/* INFO SECTION */
.accommodation-info-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #101010 0%, #151515 100%);
}

.accommodation-info-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.accommodation-info-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.accommodation-info-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.accommodation-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.accommodation-info-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.accommodation-info-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.accommodation-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.accommodation-info-box:hover .accommodation-line {
    width: 108px;
}

.accommodation-info-box h3 {
    font-size: 1.18rem;
    line-height: 1.14;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.accommodation-info-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* CTA */
.accommodation-cta-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    isolation: isolate;
}

.accommodation-cta-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.accommodation-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.accommodation-cta-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.accommodation-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.accommodation-btn-primary,
.accommodation-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.accommodation-btn-primary {
    background: #fff;
    color: #d71920;
}

.accommodation-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.accommodation-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.accommodation-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.accommodation-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.accommodation-cta-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.accommodation-cta-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: accommodationCtaLine 12s linear infinite;
}

.accommodation-cta-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: accommodationCtaLine 16s linear infinite reverse;
}

/* common */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* animations */
@keyframes accommodationHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes accommodationHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes accommodationHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes accommodationGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes accommodationIntroLine {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes hotelsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes hotelsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes hotelsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes accommodationCtaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* responsive */
@media (max-width: 1100px) {
    .accommodation-intro-grid,
    .hotels-grid,
    .accommodation-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .accommodation-hero,
    .accommodation-intro,
    .hotels-section,
    .accommodation-info-section,
    .accommodation-cta-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hotel-card,
    .accommodation-info-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .hotel-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .accommodation-btn-primary,
    .accommodation-btn-secondary {
        width: 100%;
    }

    .accommodation-cta-actions {
        flex-direction: column;
    }

    .accommodation-hero h1,
    .accommodation-intro-left h2,
    .accommodation-info-head h2,
    .accommodation-cta-box h2 {
        line-height: 1.02;
    }
}


.visitors-info-page {
    position: relative;
    background: #111111;
    overflow: hidden;
}

/* HERO */
.visitors-hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215, 25, 32, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.08), transparent 25%),
        linear-gradient(180deg, #111111 0%, #151515 100%);
    overflow: hidden;
    isolation: isolate;
}

.visitors-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.visitors-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.visitors-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.visitors-hero p {
    max-width: 700px;
    color: rgba(255,255,255,0.74);
    font-size: 1.08rem;
    line-height: 1.9;
}

.visitors-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.visitors-hero-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 10%,
        rgba(215,25,32,0.18) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.55;
}

.visitors-hero-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: visitorsHeroLineOne 14s linear infinite;
}

.visitors-hero-lines span:nth-child(2) {
    top: 46%;
    left: -16%;
    animation: visitorsHeroLineTwo 17s linear infinite;
}

.visitors-hero-lines span:nth-child(3) {
    top: 78%;
    left: -20%;
    animation: visitorsHeroLineThree 15s linear infinite;
}

.visitors-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
}

.visitors-glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(215, 25, 32, 0.14);
    top: 40px;
    left: -50px;
    animation: visitorsGlowFloat 8s ease-in-out infinite;
}

.visitors-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(215, 25, 32, 0.10);
    right: -80px;
    bottom: 10px;
    animation: visitorsGlowFloat 10s ease-in-out infinite reverse;
}

/* OVERVIEW */
.visitors-overview-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #151515 0%, #121212 100%);
    overflow: hidden;
}

.visitors-overview-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: start;
}

.visitors-overview-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
}

.visitors-overview-right p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.visitors-overview-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.visitors-overview-lines span {
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(215,25,32,0.16),
        rgba(255,255,255,0.06),
        rgba(215,25,32,0.16),
        transparent
    );
    transform: rotate(-8deg);
    opacity: 0.4;
}

.visitors-overview-lines span:nth-child(1) {
    top: 30%;
    left: -18%;
    animation: visitorsOverviewLine 13s linear infinite;
}

.visitors-overview-lines span:nth-child(2) {
    top: 72%;
    left: -15%;
    animation: visitorsOverviewLine 17s linear infinite reverse;
}

/* FACTS */
.visitors-facts-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #121212 0%, #101010 100%);
    overflow: hidden;
    isolation: isolate;
}

.visitors-facts-section .container {
    position: relative;
    z-index: 3;
}

.visitors-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.visitor-fact-card {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

.visitor-fact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.02) 0%,
        rgba(215,25,32,0.05) 100%
    );
    pointer-events: none;
}

.visitor-fact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.26);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 28px rgba(215,25,32,0.10);
}

.featured-fact {
    grid-column: span 2;
}

.visitor-fact-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    color: #d71920;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.visitor-fact-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 14px;
    color: #d71920;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.visitor-fact-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.visitor-fact-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    font-size: 0.96rem;
    line-height: 1.8;
}

.visitors-facts-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.visitors-facts-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.visitors-facts-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: visitorsFactsLineOne 14s linear infinite;
}

.visitors-facts-bg-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: visitorsFactsLineTwo 16s linear infinite;
}

.visitors-facts-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: visitorsFactsLineThree 15s linear infinite;
}

/* EXPECT */
.visitors-expect-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #101010 0%, #151515 100%);
}

.visitors-expect-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.visitors-expect-head h2 {
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 18px;
}

.visitors-expect-head p {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
}

.visitors-expect-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.expect-box {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 16px 35px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.expect-box:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.28);
    box-shadow:
        0 28px 55px rgba(0,0,0,0.28),
        0 0 26px rgba(215,25,32,0.10);
}

.expect-line {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #d71920 0%, rgba(215,25,32,0.2) 100%);
    margin-bottom: 22px;
    transition: width 0.35s ease;
}

.expect-box:hover .expect-line {
    width: 108px;
}

.expect-box h3 {
    font-size: 1.18rem;
    line-height: 1.14;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.expect-box p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* HIGHLIGHTS */
.visitors-highlights-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,0.08), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(215,25,32,0.08), transparent 28%),
        linear-gradient(180deg, #151515 0%, #111111 100%);
    overflow: hidden;
    isolation: isolate;
}

.visitors-highlights-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
}

.visitors-highlights-left h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 22px;
}

.visitors-highlights-left p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.visitors-highlights-right {
    display: grid;
    gap: 16px;
}

.highlight-visitor-card {
    padding: 22px 24px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.highlight-visitor-card span {
    display: block;
    margin-bottom: 12px;
    color: rgba(215,25,32,0.96);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.highlight-visitor-card h3 {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-visitor-card p {
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlights-bg-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.highlights-bg-lines span {
    position: absolute;
    display: block;
    width: 155%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(215,25,32,0.00) 12%,
        rgba(215,25,32,0.16) 40%,
        rgba(255,255,255,0.08) 50%,
        rgba(215,25,32,0.18) 60%,
        transparent 100%
    );
    transform: rotate(-9deg);
    opacity: 0.5;
}

.highlights-bg-lines span:nth-child(1) {
    top: 20%;
    left: -18%;
    animation: highlightsLineOne 14s linear infinite;
}

.highlights-bg-lines span:nth-child(2) {
    top: 50%;
    left: -20%;
    animation: highlightsLineTwo 16s linear infinite;
}

.highlights-bg-lines span:nth-child(3) {
    top: 78%;
    left: -16%;
    animation: highlightsLineThree 15s linear infinite;
}

/* PRACTICAL */
.visitors-practical-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.visitors-practical-box {
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.visitors-practical-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 28px;
}

.visitors-practical-list {
    display: grid;
    gap: 16px;
}

.practical-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.practical-item:first-child {
    border-top: none;
    padding-top: 0;
}

.practical-item span {
    color: rgba(215,25,32,0.96);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.practical-item p {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* CTA */
.visitors-cta-section {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #d71920 0%, #a81218 100%);
    overflow: hidden;
    isolation: isolate;
}

.visitors-cta-box {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-tag.light {
    color: rgba(255,255,255,0.82);
}

.visitors-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
}

.visitors-cta-box p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.85;
}

.visitors-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.visitors-btn-primary,
.visitors-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.visitors-btn-primary {
    background: #fff;
    color: #d71920;
}

.visitors-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.visitors-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.72);
}

.visitors-btn-secondary:hover {
    background: #fff;
    color: #d71920;
}

.visitors-cta-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.visitors-cta-lines span {
    position: absolute;
    width: 150%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity: 0.35;
}

.visitors-cta-lines span:nth-child(1) {
    top: 32%;
    left: -20%;
    transform: rotate(-10deg);
    animation: visitorsCtaLine 12s linear infinite;
}

.visitors-cta-lines span:nth-child(2) {
    bottom: 28%;
    left: -18%;
    transform: rotate(-10deg);
    animation: visitorsCtaLine 16s linear infinite reverse;
}

/* common */
.section-tag {
    display: inline-block;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* animations */
@keyframes visitorsHeroLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes visitorsHeroLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes visitorsHeroLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes visitorsGlowFloat {
    0% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-16px) translateX(10px) scale(1.04); }
    100% { transform: translateY(0px) translateX(0px) scale(1); }
}

@keyframes visitorsOverviewLine {
    0% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-8deg); opacity: 0.42; }
    100% { transform: translateX(-8%) rotate(-8deg); opacity: 0.18; }
}

@keyframes visitorsFactsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes visitorsFactsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes visitorsFactsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes highlightsLineOne {
    0% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(7%) rotate(-9deg); opacity: 0.58; }
    100% { transform: translateX(-9%) rotate(-9deg); opacity: 0.18; }
}

@keyframes highlightsLineTwo {
    0% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
    50% { transform: translateX(-6%) rotate(-9deg); opacity: 0.52; }
    100% { transform: translateX(8%) rotate(-9deg); opacity: 0.16; }
}

@keyframes highlightsLineThree {
    0% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
    50% { transform: translateX(6%) rotate(-9deg); opacity: 0.56; }
    100% { transform: translateX(-8%) rotate(-9deg); opacity: 0.18; }
}

@keyframes visitorsCtaLine {
    0% { transform: translateX(-10%) rotate(-10deg); }
    100% { transform: translateX(10%) rotate(-10deg); }
}

/* responsive */
@media (max-width: 1100px) {
    .visitors-overview-grid,
    .visitors-highlights-layout {
        grid-template-columns: 1fr;
    }

    .visitors-facts-grid,
    .visitors-expect-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-fact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .visitors-hero,
    .visitors-overview-section,
    .visitors-facts-section,
    .visitors-expect-section,
    .visitors-highlights-section,
    .visitors-practical-section,
    .visitors-cta-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .visitors-facts-grid,
    .visitors-expect-grid {
        grid-template-columns: 1fr;
    }

    .visitor-fact-card,
    .expect-box,
    .visitors-practical-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .practical-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .visitors-btn-primary,
    .visitors-btn-secondary {
        width: 100%;
    }

    .visitors-cta-actions {
        flex-direction: column;
    }

    .visitors-hero h1,
    .visitors-overview-left h2,
    .visitors-expect-head h2,
    .visitors-highlights-left h2,
    .visitors-practical-box h2,
    .visitors-cta-box h2 {
        line-height: 1.02;
    }
}

.contact-page,
.admin-body,
.admin-panel-body {
    background: #111111;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.contact-hero-wrap {
    max-width: 760px;
}

.contact-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin: 12px 0 20px;
    line-height: 0.95;
}

.contact-hero p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.contact-form-section {
    padding: 80px 0 110px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
}

.contact-info-box,
.contact-form-box,
.admin-login-box,
.admin-stat-card,
.admin-table-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
}

.contact-info-box h2 {
    margin: 12px 0 20px;
}

.contact-info-box p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 10px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea,
.admin-login-box input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px 18px;
    color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-btn,
.admin-login-box button {
    min-height: 52px;
    border: none;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover,
.admin-login-box button:hover {
    transform: translateY(-2px);
}

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.admin-login-box {
    width: 100%;
    max-width: 420px;
    display: grid;
    gap: 16px;
}

.admin-error {
    background: rgba(215, 25, 32, 0.15);
    border: 1px solid rgba(215, 25, 32, 0.25);
    color: #fff;
    padding: 12px 14px;
    border-radius: 14px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0d0d0d;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-sidebar h2 {
    margin-bottom: 14px;
}

.admin-sidebar a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.admin-sidebar a:hover {
    background: rgba(215, 25, 32, 0.12);
    color: #fff;
}

.admin-content {
    padding: 40px;
}

.admin-content h1 {
    margin-bottom: 24px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.admin-stat-card h3 {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

.admin-stat-card strong {
    font-size: 2rem;
    color: #fff;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    vertical-align: top;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}

.admin-table th {
    color: #fff;
}

.admin-table a {
    color: #ff4b55;
    text-decoration: none;
}

@media (max-width: 992px) {
    .contact-grid,
    .admin-layout,
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-content {
        padding: 24px;
    }
}

.application-page {
    background: #111111;
    color: #fff;
}

.application-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.application-hero-wrap {
    max-width: 760px;
}

.application-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin: 12px 0 20px;
    line-height: 0.95;
}

.application-hero p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.application-form-section {
    padding: 80px 0 110px;
}

.application-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
}

.application-info-box,
.application-form-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
}

.application-info-box h2 {
    margin: 12px 0 20px;
}

.application-info-box p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 12px;
    line-height: 1.8;
}

.application-form {
    display: grid;
    gap: 18px;
}

.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px 18px;
    color: #fff;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.application-form textarea {
    resize: vertical;
}

.application-form select option {
    color: #000;
}

.application-btn {
    min-height: 54px;
    border: none;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.application-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .application-grid {
        grid-template-columns: 1fr;
    }
}

/* FRONTEND NOVOSTI */
.news-page,
.single-news-page {
    background: #111111;
    color: #fff;
}

.news-hero,
.single-news-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.news-hero-wrap,
.single-news-wrap {
    max-width: 820px;
}

.news-hero h1,
.single-news-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin: 12px 0 20px;
    line-height: 0.95;
}

.news-hero p,
.single-news-subtitle {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.news-list-section,
.single-news-content-section {
    padding: 80px 0 110px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215,25,32,0.24);
}

.news-card-image-wrap {
    display: block;
}

.news-card-image,
.single-news-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.news-card-image {
    height: 240px;
}

.news-no-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
}

.news-card-content {
    padding: 22px;
}

.news-date {
    display: inline-block;
    margin-bottom: 10px;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.news-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.news-card h2 a {
    color: #fff;
    text-decoration: none;
}

.news-subtitle {
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 16px;
}

.news-read-more {
    color: #ff4b55;
    text-decoration: none;
    font-weight: 700;
}

.single-news-content-box {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
}

.single-news-image {
    max-height: 520px;
}

.single-news-content {
    padding: 28px;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    font-size: 1rem;
}

/* ADMIN NEWS */
.admin-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-add-btn,
.admin-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.admin-add-btn:hover,
.admin-save-btn:hover {
    transform: translateY(-2px);
}

.admin-form-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    display: grid;
    gap: 20px;
    max-width: 900px;
}

.admin-form-group {
    display: grid;
    gap: 10px;
}

.admin-form-group label {
    font-weight: 700;
    color: #fff;
}

.admin-form-group input,
.admin-form-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px 18px;
    color: #fff;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.admin-form-group textarea {
    resize: vertical;
}

@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-hero,
    .single-news-hero {
        padding-top: 100px;
    }

    .single-news-content {
        padding: 22px;
    }
}