/* ================= GLOBAL VARIABLES & RESET ================= */
:root {
    --bg-primary: #07080a;
    --bg-secondary: #0e1014;
    --bg-glass: rgba(16, 18, 24, 0.65);
    --border-glass: rgba(255, 255, 255, 0.07);
    --accent-red: #ff3838;
    --accent-red-glow: rgba(255, 56, 56, 0.15);
    --accent-blue: #0062ff;
    --accent-blue-glow: rgba(0, 98, 255, 0.15);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --card-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ================= COMPONENTS: BUTTONS & BADGES ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0044ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 98, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-red) 0%, #d62222 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 56, 56, 0.4);
}

/* ================= KO-FI BUTTON & WIDGET STYLING ================= */
.btn-kofi, a.btn-kofi, button.btn-kofi {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.12) 0%, rgba(20, 25, 36, 0.85) 100%) !important;
    color: #f3f4f6 !important;
    font-family: var(--font-heading), 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    border: 1px solid rgba(41, 171, 226, 0.35) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-kofi.btn-large {
    padding: 14px 28px !important;
    font-size: 16px !important;
}

.btn-kofi:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.22) 0%, rgba(28, 36, 50, 0.95) 100%) !important;
    border-color: rgba(41, 171, 226, 0.65) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(41, 171, 226, 0.2) !important;
    color: #ffffff !important;
}

.btn-kofi i {
    color: #ffb703 !important;
    font-size: 1.15em !important;
    filter: drop-shadow(0 0 4px rgba(255, 183, 3, 0.4)) !important;
}

@keyframes kofiCupPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    15% { transform: scale(1.2) rotate(-8deg); }
    30% { transform: scale(1.2) rotate(8deg); }
    45% { transform: scale(1) rotate(0deg); }
}

/* Ko-fi Widget Overrides */
.kofi-button-container, div.kofi-button-container {
    display: inline-block !important;
    margin: 10px 0 !important;
}

a.kofi-button, .kofitext {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    background-color: #29abe2 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

/* ================= DEDICATED KO-FI HERO BOX ================= */
.kofi-hero-box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(19, 195, 255, 0.12) 0%, rgba(16, 18, 24, 0.9) 100%);
    border: 1px solid rgba(19, 195, 255, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(19, 195, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.kofi-hero-box:hover {
    border-color: rgba(19, 195, 255, 0.7);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(19, 195, 255, 0.3);
    transform: translateY(-2px);
}

.kofi-box-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kofi-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #13c3ff 0%, #0077b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(19, 195, 255, 0.4);
    flex-shrink: 0;
}

.kofi-box-icon i {
    color: #ff5e5b !important;
    filter: drop-shadow(0 0 6px rgba(255, 94, 91, 0.8)) !important;
    animation: kofiCupPulse 2.2s infinite ease-in-out !important;
}

.kofi-box-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kofi-box-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.kofi-box-sub {
    font-size: 13px;
    color: var(--text-secondary);
}

.btn-kofi-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #13c3ff 0%, #29abe2 50%, #0077b6 100%) !important;
    color: #ffffff !important;
    font-family: var(--font-heading), sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 20px rgba(19, 195, 255, 0.4) !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.btn-kofi-box:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(19, 195, 255, 0.65) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.w-100 {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(255, 56, 56, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(255, 56, 56, 0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

.text-red {
    color: var(--accent-red);
}

.text-blue {
    color: var(--accent-blue);
}

/* ================= HEADER & NAVIGATION ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 56, 56, 0.5);
}

.logo-accent {
    color: var(--accent-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 56, 56, 0.05) 0%, rgba(0, 0, 0, 0) 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 98, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 56, 56, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.text-glow {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 56, 56, 0.35);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Server Connection Widget */
.conn-widget {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 32px;
    width: fit-content;
}

.conn-item {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.conn-item.border-left {
    border-left: 1px solid var(--border-glass);
}

.conn-label {
    font-size: 10px;
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conn-value {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.btn-copy {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-left: 8px;
}

.btn-copy:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-copy.copied {
    background-color: rgba(39, 174, 96, 0.2);
    border-color: #27ae60;
    color: #2ecc71;
}

/* Simulated Discord Rank Card */
.hero-graphic-wrapper {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    background: radial-gradient(circle at 100% 0%, rgba(255, 56, 56, 0.05) 0%, rgba(16, 18, 24, 0.85) 50%);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.card-title-text {
    font-size: 11px;
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sim-discord {
    background-color: #15161c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.rank-card-preview {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-ring {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-shadow: 0 0 10px rgba(255, 56, 56, 0.25);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #202225;
}

.rank-info {
    flex-grow: 1;
}

.rank-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rank-username {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
}

.rank-level {
    font-size: 11px;
    font-weight: 600;
    color: #cccccc;
    font-family: var(--font-heading);
}

.rank-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-red);
    font-family: var(--font-heading);
}

.rank-sub {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.xp-bar-container {
    background-color: #2d3139;
    border-radius: 20px;
    height: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.xp-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%;
    background-color: var(--accent-red);
    border-radius: 20px;
}

.xp-text {
    position: relative;
    z-index: 1;
    font-size: 9px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading);
}

/* Bot Status Feed */
.bot-status-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.feed-time {
    font-size: 9px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 4px;
}

.feed-tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.tag-update {
    background-color: rgba(255, 56, 56, 0.1);
    color: var(--accent-red);
}

.tag-patch {
    background-color: rgba(0, 98, 255, 0.1);
    color: var(--accent-blue);
}

.feed-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.feed-text code {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    color: #ffffff;
}

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ================= PILLARS SECTION ================= */
.pillars {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pillar-card {
    padding: 40px;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--card-shadow);
}

.pillar-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.pillar-icon-wrapper.red-glow {
    background-color: rgba(255, 56, 56, 0.1);
    color: var(--accent-red);
    box-shadow: 0 4px 20px rgba(255, 56, 56, 0.15);
}

.pillar-icon-wrapper.blue-glow {
    background-color: rgba(0, 98, 255, 0.1);
    color: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(0, 98, 255, 0.15);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pillar-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.pillar-list {
    list-style: none;
    margin-bottom: 32px;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* ================= FEATURES SECTION ================= */
.features {
    padding: 100px 0;
    position: relative;
}

.features-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.02) 0%, rgba(0, 0, 0, 0) 75%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 1;
}

.feature-card {
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ================= PRICING / SAAS SECTION ================= */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}



.pricing-container {
    position: relative;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid.active {
    display: grid;
}

.price-card {
    position: relative;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px -10px rgba(255, 56, 56, 0.15);
    background: radial-gradient(circle at 100% 0%, rgba(255, 56, 56, 0.03) 0%, rgba(16, 18, 24, 0.8) 50%);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-red);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.price-header {
    margin-bottom: 24px;
}

.price-tier {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    color: #ffffff;
}

.price-freq {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.price-features {
    list-style: none;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.price-features li i {
    color: #2ecc71;
    font-size: 16px;
}

/* ================= FOOTER ================= */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 0 0;
    background-color: var(--bg-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-flex a {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-bottom-flex a:hover {
    color: #ffffff;
}

/* ================= MEDIA QUERIES (RESPONSIVE) ================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid > *:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .conn-widget {
        margin: 0 auto 32px auto;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid > *:last-child {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
