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

:root {
    --gold: #ffd700;
    --gold-dim: rgba(255, 180, 80, 0.6);
    --glass: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 180, 80, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.nav-brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}

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

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--gold-dim);
    border-radius: 50px;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: rgba(255, 180, 80, 0.1);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../Images/Web inspo/WebsiteBG1(insp).jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
}

.hero-title .line {
    display: block;
    background: linear-gradient(135deg, var(--gold), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .letter-highlight {
    -webkit-text-fill-color: #fff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), #ff8c00);
    border: none;
    border-radius: 50px;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 180, 80, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ===== PILLARS ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 60vh;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pillar {
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.pillar:last-child {
    border-right: none;
}

.pillar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity 0.5s, transform 0.5s;
}

.pillar:hover .pillar-bg {
    opacity: 0.5;
    transform: scale(1.05);
}

.pillar-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, transparent 100%);
}

.pillar-number {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.pillar h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pillar p {
    color: rgba(255,255,255,0.6);
}

/* ===== PROOF ===== */
.proof {
    padding: 120px 40px;
    background: #0d0d0d;
}

.proof-header {
    text-align: center;
    margin-bottom: 80px;
}

.proof-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.proof-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.proof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.proof-card.featured {
    border-color: var(--gold-dim);
    box-shadow: 0 0 60px rgba(255, 180, 80, 0.1);
}

.proof-visual {
    height: 140px;
    background: #0c0c0f;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tool-icon {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 16px;
}

.proof-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.proof-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gold);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 40px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

#process-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.process-sticky {
    max-width: 1000px;
    margin: 0 auto;
}

.process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 60px;
    border-left: 2px solid transparent;
    transition: border-color 0.3s;
    max-width: 900px;
    margin: 0 auto;
}

.step:hover {
    border-left-color: var(--gold);
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-content {
    flex: 1;
}

.step p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 160px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #0d0d0d, #0a0a0a);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 24px !important;
    font-size: 0.9rem !important;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }

/* ===== BLOG ===== */
.blog-header {
    padding: 160px 40px 80px;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a, #0d0d0d);
}

.blog-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

.blog-posts {
    padding: 60px 40px 120px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-date {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.blog-tag {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.blog-card h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--gold);
}

.blog-card > p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.blog-read-more:hover {
    opacity: 0.7;
}

/* ===== ARTICLE ===== */
.article-header,
.article-header-section {
    padding: 160px 40px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.article-date {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.article-tag {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.article-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

.article-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 1.75rem;
    margin: 48px 0 20px;
    color: #fff;
}

.article-content h3 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
    color: var(--gold);
}

.article-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 48px 0;
}

.article-cta {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
}

.article-cta a {
    color: var(--gold);
    text-decoration: none;
}

.article-cta a:hover {
    text-decoration: underline;
}

/* Active nav link */
.nav-links a.active,
.nav-links a.nav-active {
    color: var(--gold);
}

/* ===== CREATIVE SERVICES PAGE ===== */

/* Creative Hero */
.creative-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.creative-hero .hero-content {
    text-align: center;
    max-width: 800px;
}

.creative-hero .hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.creative-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Creative Services Grid */
.creative-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.creative-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.creative-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dim);
}

.creative-card.featured {
    border-color: var(--gold-dim);
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 180, 80, 0.05) 100%);
}

.creative-card .badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold);
    color: #0a0a0a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creative-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--gold);
}

.creative-icon svg {
    width: 100%;
    height: 100%;
}

.creative-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #fff;
}

.creative-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-style: italic;
}

.creative-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.creative-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.creative-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.creative-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-top: 16px;
}

/* Bridge Section */
.bridge-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.bridge-content {
    max-width: 800px;
    margin: 0 auto;
}

.bridge-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.bridge-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bridge-highlight {
    color: var(--gold) !important;
    font-size: 1.3rem !important;
    font-weight: 500;
}

/* Article Hero Image */
.article-hero-image {
    margin: 48px auto;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.article-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Also Available Link */
.also-available {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.also-available p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

.also-available a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.also-available a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .creative-services {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }
    
    .creative-card {
        padding: 32px 24px;
    }
    
    .creative-hero {
        padding: 100px 24px 60px;
    }
    
    .bridge-section {
        padding: 60px 24px;
    }
}
