:root {
    --hz-brand-primary: #FF416C;
    --hz-brand-gradient: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    --hz-surface-light: #ffffff;
    --hz-surface-dim: #f8f9fb;
    --hz-text-main: #1d1d1f;
    --hz-text-muted: #86868b;
    --hz-radius-sm: 11px;
    --hz-radius-lg: 23px;
    --hz-shadow-soft: 0 14px 28px rgba(0,0,0,0.06);
    --hz-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--hz-font-stack);
    color: var(--hz-text-main);
    background-color: var(--hz-surface-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 17px;
}

a {
    color: var(--hz-brand-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover { opacity: 0.8; }

.hz-center-text { text-align: center; }
.hz-bg-light { background-color: var(--hz-surface-dim); }

/* Navigation */
.hz-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 18px 0;
}

.hz-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hz-logo-brand {
    font-size: 26px;
    font-weight: 800;
    background: var(--hz-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Buttons */
.hz-btn-primary, .hz-btn-large {
    background: var(--hz-brand-gradient);
    color: #fff;
    border: none;
    border-radius: var(--hz-radius-lg);
    padding: 11px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 65, 108, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hz-btn-large {
    padding: 16px 34px;
    font-size: 18px;
    border-radius: 30px;
}

.hz-btn-primary:hover, .hz-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 65, 108, 0.4);
}

.hz-btn-ghost {
    background: transparent;
    color: var(--hz-text-main);
    border: none;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 22px;
    cursor: pointer;
}

/* Hero Section */
.hz-hero-section {
    max-width: 1180px;
    margin: 60px auto 80px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 55px;
}

.hz-hero-content {
    flex: 1;
}

.hz-badge-18 {
    display: inline-block;
    background: #ffeded;
    color: #d10000;
    padding: 6px 14px;
    border-radius: var(--hz-radius-sm);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 22px;
}

.hz-hero-title {
    font-size: 52px;
    line-height: 1.1;
}

.hz-hero-subtitle {
    font-size: 18px;
    color: var(--hz-text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hz-hero-image-box {
    flex: 1;
    position: relative;
}

.hz-hero-img {
    width: 100%;
    border-radius: var(--hz-radius-lg);
    box-shadow: var(--hz-shadow-soft);
    object-fit: cover;
    height: 500px;
}

/* Content Blocks */
.hz-content-block {
    padding: 85px 22px;
}

.hz-container {
    max-width: 960px;
    margin: 0 auto;
}

.hz-container-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
}

.hz-text-column p {
    margin-bottom: 19px;
    color: #444;
}

.hz-faq-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--hz-radius-sm);
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Footer */
.hz-footer-wrap {
    background: #111113;
    color: #f1f1f1;
    padding: 75px 22px 30px;
    margin-top: 50px;
}

.hz-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
}

.hz-footer-col h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 22px;
}

.hz-footer-col p, .hz-footer-col a {
    color: #a1a1a6;
    margin-bottom: 12px;
}

.hz-footer-col ul {
    list-style: none;
}

.hz-footer-col ul li {
    margin-bottom: 12px;
}

.hz-warning-text {
    font-size: 13px;
    line-height: 1.5;
    border-left: 3px solid #ff4b4b;
    padding-left: 14px;
}

.hz-footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px;
    color: #777;
    font-size: 14px;
}

/* Modals */
.hz-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.hz-modal-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 45px 35px;
    border-radius: var(--hz-radius-lg);
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hz-close-btn {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.hz-input-field {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: var(--hz-radius-sm);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.hz-input-field:focus {
    border-color: var(--hz-brand-primary);
}

.hz-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #666;
}

/* Cookie Bar */
.hz-cookie-bar {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: #fff;
    padding: 22px 30px;
    border-radius: var(--hz-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 998;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid var(--hz-brand-primary);
}

.hz-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.hz-cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

@media (max-width: 768px) {
    .hz-hero-section { flex-direction: column; text-align: center; margin-top: 30px; }
    .hz-hero-title { font-size: 38px; }
    .hz-container-grid { grid-template-columns: 1fr; gap: 40px; }
    .hz-cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .hz-cookie-bar { bottom: 10px; left: 10px; right: 10px; padding: 15px; }
}