:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --black-medium: #111111;
    --black-soft: #1a1a1a;
    --gray-900: #212121;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #6b6b6b;
    --gray-400: #8a8a8a;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #e5e5e5;
    --white: #ffffff;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #d97706;
    --red: #ef4444;
    --red-dark: #dc2626;
    --green: #22c55e;
    --blue: #3b82f6;
    --purple: #a855f7;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4); }
.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-ctas { display: flex; gap: 16px; }
.mobile-toggle { display: none; padding: 8px; }
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    padding: 100px 24px;
    flex-direction: column;
    gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu .nav-link { font-size: 24px; }
.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 120px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--gold);
    display: block;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}
.hero-stat p {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Images Row */
.featured-strip {
    background: var(--black-light);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}
.featured-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}
.featured-scroll:hover { animation-play-state: paused; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.featured-item {
    flex: 0 0 300px;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.featured-item:hover img { transform: scale(1.1); }
.featured-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.featured-item-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}
.section-dark { background: var(--black-light); }
.section-darker { background: var(--black-medium); }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--gray-900) 0%, transparent 100%);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}
.product-content { padding: 24px; }
.product-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.product-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-300);
}
.product-feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 10px;
}

/* Licensing Section */
.licensing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.license-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.license-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.license-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.license-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.license-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Trust/Why Us Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-card {
    background: linear-gradient(180deg, var(--gray-900), var(--black-medium));
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}
.trust-card:hover { border-color: var(--gold); }
.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.trust-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.trust-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Responsible Gaming */
.responsible-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.responsible-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.responsible-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.responsible-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), transparent);
}
.responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.responsible-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.responsible-text {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
}
.responsible-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.responsible-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-900);
    border-radius: 8px;
}
.responsible-feature-icon {
    font-size: 24px;
}
.responsible-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-200);
}

/* How It Works */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
}
.step-card {
    text-align: center;
    position: relative;
}
.step-number {
    width: 80px;
    height: 80px;
    background: var(--black);
    border: 3px solid var(--step-color, var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}
.step-number span {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--step-color, var(--gold));
}
.step-card:nth-child(1) { --step-color: var(--gold); }
.step-card:nth-child(2) { --step-color: var(--green); }
.step-card:nth-child(3) { --step-color: var(--blue); }
.step-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* Partner CTA */
.partner-section {
    position: relative;
    overflow: hidden;
}
.partner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.partner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.partner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
}
.partner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.partner-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.partner-title .highlight { color: var(--gold); }
.partner-text {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}
.partner-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.partner-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 50px;
    font-size: 13px;
    color: var(--gray-300);
}
.partner-type-icon { color: var(--gold); }
.partner-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.partner-ctas .btn { min-width: 260px; }

/* Stats Section */
.stats-section {
    background: var(--gold);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
}
.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 18px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}
.testimonial-info h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--gray-700); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
}
.faq-icon {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.contact-text {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.contact-item h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 14px;
    color: var(--gray-400);
}
.contact-item a:hover { color: var(--gold); }
.contact-form {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-select option { background: var(--black); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}
.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    margin-top: 2px;
}
.form-checkbox-label {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}
.form-checkbox-label a { color: var(--gold); }

/* Footer */
.footer {
    background: var(--black-light);
    padding: 80px 0 32px;
    border-top: 1px solid var(--gray-800);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
}
.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    margin: 24px 0;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-column a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.3s;
}
.footer-column a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-badges {
    display: flex;
    gap: 16px;
}
.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
}
.footer-badge.gold {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--gold);
}
.footer-legal {
    font-size: 13px;
    color: var(--gray-600);
}
.footer-legal a {
    color: var(--gray-500);
    margin-left: 16px;
}
.footer-disclaimer {
    width: 100%;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-900);
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links, .nav-ctas { display: none; }
    .mobile-toggle { display: block; }
    .products-grid { grid-template-columns: 1fr; }
    .licensing-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .responsible-wrapper { grid-template-columns: 1fr; }
    .steps-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .steps-wrapper::before { display: none; }
    .partner-content { grid-template-columns: 1fr; text-align: center; }
    .partner-types { justify-content: center; }
    .partner-ctas { align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: none; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-badges { justify-content: center; }
}
@media (max-width: 768px) {
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .licensing-grid { grid-template-columns: 1fr; }
    .responsible-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden { display: none !important; }