/*
Theme Name: Anchor Web Design
Theme URI: http://anchorwebdesign.net
Author: Anchor Web Design
Author URI: http://anchorwebdesign.net
Description: Premium Web Design theme for Anchor Web Design.
Version: 3.0.0
License: Proprietary
Text Domain: anchor-web-design
*/

:root {
    color-scheme: dark;
    --bg-color: #030613;
    --surface-color: rgba(255, 255, 255, 0.05);
    --accent: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.6);
    --accent-dark: #0066ff;
    --text-color: #ffffff;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --liquid-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 10px 40px rgba(0, 0, 0, 0.8);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, .syne {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

p, li, .stat-lbl, .testi-text {
    color: var(--text-muted);
}

/* --- Animated Background Orbs --- */
.bg-orbs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #02050e; /* Deep space background */
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 700px; height: 700px;
    background: #0033ff;
    top: -20%; left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 600px; height: 600px;
    background: #00f0ff;
    bottom: -10%; right: -10%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.orb-3 {
    width: 500px; height: 500px;
    background: #8a2be2;
    top: 30%; left: 50%;
    animation-duration: 28s;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(150px, -150px) scale(1.1); }
    66% { transform: translate(-100px, 200px) scale(0.9); }
    100% { transform: translate(-200px, -100px) scale(1.2); }
}

/* --- High Tech Hover Effect (Liquid Glass) --- */
.interactive {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--liquid-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.interactive::before {
    content: '';
    position: absolute;
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

/* Permanent top glass reflection */
.interactive::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

.interactive:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
    border-color: #ffffff;
    background: rgba(20, 35, 65, 0.8);
}
.interactive:hover::before {
    opacity: 1;
}

/* Ensure text stays bright */
.interactive h3, .interactive p, .interactive .feature-num, .interactive .stat-num {
    opacity: 1 !important;
}

main {
    position: relative;
    z-index: 10;
}

/* --- Background Canvas --- */
#bg-canvas {
    position: fixed; inset: 0; z-index: 1; opacity: 1;
    pointer-events: none;
}

/* --- Navigation --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 25px 5vw;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: rgba(3, 8, 22, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo { font-family: 'Inter'; font-weight: 800; font-size: 1.8rem; letter-spacing: -1px; background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.btn-magnetic {
    display: inline-flex; justify-content: center; align-items: center; text-align: center;
    padding: 14px 32px; border-radius: 100px; border: 1px solid rgba(0, 240, 255, 0.6);
    background: rgba(0, 240, 255, 0.15); color: #fff; font-family: 'Plus Jakarta Sans';
    font-weight: 700; font-size: 0.95rem; position: relative; overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-magnetic::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s; z-index: -1;
}
.btn-magnetic:hover { 
    background: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: #fff;
    color: #fff;
}
.btn-magnetic:hover::after { left: 100%; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding: 120px 5vw 60px; position: relative;
    background: transparent;
}
.hero-badge {
    display: inline-block; padding: 10px 24px; border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 100px; color: #fff; font-size: 0.9rem; font-weight: 800;
    margin-bottom: 30px; letter-spacing: 2px; text-transform: uppercase;
    background: rgba(0, 240, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px var(--accent-glow);
}
.hero-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.04em; text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    margin-bottom: 25px;
    color: #fff;
}
.hero-title span { display: block; overflow: hidden; padding-bottom: 5px; }
.hero-title span div { display: inline-block; transform: translateY(0%); }
.hero-subtitle {
    margin-top: 15px; font-size: 1.4rem; color: #e2e8f0;
    max-width: 700px; line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* --- Marquee --- */
