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

:root {
    --navy: #0a0e27;
    --navy-mid: #0f1535;
    --navy-light: #141b42;
    --navy-card: #111630;
    --gold-bright: #fbbf24;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --gold-muted: rgba(245, 158, 11, 0.15);
    --gold-border: rgba(245, 158, 11, 0.25);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 158, 11, 0.3);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #d97706 0%, #f59e0b 60%, #fbbf24 100%);
    --gradient-cta: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.2);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    border-bottom-color: var(--border-gold);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold-bright);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-nav-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-nav-ghost:hover {
    color: var(--gold);
    background: var(--gold-muted);
}

.btn-primary {
    background: var(--gradient-cta);
    color: #0a0e27;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

.btn-primary.btn-large {
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-primary.btn-block {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--border-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-ghost:hover {
    background: var(--gold-muted);
    border-color: var(--gold);
}

.btn-ghost.btn-large {
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    padding: 140px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    bottom: 100px;
    left: -50px;
}

.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-heading {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.text-gold {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.hs-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hs-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    margin-top: 0.2rem;
}

.hero-visual-row {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 27, 66, 0.5) 100%);
    padding: 2rem 0 0;
}

.hero-visual-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.hvc-card {
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 240px;
    flex: 1;
    max-width: 320px;
}

.hvc-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hvc-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hvc-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.hvc-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hvc-badge.up {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.2);
}

.section-tag {
    display: inline-block;
    background: var(--gold-muted);
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.section-advertisers {
    padding: 120px 0;
    background: var(--navy-mid);
}

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

.adv-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.adv-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.adv-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.adv-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
}

.adv-card-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.section-publishers {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.section-publishers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pub-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.pub-left {
    position: sticky;
    top: 120px;
}

.pub-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.pub-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pub-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    transition: all 0.35s ease;
}

.pub-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.12);
    transform: translateX(6px);
}

.pub-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.pub-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pub-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pub-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.pub-metric {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.pm-val {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.pm-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section-stats {
    padding: 100px 0;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, rgba(251, 191, 36, 0.04) 100%);
    pointer-events: none;
}

.stats-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-heading {
    margin-bottom: 4rem;
}

.section-tag-dark {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--border-gold);
}

.stats-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 0.75rem;
}

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

.stat-box {
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gold-muted);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.section-partners {
    padding: 120px 0;
    background: var(--navy-mid);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.partner-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
}

.partner-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.partner-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.section-contact {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.cd-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.25s;
}

.cd-link:hover {
    color: var(--gold-bright);
    text-decoration: underline;
}

.cd-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-wrap {
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--navy-mid);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f59e0b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.footer {
    background: var(--navy-card);
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.footer-email-block {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feb-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feb-email {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s;
    word-break: break-all;
}

.feb-email:hover {
    color: #fff;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes float-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hvc-card-1 { animation: float-up 4s ease-in-out infinite; animation-delay: 0s; }
.hvc-card-2 { animation: float-up 4s ease-in-out infinite; animation-delay: 0.7s; }
.hvc-card-3 { animation: float-up 4s ease-in-out infinite; animation-delay: 1.4s; }

@media (max-width: 1200px) {
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .pub-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pub-left {
        position: static;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-mid);
        border-bottom: 1px solid var(--border-gold);
        padding: 1.5rem 1.5rem;
        gap: 1.25rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-stat {
        padding: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual-cards {
        flex-direction: column;
        align-items: center;
    }

    .hvc-card {
        max-width: 100%;
        width: 100%;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }
}
