/* ============================================
   PRO ACCESS - GLOBAL STYLES
   2-colour palette: darker top to lighter bottom
============================================ */

:root {
    --purple-dark: #5B4FCC;
    --purple-mid: #7B68EE;
    --purple-light: #E8E4FF;
    --purple-xlight: #F4F2FF;

    --orange-dark: #D4854A;
    --orange-mid: #F5A962;
    --orange-light: #FFF0E0;
    --orange-xlight: #FFF8F2;

    --text-dark: #1E1E2E;
    --text-medium: #5A5A6A;
    --white: #FFFFFF;

    --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --radius: 14px;
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============ NAVIGATION ============ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--purple-dark);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(91,79,204,0.35);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--orange-mid) !important;
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 20px;
    font-weight: 600 !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245,169,98,0.45) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ============ AI TOOLS TICKER ============ */
.tools-ticker {
    background: var(--white);
    padding: 22px 48px;
    border-bottom: 1px solid var(--purple-light);
    overflow: hidden;
}

.ticker-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 16px;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.ticker-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.ticker-track {
    display: flex;
    animation: ticker 28s linear infinite;
    width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 28px;
    transition: transform var(--transition);
}

.ticker-item:hover { transform: translateY(-4px); }
.ticker-item:hover .ticker-name { color: var(--purple-mid); }

.ticker-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.ticker-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-medium);
    white-space: nowrap;
    transition: color var(--transition);
}

.b-chatgpt    { background: linear-gradient(135deg,#10a37f,#0d7a5f); }
.b-claude     { background: linear-gradient(135deg,#cc785c,#aa5a3e); }
.b-gemini     { background: linear-gradient(135deg,#4285f4,#c74040); }
.b-deepseek   { background: linear-gradient(135deg,#4d6bfe,#2b47d4); }
.b-grok       { background: linear-gradient(135deg,#2a2a2a,#111111); }
.b-perplexity { background: linear-gradient(135deg,#1fb8cd,#1090a0); }
.b-genspark   { background: linear-gradient(135deg,#f97316,#d45e00); }
.b-heygen     { background: linear-gradient(135deg,#7c3aed,#5820c0); }
.b-copilot    { background: linear-gradient(135deg,#0078d4,#005a9e); }
.b-meta       { background: linear-gradient(135deg,#0866ff,#0040cc); }
.b-gads       { background: linear-gradient(135deg,#fbbc04,#e09a00); }
.b-linkedin   { background: linear-gradient(135deg,#0a66c2,#084e94); }

/* ============ SHARED LAYOUT ============ */
.page-wrap { max-width: 1200px; margin: 0 auto; }

.section {
    padding: 90px 48px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 52px;
}

/* ============ CARDS ============ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
    font-size: 1.9rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--purple-light);
    color: var(--purple-dark);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-orange {
    background: var(--orange-mid);
    color: var(--white);
}
.btn-orange:hover { box-shadow: 0 8px 24px rgba(245,169,98,0.45); }

.btn-white {
    background: var(--white);
    color: var(--purple-dark);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-purple {
    background: var(--purple-dark);
    color: var(--white);
}
.btn-purple:hover { box-shadow: 0 8px 24px rgba(91,79,204,0.4); }

/* ============ FOOTER ============ */
footer {
    background: var(--purple-dark);
    padding: 64px 48px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

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

.footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
    font-style: normal;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-social { display: flex; gap: 20px; }

.footer-social a {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--purple-dark);
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .section { padding: 60px 20px; }
    .tools-ticker { padding: 18px 20px; }
    footer { padding: 48px 20px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
