/* ===================================
   IGT WORLD — Premium Design System
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-dark: #080C15;
    --bg-mid: #0E1420;
    --surface-dark: #131929;
    --surface-mid: #192033;
    --surface-light: #1E2A40;
    --surface-hover: #243350;

    --primary: #F59E0B;
    --primary-light: #FCD34D;
    --primary-dark: #B45309;
    --primary-glow: rgba(245, 158, 11, 0.25);
    --accent-blue: #3B82F6;
    --accent-teal: #14B8A6;

    --text-white: #FFFFFF;
    --text-main: #E9EEF6;
    --text-muted: #8A9AB5;
    --text-dim: #4A5568;

    --glass: rgba(19, 25, 41, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.12);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.15);

    --transition-fast: all 0.2s ease;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Typography Scale --- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--primary-glow);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.25);
    margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
}

/* --- Global Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 3px;
}

/* ========================
   NAVIGATION
   ======================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(8, 12, 21, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 4rem;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.logo img {
    height: 72px;
    width: auto;
    border-radius: 6px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-dot { display: none; }

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Visibility Helpers --- */
.igt-premium-show-mobile {
    display: none !important;
}

.igt-premium-hide-mobile {
    display: inline-flex;
}

/* default for buttons */

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0B0F19;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.2);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, var(--bg-dark) 35%, transparent 65%),
        linear-gradient(to top, var(--bg-dark) 8%, transparent 40%);
}

/* Animated particles/overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero-content .hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.75rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat-item .num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-item .num,
.stat-band-item .num {
    display: inline;
}

.num-plus {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
    display: inline;
}

.hero-stat-item .num-plus {
    font-size: 1.8rem;
}

.stat-band-item .num-plus {
    font-size: 2.5rem;
}

.stat-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
}

.hero-stat-item .stat-value {
    justify-content: flex-start;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ========================
   STATS BAND
   ======================== */
.stats-band {
    background: var(--surface-dark);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 0;
}

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

.stat-band-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--glass-border);
    position: relative;
}

.stat-band-item:last-child {
    border-right: none;
}

.stat-band-item .num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-band-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================
   CARDS GRID
   ======================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.cards-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

/* ========================
   FEATURE CARDS
   ======================== */
.card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal));
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: var(--shadow-glow);
    background: var(--surface-mid);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary-glow);
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================
   TWO-COLUMN SECTION
   ======================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.two-col-content h2 {
    margin-bottom: 1.25rem;
}

.two-col-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.check-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--primary-glow);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.two-col-visual {
    position: relative;
}

.visual-card-stack {
    position: relative;
}

.visual-card-stack .main-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    height: 480px;
    filter: brightness(0.85);
}

.floating-badge {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
}

.floating-badge.bottom-left {
    bottom: -1.5rem;
    left: -1.5rem;
}

.floating-badge.top-right {
    top: -1.5rem;
    right: -1.5rem;
}

.floating-badge .badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-badge .badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ========================
   PROCESS TIMELINE
   ======================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal), var(--primary-dark));
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.process-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    width: 100%;
}

.process-grid-3::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal));
    z-index: 0;
}

@media (max-width: 900px) {
    .process-grid, .process-grid-3 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-grid::before, .process-grid-3::before {
        display: none;
    }
    .process-item {
        padding: 0;
    }
}

.process-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #0B0F19;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.process-item h4 {
    margin-bottom: 0.5rem;
}

.process-item p {
    font-size: 0.85rem;
}

/* ========================
   GLOBE / HUBS
   ======================== */
.hubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hub-card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.hub-card:hover {
    border-color: var(--primary-glow);
    transform: translateX(6px);
    box-shadow: var(--shadow-glow);
}

.hub-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hub-card h4 {
    margin-bottom: 0.2rem;
}

.hub-card p {
    font-size: 0.82rem;
}

/* ========================
   FAQ ACCORDION
   ======================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.75rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-mid);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

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

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.contact-info-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========================
   AUTH PAGES
   ======================== */
.auth-overlay {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(8, 12, 21, 0.85), rgba(8, 12, 21, 0.85)),
        url('assets/img/hero.png') center/cover;
    padding-bottom: 3rem;
}

.auth-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

/* ========================
   FOOTER
   ======================== */
footer {
    background: #05080F;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-subscribe {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-subscribe input {
    flex: 1;
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.85rem;
    outline: none;
}

.footer-subscribe input:focus {
    border-color: rgba(245, 158, 11, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

/* ========================
   SPECIAL ELEMENTS
   ======================== */
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0;
}

.section-bg-mid {
    background: var(--surface-dark);
}

.section-bg-light {
    background: var(--surface-mid);
}

.glow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 2s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* ========================
   ANIMATIONS (Primary CSS)
   ======================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Utility Spacing */
.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* ========================
   RESPONSIVE DESIGN (CONSOLIDATED)
   ======================== */

@media (max-width: 1200px) {
    header {
        width: 100% !important;
        left: 0;
        right: 0;
    }

    .nav {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .nav-links {
        display: none !important;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(8, 12, 21, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        flex-direction: column;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }

    /* Strict Visibility Lock-down */
    .igt-premium-hide-mobile {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .igt-premium-show-mobile {
        display: block !important;
    }

    .logo {
        min-width: 0;
        flex-shrink: 1;
        font-size: 1.15rem;
    }

    .logo img {
        height: 44px;
    }

    .nav-actions {
        min-width: 0;
        flex-shrink: 0;
        gap: 0.75rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .two-col.reverse {
        direction: ltr;
    }

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

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

    .process-grid::before {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .hero-content {
        padding: 0;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 4rem 0;
        width: 100%;
        overflow: hidden;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 38px;
    }

    .nav {
        height: 80px;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-stat-item .num {
        font-size: 1.5rem;
    }
}

/* ========================
   PAGE HERO COMPONENT
   ======================== */
.page-hero {
    position: relative;
    padding: 9rem 0 5rem;
    overflow: hidden;
    background: var(--surface-dark);
    width: 100%;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.page-hero .divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}