.marquee-section {
    padding: 30px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.05); overflow: hidden; position: relative; display: flex;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.marquee-track {
    display: flex; white-space: nowrap; animation: marquee 25s linear infinite;
}
.marquee-item {
    font-family: 'Inter'; font-size: 3.5rem; font-weight: 800; color: transparent;
    -webkit-text-stroke: 1px rgba(0, 240, 255, 0.5); margin-right: 50px; text-transform: uppercase;
}
.marquee-item.solid { color: var(--accent); -webkit-text-stroke: 0; text-shadow: 0 0 30px var(--accent-glow); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Layout Spacing --- */
.features-section, .pricing-section, .process-section, .reviews-section, .quote-section, .stats-band {
    padding: 100px 5vw;
}

.section-header { margin-bottom: 60px; text-align: center; }
.section-title { font-size: clamp(3rem, 7vw, 4.5rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; font-weight: 800; letter-spacing: -2px; text-shadow: 0 0 30px rgba(0, 240, 255, 0.3); color: #fff; }
.section-header p { font-size: 1.3rem; color: #cbd5e1; }

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.feature-num {
    font-family: 'Inter';
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(0, 240, 255, 0.8);
    border-radius: 100px;
    background: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px var(--accent-glow);
}

.feature-card h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
}

.feature-card p {
    color: #f1f5f9;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* --- Pricing Section --- */
.pricing-section {
    position: relative; border-top: 1px solid var(--glass-border);
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px;
}
.pricing-tier {
    padding: 50px 40px;
}
.pricing-tier.popular {
    border-color: rgba(0, 240, 255, 0.8); box-shadow: 0 0 50px rgba(0, 240, 255, 0.25);
    background: rgba(16, 25, 45, 0.8);
}
.tier-badge {
    position: absolute; top: 0px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, #00f0ff, #0066ff); color: #fff; padding: 6px 20px; border-radius: 0 0 15px 15px;
    font-size: 0.85rem; font-weight: 800; letter-spacing: 1.5px;
    box-shadow: 0 10px 30px var(--accent-glow);
    z-index: 5;
}
.price { font-family: 'Inter'; font-size: 3.5rem; font-weight: 800; margin: 20px 0; color: #fff;}
.price span { font-size: 1.2rem; color: #cbd5e1; font-family: 'Plus Jakarta Sans'; }
.pricing-list { list-style: none; margin: 30px 0; }
.pricing-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: #f1f5f9; font-size: 1.1rem; font-weight: 500;}
.pricing-list li::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }

/* --- Stats Band --- */
.stats-band {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(25px);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-box {
    padding: 40px 25px;
    border-radius: 24px;
}
.stat-num {
    font-family: 'Inter';
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 40px var(--accent-glow);
    margin-bottom: 10px;
}
.stat-lbl {
    color: #e2e8f0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* --- Process Section --- */
.process-section {
    border-top: 1px solid var(--glass-border);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.proc-step {
    padding: 40px 30px;
}
.proc-num {
    font-family: 'Inter';
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 240, 255, 0.5);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.proc-step:hover .proc-num {
    color: var(--accent);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 30px var(--accent-glow);
}
.proc-step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}
.proc-step p {
    color: #f1f5f9;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

/* --- Reviews Section --- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.testi-card {
    padding: 45px 35px;
}
.testi-stars {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 15px #fff;
}
.testi-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    color: #f8fafc;
    font-weight: 500;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f0ff, #0066ff);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 0 20px var(--accent-glow);
}
.testi-name { font-weight: 800; color: #fff; font-size: 1.1rem;}
.testi-role { color: #cbd5e1; font-size: 0.95rem; }

/* --- Quote Wizard --- */
.quote-section {
    border-top: 1px solid var(--glass-border);
}
.quote-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.quote-perk {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}
.quote-perk span {
    color: var(--accent);
    font-weight: 800;
}
.quote-card {
    padding: 50px;
}
.wiz-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.wiz-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.8);
    border: 2px solid rgba(0, 240, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 800;
    color: #fff;
    transition: all 0.3s;
}
.wiz-dot.active {
    background: var(--accent);
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 30px var(--accent-glow);
}
.wiz-line {
    flex: 1;
    height: 3px;
    background: rgba(0, 240, 255, 0.2);
    margin: 0 15px;
}
.wiz-step h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 800;
}
.wiz-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    padding: 18px 25px;
    color: #fff;
    font-family: 'Plus Jakarta Sans';
    font-size: 1.1rem;
    margin-bottom: 25px;
    outline: none;
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    font-weight: 600;
}
.wiz-input::placeholder { color: #cbd5e1; }
.wiz-input:focus { border-color: #fff; box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); }
.wiz-select { appearance: none; cursor: pointer; }
.wiz-select option { background: #02050e; color: #fff; }

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .quote-wrap { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
    }
    #bg-canvas { max-width: 100% !important; pointer-events: none; }
    
    .interactive {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    nav { padding: 15px 4vw; width: 100% !important; }
    .btn-magnetic { padding: 8px 12px; font-size: 0.75rem; letter-spacing: 0.5px; }

    .hero { padding: 140px 5vw 60px; height: auto; min-height: 100vh; }
    .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); font-weight: 800; }
    .hero-subtitle { font-size: 1.2rem; }

    .marquee-item { font-size: 2.5rem; margin-right: 40px; }

    .features-section, .pricing-section, .stats-band, .process-section, .reviews-section, .quote-section { padding: 70px 5vw; }
    
    .section-title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
    
    .feature-card { padding: 30px 20px; }
    .feature-card h3 { font-size: 1.5rem; }
    
    .pricing-tier { padding: 30px 20px; }
    .price { font-size: 2.5rem; }
    
    .stat-box { padding: 25px 15px; }
    .stat-num { font-size: 2.5rem; }
    
    .process-grid { grid-template-columns: 1fr; }
    .proc-step { padding: 25px 20px; }
    .proc-num { font-size: 2.5rem; }
    
    .quote-card { padding: 30px 20px; }
    .wiz-step h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .hero-badge { font-size: 0.8rem; padding: 8px 18px; }
    
    nav { padding: 15px 3vw; }
    .nav-logo { font-size: 1.4rem; }
    nav > div { gap: 8px !important; }
    .btn-magnetic { padding: 8px 10px; font-size: 0.65rem; letter-spacing: 0; }
}

/* --- Footer --- */
footer {
    padding: 100px 5vw 50px; border-top: 1px solid var(--glass-border);
    text-align: center; background: rgba(0,0,0,0.8); backdrop-filter: blur(20px);
    position: relative; z-index: 10;
}
.footer-btn-wrapper {
    display: inline-block; padding: 30px 60px; cursor: pointer; border-radius: 30px; margin-bottom: 50px;
}
.footer-cta { font-family: 'Inter'; font-size: clamp(3rem, 10vw, 7rem); font-weight: 800; line-height: 0.95; margin-bottom: 0; text-transform: uppercase; color: #fff; text-align: center; text-shadow: none; }
.footer-cta:hover { cursor: pointer; transition: 0.3s; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--glass-border); padding-top: 30px; color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
    .footer-btn-wrapper { padding: 20px 10px; border-radius: 20px; width: 90%; max-width: 100%; }
    .footer-cta { font-size: clamp(2rem, 9vw, 4rem); word-wrap: break-word; white-space: normal; line-height: 1.1; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
