/* ExpertChoice Main Stylesheet - v20260112 */
:root {
    --indigo-300: #a5b4fc;
    --indigo-400: #818cf8;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --slate-300: #d1d5db;
    --slate-400: #9ca3af;
    --slate-600: #4b5563;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --white: #ffffff;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --yellow-400: #fbbf24;
    --amber-400: #fbbf24;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), #312e81);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--indigo-400);
    outline-offset: 3px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s;
}

header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.logo-bg {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--indigo-500), var(--purple-500), var(--pink-500));
    border-radius: 0.75rem;
    transform: rotate(6deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-icon {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translate(-50%, -50%) rotate(-6deg);
    font-size: 1.75rem;
    color: var(--white);
}

.logo-text .brand-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, var(--indigo-400), var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(165, 180, 252, 0.8);
    font-family: monospace;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.submit-btn-nav {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, var(--indigo-600), var(--purple-600));
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.submit-btn-nav:hover {
    background: linear-gradient(to right, var(--indigo-500), var(--purple-500));
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.5);
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.75rem;
}

.mobile-menu-btn .menu-icon {
    width: 1.2em;
    height: 0.8em;
    display: inline-block;
    background:
        linear-gradient(currentColor 0 0) 0 0/100% 0.12em,
        linear-gradient(currentColor 0 0) 0 50%/100% 0.12em,
        linear-gradient(currentColor 0 0) 0 100%/100% 0.12em;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu div {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--white);
}

.mobile-menu button {
    width: 100%;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, var(--indigo-600), var(--purple-600));
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), transparent);
}

.hero-bg1,
.hero-bg2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(96px);
}

.hero-bg1 {
    top: 5rem;
    right: 2.5rem;
    background: rgba(160, 132, 252, 0.2);
}

.hero-bg2 {
    bottom: 0;
    left: 2.5rem;
    background: rgba(99, 102, 241, 0.2);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: fade-in 0.5s;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--indigo-300);
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 6rem;
    }
}

.hero h1 .gradient1 {
    background: linear-gradient(to right, var(--white), rgba(165, 180, 252, 0.8), rgba(192, 132, 252, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 .gradient2 {
    background: linear-gradient(to right, var(--indigo-400), var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subnote {
    font-size: 0.9rem;
    color: var(--slate-300);
    margin-bottom: 2.5rem;
}

.hero-subnote span {
    color: var(--amber-400);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
}

@media (min-width: 640px) {
    .primary-btn,
    .secondary-btn {
        width: auto;
    }
}

.primary-btn {
    background: linear-gradient(to right, var(--indigo-600), var(--purple-600));
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.primary-btn::after {
    content: "›";
    font-size: 1.25rem;
    line-height: 1;
}

.primary-btn:hover {
    background: linear-gradient(to right, var(--indigo-500), var(--purple-500));
    box-shadow: 0 24px 28px -5px rgba(99, 102, 241, 0.6);
    transform: scale(1.05);
}

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

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

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(to bottom right, var(--indigo-400), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    font-weight: 500;
}

/* Categories */
.categories {
    padding: 3rem 1rem;
    background: rgba(2, 6, 23, 0.5);
}

.categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.categories h2 {
    font-size: 1.875rem;
    font-weight: 900;
}

.categories-intro {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--slate-300);
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--slate-400);
    line-height: 1;
}

.search-input {
    padding-left: 3rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--white);
    width: 16rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--slate-400);
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.category-btn.active {
    background: linear-gradient(to right, var(--indigo-600), var(--purple-600));
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.category-btn:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
}

.category-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Picks */
.picks {
    padding: 4rem 1rem 5rem 1rem;
}

.picks-header {
    max-width: 64rem;
    margin: 0 auto 2rem auto;
}

.picks-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.picks-header p {
    font-size: 0.95rem;
    color: var(--slate-300);
}

.results-meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--slate-400);
}

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

@media (min-width: 768px) {
    .picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pick-card {
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    animation: fade-in 0.5s;
}

.pick-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.2);
    transform: translateY(-0.5rem);
}

.pick-content {
    padding: 1.5rem;
}

