:root {
    --bg: #020817;
    --accent-green: #22c55e;
    --accent-blue: #38bdf8;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --text: #f8fafc;
    --text-soft: #cbd5e1;
    --text-muted: #64748b;
    --glass: rgba(255,255,255,0.03);
    --glass-2: rgba(255,255,255,0.055);
    --glass-border: rgba(255,255,255,0.08);
    --glass-border-bright: rgba(255,255,255,0.14);
    --radius: 28px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg) !important; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg) !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); }
p { line-height: 1.7; color: var(--text-soft); font-size: 16px; }
a { text-decoration: none; }

/* ── CANVAS / ATMOSPHERE ── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.atmosphere {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
            radial-gradient(ellipse 70% 55% at 15% 5%,  rgba(99,102,241,0.08) 0%, transparent 60%),
            radial-gradient(ellipse 55% 45% at 88% 8%,  rgba(56,189,248,0.09) 0%, transparent 55%),
            radial-gradient(ellipse 60% 50% at 50% 95%, rgba(34,197,94,0.06) 0%, transparent 60%),
            radial-gradient(ellipse 40% 40% at 50% 50%, rgba(15,23,42,0.95)   0%, transparent 100%);
}
.grain {
    position: fixed; inset: -50%; width: 200%; height: 200%;
    z-index: 1; pointer-events: none; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 128px 128px;
    animation: grainShift 8s steps(10) infinite;
}
@keyframes grainShift {
    0%{transform:translate(0,0)}10%{transform:translate(-2%,-3%)}20%{transform:translate(3%,2%)}
    30%{transform:translate(-1%,4%)}40%{transform:translate(4%,-1%)}50%{transform:translate(-3%,1%)}
    60%{transform:translate(2%,-4%)}70%{transform:translate(-4%,3%)}80%{transform:translate(1%,-2%)}
    90%{transform:translate(-2%,4%)}100%{transform:translate(0,0)}
}

.page { position: relative; z-index: 2; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 999px;
    border: 1px solid var(--glass-border-bright);
    background: rgba(99,102,241,0.06);
    color: var(--accent-indigo);
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px; backdrop-filter: blur(8px);
}
.label-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent-indigo); box-shadow: 0 0 8px var(--accent-indigo);
    animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.gradient-text {
    background: linear-gradient(100deg, var(--accent-blue), var(--accent-indigo) 50%, var(--accent-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ── */
.hero {
    text-align: center; padding: 100px 24px 72px;
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 2;
}
.hero h1 { font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; margin-bottom: 20px; max-width: 760px; }
.hero > p { font-size: 19px; max-width: 600px; margin: 0 auto; }

/* ── MAIN CONTACT LAYOUT ── */
.contact-section {
    position: relative; z-index: 2;
    padding: 20px 24px 100px;
    display: flex; flex-direction: column; align-items: center;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    width: 100%; max-width: 1200px;
    align-items: start;
}

/* ── LEFT COLUMN — contact info ── */
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    background: rgba(12,20,38,0.55);
    backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.info-card:hover { border-color: var(--glass-border-bright); transform: translateY(-3px); }
.info-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
}

.info-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.icon-indigo { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); }
.icon-blue   { background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.25); }
.icon-green  { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.25); }

.info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.info-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.contact-link {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border);
    font-size: 14px; font-weight: 600; color: var(--text-soft);
    transition: all 0.2s var(--ease);
    margin-bottom: 8px;
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link:hover { background: var(--glass-2); border-color: var(--glass-border-bright); color: var(--text); transform: translateX(4px); }
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.contact-link span { flex: 1; }
.contact-link .link-arrow { opacity: 0.4; font-size: 12px; transition: opacity 0.2s, transform 0.2s; }
.contact-link:hover .link-arrow { opacity: 1; transform: translateX(3px); }

.contact-link.green { color: var(--accent-green); border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.06); }
.contact-link.green:hover { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); }
.contact-link.blue  { color: var(--accent-blue);  border-color: rgba(56,189,248,0.2); background: rgba(56,189,248,0.06); }
.contact-link.blue:hover  { background: rgba(56,189,248,0.1); border-color: rgba(56,189,248,0.3); }

/* hours card */
.hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--glass-border);
    font-size: 13px;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text-soft); font-weight: 600; }
.hours-badge {
    padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700;
    background: rgba(34,197,94,0.1); color: var(--accent-green);
    border: 1px solid rgba(34,197,94,0.2);
}

/* ── RIGHT COLUMN — form embed ── */
.form-card {
    background: rgba(12,20,38,0.55);
    backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border-bright);
    border-radius: var(--radius);
    padding: 48px;
    position: relative; overflow: hidden;
}
.form-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-blue), var(--accent-green));
}

.form-card-header { margin-bottom: 32px; }
.form-card-header h2 { font-size: 28px; margin-bottom: 10px; }
.form-card-header p { font-size: 15px; color: var(--text-soft); }

/* GHL embed placeholder */
.ghl-embed-wrap {
    width: 100%;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    border: 1px dashed var(--glass-border-bright);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
}
.ghl-embed-wrap iframe {
    width: 100%; min-height: 520px; border: none; display: block; border-radius: 16px;
}
.embed-placeholder {
    text-align: center; padding: 40px;
}
.embed-placeholder .ph-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.embed-placeholder p { font-size: 13px; color: var(--text-muted); }
.embed-placeholder code {
    display: inline-block; margin-top: 8px; padding: 6px 12px;
    background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
    border-radius: 8px; font-size: 12px; color: var(--accent-indigo);
    font-family: monospace;
}

/* trust row under form */
.trust-row {
    display: flex; align-items: center; gap: 20px;
    margin-top: 24px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: var(--text-muted); font-weight: 500;
}
.trust-item svg { width: 14px; height: 14px; color: var(--accent-green); flex-shrink: 0; }

/* ── FAQ strip ── */
.faq-section {
    position: relative; z-index: 2;
    padding: 0 24px 100px;
    display: flex; flex-direction: column; align-items: center;
}
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; width: 100%; max-width: 1200px; margin-top: 48px;
}
.faq-item {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 28px 32px;
    transition: border-color 0.2s var(--ease);
}
.faq-item:hover { border-color: var(--glass-border-bright); }
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ── */
footer { position: relative; z-index: 2; border-top: 1px solid var(--glass-border); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 280px; color: var(--text-muted); }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-soft); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .form-card { padding: 28px; }
    .footer-inner { grid-template-columns: 1fr; }
}