:root {
    --bg: #111111;
    --bg-soft: #1a1a1a;
    --bg-card: #1f1f1f;
    --text: #f2f2f2;
    --muted: #c8c8c8;
    --border: #333333;
    --primary: #d61f45;
    --primary-hover: #b71739;
    --secondary: #2a2a2a;
    --secondary-hover: #3a3a3a;
    --link: #ff5f7f;
    --success: #2f9b5f;
    --error: #b93b3b;
    --container: 1180px;
    --widget-container: 1000px;
    --narrow: 860px;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.widget-container {
    width: min(var(--widget-container), calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(var(--narrow), 100%);
}

.site-header {
    background: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text);
}

.logo:hover {
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--text);
    text-decoration: none;
}

.hero {
    padding: 0.5rem 0 2rem;
    background:
        radial-gradient(circle at top right, rgba(214, 31, 69, 0.18), transparent 30%),
        linear-gradient(180deg, #161616 0%, #101010 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.hero-simple {
    max-width: 760px;
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--link);
    margin-bottom: 0.75rem;
}

.hero-copy h1,
.content-section h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.cta-group,
.center-actions,
.hero-card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-list {
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.hero-card,
.info-card,
.offer-card,
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.5rem;
}

.hero-card h2 {
    margin-top: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.widget-section,
.secondary-section,
.content-section {
    padding: 1rem 0 3rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 1.25rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-card,
.offer-card,
.stat-card {
    padding: 1.25rem;
}

.info-card h3,
.offer-card h2,
.stat-card h2 {
    margin-top: 0;
}

.text-link {
    font-weight: 700;
}

.offer-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #0d0d0d;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.login-form {
    display: grid;
    gap: 0.75rem;
    max-width: 420px;
    margin-top: 1rem;
}

.login-form label {
    font-weight: 700;
}

.login-form input {
    width: 100%;
    background: #141414;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
}

.alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.alert-error {
    background: rgba(185, 59, 59, 0.15);
    border: 1px solid rgba(185, 59, 59, 0.4);
    color: #ffb8b8;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.table-section {
    margin-top: 2rem;
}

.table-wrap {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

th {
    background: #181818;
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

.legacy-carousel-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.legacy-carousel-inner {
    width: 100%;
}

.legacy-carousel-item {
    width: 100%;
    text-align: center;
}

.legacy-carousel-item iframe {
    min-height: 540px;
}

.legacy-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero-grid,
    .cards-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    #object_container {
        width: 100% !important;
        height: auto !important;
        min-height: 420px;
    }

    #awe-customiframe-container {
        width: 100% !important;
        padding-top: 56.25%;
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        align-items: start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
    }

    .hero {
        padding-top: 2.5rem;
    }

    #object_container {
        min-height: 320px;
    }

    #awe-customiframe-container {
        min-height: 320px;
    }
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.page-content p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-inner-stacked {
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link-button {
    background: none;
    border: none;
    padding: 0;
    color: var(--link);
    cursor: pointer;
    font: inherit;
}

.footer-link-button:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
}

.cookie-banner-inner {
    width: min(980px, 100%);
    margin: 0 auto;
    background: #161616;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cookie-banner-text p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-form {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.contact-form label {
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #141414;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.alert-success {
    background: rgba(47, 155, 95, 0.15);
    border: 1px solid rgba(47, 155, 95, 0.4);
    color: #bff0cf;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 700px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: start;
    }

    .footer-inner-stacked {
        align-items: start;
    }
}