.pick-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.pick-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.pick-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.2);
    color: var(--indigo-300);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.commission-tag {
    background: rgba(34, 197, 94, 0.2);
    color: var(--green-300);
}

.pick-title {
    font-size: 0.875rem;
    color: var(--slate-400);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.pick-product {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pick-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 1rem;
}

.filled {
    color: var(--yellow-400);
}

.empty {
    color: var(--slate-600);
}

.rating-number {
    font-weight: 700;
    color: var(--white);
    margin-left: 0.5rem;
}

.reviews {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-300);
}

.feature::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--indigo-400);
    line-height: 1;
}

.verdict {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--slate-300);
    font-style: italic;
    line-height: 1.5;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--white);
}

.savings {
    font-size: 0.75rem;
    color: var(--green-400);
    font-weight: 600;
}

.deal-note {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-bottom: 0.75rem;
}

.deal-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--indigo-600), var(--purple-600));
    color: var(--white);
    text-align: center;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.deal-btn:hover {
    background: linear-gradient(to right, var(--indigo-500), var(--purple-500));
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}

.deal-btn::after {
    content: "›";
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
}

/* Blog */
.blog {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--slate-900), var(--slate-950));
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.blog h2 span {
    background: linear-gradient(to right, var(--indigo-400), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog p {
    font-size: 1.05rem;
    color: var(--slate-300);
    max-width: 48rem;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--slate-300);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-card a {
    color: var(--indigo-400);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-card a:hover {
    color: var(--indigo-300);
}

.blog-ad {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    color: var(--slate-400);
    font-size: 0.9rem;
}

/* Revenue */
.revenue {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--slate-950), var(--slate-900));
}

.revenue-header {
    text-align: center;
    margin-bottom: 4rem;
}

.revenue h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.revenue h2 span {
    background: linear-gradient(to right, var(--green-400), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.revenue p {
    font-size: 1.05rem;
    color: var(--slate-300);
    max-width: 48rem;
    margin: 0 auto;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.revenue-card {
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.revenue-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.1);
}

.revenue-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.revenue-icon-bg {
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
}

.revenue-icon-bg i {
    font-size: 2rem;
    color: var(--green-400);
}

.revenue-content {
    flex: 1;
}

.revenue-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.revenue h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.revenue-status {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: var(--green-300);
}

.status-soon {
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

.revenue-text {
    color: var(--slate-300);
    line-height: 1.5;
    font-size: 0.95rem;
}

.ai-management {
    margin-top: 3rem;
    background: linear-gradient(to right, rgba(55, 48, 163, 0.3), rgba(134, 25, 143, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.ai-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ai-inner i {
    font-size: 2rem;
    color: var(--indigo-400);
    margin-top: 0.25rem;
}

.ai-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.ai-content p {
    color: var(--slate-300);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ai-content a {
    color: var(--indigo-300);
    text-decoration: underline;
}

.ai-content a:hover {
    color: var(--indigo-200);
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .ai-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ai-feature i {
    font-size: 1.25rem;
    color: var(--indigo-400);
    margin-top: 0.125rem;
}

.ai-feature .title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.ai-feature .desc {
    font-size: 0.875rem;
    color: var(--slate-400);
}

/* About */
.about {
    padding: 5rem 1rem;
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.about h2 span {
    background: linear-gradient(to right, var(--white), var(--slate-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-buttons {
        flex-direction: row;
    }
}

.partner-btn,
.docs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

@media (min-width: 640px) {
    .partner-btn,
    .docs-btn {
        width: auto;
    }
}

.partner-btn {
    background: var(--white);
    color: var(--slate-900);
}

.partner-btn:hover {
    background: #f3f4f6;
}

.docs-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem;
    background: var(--slate-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-weight: 900;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-align: center;
}

.footer-bottom a {
    color: var(--indigo-400);
}

.footer-bottom a:hover {
    color: var(--indigo-300);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--slate-400);
    transition: color 0.3s;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--white);
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    color: var(--slate-400);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(0.5rem); }
    to { opacity: 1; transform: translateY(0); }
}
