/*
Theme Name: Asim Naseem AI SEO
Theme URI: https://asimnaseem.com
Author: Asim Naseem
Author URI: https://asimnaseem.com
Description: Premium AI SEO strategist portfolio theme with dark luxury aesthetic, animations, and conversion-focused sections.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: asim-naseem
Tags: portfolio, one-page, dark, luxury, seo, business
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --bg: #0a001a;
    --bg-deep: #06000f;
    --surface: #1b003f;
    --surface-2: #12002e;
    --gold: #c59d5f;
    --gold-light: #e8c98a;
    --gold-dark: #b08a4d;
    --white: #ffffff;
    --gray: #888888;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-900: #0f172a;
    --border: rgba(201, 157, 95, 0.2);
    --border-white: rgba(255, 255, 255, 0.1);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'DM Sans', system-ui, sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 20px 60px rgba(197, 157, 95, 0.3);
    --shadow-dark: 0 40px 100px rgba(0, 0, 0, 0.8);
    --radius-xl: 2.5rem;
    --radius-2xl: 3rem;
    --radius-3xl: 3.5rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #1b003f 0%, #0a001a 50%, #1b003f 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-luxury {
    font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
}

.section-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(197, 157, 95, 0.3); }
    50% { box-shadow: 0 0 50px rgba(197, 157, 95, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(-15px); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sparkline-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SPARKLINE DIVIDER
   ============================================================ */
.sparkline-divider {
    width: 100%;
    padding: 1rem 0;
    opacity: 0.6;
}

.sparkline-inner {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(197, 157, 95, 0.1) 10%,
        rgba(197, 157, 95, 0.8) 30%,
        rgba(197, 157, 95, 1) 50%,
        rgba(197, 157, 95, 0.8) 70%,
        rgba(197, 157, 95, 0.1) 90%,
        transparent 100%
    );
    border-radius: 999px;
    animation: sparkline-pulse 3s ease-in-out infinite;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.5s ease;
}

#site-header.scrolled {
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-slow);
}

#site-header.scrolled .header-inner {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.site-branding:hover .logo-circle {
    transform: scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.brand-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-top: 0.125rem;
}

/* Desktop Navigation */
#main-nav {
    display: none;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#main-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-300);
    position: relative;
    padding-bottom: 0.25rem;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

#main-nav a:hover {
    color: var(--white);
}

#main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--white);
    color: var(--slate-900) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--white) !important;
    transform: scale(1.05);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 0, 26, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
    right: 0;
}

#mobile-menu a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-serif);
    font-style: italic;
    transition: var(--transition);
}

#mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(197, 157, 95, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-headline .italic-gold {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--slate-400);
    max-width: 32rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-sub em {
    color: var(--white);
    font-weight: 500;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
    color: var(--white);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-white);
    backdrop-filter: blur(12px);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--bg);
    object-fit: cover;
    margin-left: -0.75rem;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.proof-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border-white);
}

.proof-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.125rem;
}

.proof-text span {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* Hero Image Side */
.hero-image-wrap {
    position: relative;
    order: -1;
}

.hero-image-inner {
    position: relative;
    z-index: 2;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-image-frame {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-white);
    aspect-ratio: 4/5;
    box-shadow: 0 0 100px rgba(197, 157, 95, 0.15);
    position: relative;
    background: var(--surface);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 2s ease, transform 2s ease;
}

.hero-image-frame:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(197,157,95,0.3) 0%, rgba(88,28,135,0.2) 50%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Badges */
.hero-badge {
    position: absolute;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    z-index: 10;
    box-shadow: var(--shadow-dark);
}

.badge-lift {
    bottom: 3rem;
    left: -2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-white);
    padding: 1.5rem;
    animation: bounce 4s ease-in-out infinite;
}

.badge-lift .badge-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.badge-lift .badge-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.badge-ai {
    top: 3rem;
    right: -1rem;
    background: rgba(27, 0, 63, 0.8);
    border: 1px solid rgba(197, 157, 95, 0.3);
    padding: 1.25rem 1.5rem;
}

.badge-ai-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #22c55e;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-ai span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

/* ============================================================
   SURVEY SECTION
   ============================================================ */
#survey {
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 10;
    margin-top: -2.5rem;
}

.survey-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-dark);
}

.survey-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.05);
}

.survey-progress-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 999px;
    transition: width 0.7s ease;
}

.survey-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.survey-step.active {
    display: block;
}

.survey-step-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.survey-step h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.survey-step h2 strong {
    font-style: normal;
    font-weight: 700;
}

.survey-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.survey-option {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-white);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    color: var(--white);
}

.survey-option:hover {
    border-color: rgba(197, 157, 95, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.survey-option .option-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.survey-option .option-label {
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.survey-option:hover .option-label {
    color: var(--gold);
}

.survey-options.list-style {
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.survey-options.list-style .survey-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.survey-options.list-style .option-icon {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.survey-options.list-style .option-label {
    font-size: 1.125rem;
}

.survey-back {
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s;
}

.survey-back:hover {
    color: var(--white);
}

/* Survey Result */
.survey-result {
    display: none;
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.survey-result.active {
    display: block;
}

.result-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 40px rgba(197, 157, 95, 0.3);
}

.result-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
}

.result-headline strong {
    font-style: normal;
    color: var(--gold);
}

.result-description {
    color: var(--slate-300);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 36rem;
    margin: 0 auto 0.75rem;
    line-height: 1.7;
}

.result-badge {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.result-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--slate-500);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
    padding: 5rem 0;
}

.stats-headline {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4rem;
}

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

.stat-card {
    padding: 2.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    text-align: center;
    border: 1px solid var(--border-white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.stat-card:hover .stat-icon {
    filter: grayscale(0);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

.stats-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-400);
    font-weight: 500;
    font-size: 0.875rem;
}

.highlight-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(197, 157, 95, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   REAL RESULTS SECTION
   ============================================================ */
#results {
    padding: 6rem 0;
    background: rgba(10, 0, 26, 0.6);
    position: relative;
    overflow: hidden;
}

#results::before,
#results::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#results::before {
    width: 500px;
    height: 500px;
    background: rgba(88, 28, 135, 0.1);
    filter: blur(100px);
    top: 25%;
    left: 25%;
}

#results::after {
    width: 400px;
    height: 400px;
    background: rgba(197, 157, 95, 0.08);
    filter: blur(100px);
    bottom: 25%;
    right: 25%;
}

.results-header {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.results-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.results-sub {
    color: var(--slate-400);
    font-weight: 300;
    font-size: 1.125rem;
}

.results-viewer {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
}

.results-browser {
    background: rgba(27, 0, 63, 0.2);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.browser-bar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-white);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.browser-dots {
    display: flex;
    gap: 0.625rem;
}

.browser-dots span {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
}

.dot-red { background: rgba(239, 68, 68, 0.3); }
.dot-yellow { background: rgba(234, 179, 8, 0.3); }
.dot-green { background: rgba(34, 197, 94, 0.3); }

.browser-url {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    background: rgba(197, 157, 95, 0.05);
    border: 1px solid rgba(197, 157, 95, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
}

.results-slides {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.result-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.result-slide.active {
    opacity: 1;
}

.result-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 3s ease, transform 3s ease;
}

.result-slide.active img {
    filter: grayscale(0);
}

.result-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,0,26,1) 0%, transparent 40%, rgba(255,255,255,0.03) 100%);
}

.result-metric-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(27, 0, 63, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 157, 95, 0.4);
    border-radius: var(--radius-3xl);
    padding: 2.5rem 3.5rem;
    text-align: center;
    min-width: 240px;
    transition: var(--transition);
}

.result-metric-badge:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.metric-star {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.metric-value {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.7s ease;
}

.metric-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: var(--gold);
    opacity: 0.8;
}

/* Results Controls */
.results-controls {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.results-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 56rem;
}

.thumb-btn {
    width: 5rem;
    height: 3.5rem;
    border-radius: 0.625rem;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
    opacity: 0.3;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    padding: 0;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-btn.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.thumb-btn:not(.active):hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.results-dots {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-white);
    padding: 1rem 2rem;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.dots-track {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    height: 0.375rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    width: 0.5rem;
}

.dot.active {
    width: 3rem;
    background: var(--gold);
}

.results-counter {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.2em;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-white);
}

.results-counter span {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
    margin: 0 0.5rem;
}

/* ============================================================
   VALUE PROPOSITION SECTION
   ============================================================ */
#value {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.value-header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 6rem;
}

.value-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.value-headline strong {
    font-style: normal;
}

.value-sub {
    font-size: 1.25rem;
    color: var(--slate-400);
    font-weight: 300;
    line-height: 1.7;
}

.value-sub em {
    color: var(--white);
    font-style: italic;
    font-weight: 500;
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    background: var(--white);
    transition: var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card-img {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.value-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 1s ease, transform 1s ease;
}

.value-card:hover .value-card-img img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.value-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--white), transparent);
}

.card-magic-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.375rem 1.25rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-card-body {
    padding: 2rem 2.5rem 3rem;
    background: var(--white);
}

.value-card-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.value-card-hook {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.value-card-desc {
    color: var(--slate-600);
    line-height: 1.7;
    font-weight: 300;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.value-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-900);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.link-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-card-link:hover .link-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.value-cta {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

/* ============================================================
   SERVICE PLAN SECTION
   ============================================================ */
#services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.services-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.services-content p {
    color: var(--slate-400);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    text-align: left;
    width: 100%;
}

.service-item:hover {
    border-color: rgba(197, 157, 95, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.service-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 1.5rem;
}

.service-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--slate-200);
}

.service-arrow {
    color: var(--slate-500);
    font-size: 1.25rem;
    transition: var(--transition);
}

.service-item:hover .service-arrow {
    color: var(--gold);
    transform: translateX(0.5rem);
}

.services-image-wrap {
    position: relative;
}

.services-image-frame {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg);
    position: relative;
}

.services-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.services-float-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(27, 0, 63, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-white);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.float-card-info h4 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.float-card-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(197, 157, 95, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-sublabel {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--slate-400);
}

.float-card-btn {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.float-card-btn:hover {
    background: var(--gold-dark);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
    padding: 6rem 0;
}

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

.gallery-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gallery-sub {
    color: var(--slate-400);
    font-weight: 300;
    font-size: 1.0625rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    background: var(--slate-900);
    border: 1px solid var(--border-white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.7s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 1s ease, transform 1s ease;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.1) rotate(0.5deg);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-category {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
    transform: translateY(1rem);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    transform: translateY(1rem);
    transition: transform 0.5s ease 0.05s;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-expand-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
    color: var(--gold);
}

.gallery-item:hover .gallery-expand-icon {
    opacity: 1;
}

.gallery-cta {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.gallery-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-white);
    padding: 1.5rem 2.5rem;
    border-radius: 999px;
    backdrop-filter: blur(24px);
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-avatars {
    display: flex;
}

.gallery-avatars .g-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    margin-left: -0.625rem;
}

.gallery-avatars .g-avatar:first-child {
    margin-left: 0;
}

.gallery-cta-text {
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 300;
}

.gallery-cta-text strong {
    color: var(--white);
    font-weight: 700;
}

.gallery-cta-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    cursor: pointer;
}

.gallery-cta-link:hover {
    color: var(--white);
}

/* ============================================================
   ABOUT ME SECTION
   ============================================================ */
#about {
    padding: 6rem 0;
    background: rgba(10, 0, 26, 0.6);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-white);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    position: relative;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 2s ease;
}

.about-image-wrap:hover .about-image-frame img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
    z-index: 1;
    border-radius: var(--radius-xl);
    opacity: 0.4;
}

.about-image-glow {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(197, 157, 95, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

.about-content {}

.about-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

.about-headline strong {
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--slate-300);
    line-height: 1.8;
    font-size: 1.0625rem;
    font-weight: 300;
    max-width: 36rem;
    margin-bottom: 3rem;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
    padding: 6rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--slate-400);
    font-size: 1.0625rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testimonial-quote-mark {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--slate-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(197, 157, 95, 0.3);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--border-white);
    background: none;
    color: var(--white);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-btn.gold {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.3);
}

.nav-btn.gold:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   FINAL CTA / CONTACT SECTION
   ============================================================ */
#contact {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 0;
}

#contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(197,157,95,0.08) 0%, transparent 60%);
    filter: blur(100px);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-white);
    border-radius: var(--radius-3xl);
    padding: 3rem 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-dark);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: var(--gold);
    opacity: 0.08;
    filter: blur(2rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-badge {
    display: inline-block;
    background: rgba(197, 157, 95, 0.2);
    color: var(--gold);
    border: 1px solid rgba(197, 157, 95, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.contact-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.15;
}

.contact-headline strong {
    font-style: normal;
    font-weight: 700;
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--slate-300);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-value-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-point-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.value-point:hover .value-point-icon {
    transform: scale(1.1);
    border-color: rgba(197, 157, 95, 0.4);
}

.value-point-title {
    font-weight: 700;
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.value-point:hover .value-point-title {
    color: var(--gold);
}

.value-point-desc {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Offer Box */
.offer-box-wrap {
    position: relative;
}

.offer-box {
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    padding: 1px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.offer-box-inner {
    background: rgba(10, 0, 26, 0.8);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.offer-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.offer-retail {
    color: var(--slate-500);
    text-decoration: line-through;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.offer-box-promo {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-white);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.offer-free-text {
    font-weight: 600;
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.offer-free-text span {
    color: var(--gold);
}

.offer-slots {
    font-size: 0.75rem;
    color: var(--slate-400);
}

.offer-cta {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(197, 157, 95, 0.3);
}

.offer-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.offer-cta-ring {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 2px solid var(--gold);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.2;
    pointer-events: none;
}

.offer-disclaimer {
    font-size: 0.625rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-top: 1.5rem;
}

.trust-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border-white);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-dark);
    animation: bounce 3s ease-in-out infinite;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.trust-sub {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
}

/* ============================================================
   LEAD MAGNET SECTION
   ============================================================ */
#resources {
    padding: 5rem 1.5rem;
    opacity: 0.85;
    transition: opacity 0.3s;
}

#resources:hover {
    opacity: 1;
}

.lead-magnet-card {
    max-width: 72rem;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-white);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 16rem; height: 16rem;
    background: rgba(197, 157, 95, 0.05);
    filter: blur(2rem);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.lead-magnet-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 16rem; height: 16rem;
    background: rgba(88, 28, 135, 0.05);
    filter: blur(2rem);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.lead-magnet-inner {
    position: relative;
    z-index: 1;
}

.lead-magnet-card h2 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.lead-magnet-card h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

.lead-magnet-card p {
    color: var(--slate-400);
    font-size: 1.0625rem;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.btn-ghost-white .btn-arrow {
    transition: transform 0.3s;
}

.btn-ghost-white:hover .btn-arrow {
    transform: translateX(0.5rem);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
}

.footer-newsletter {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-white);
    border-radius: 999px;
    padding: 0.5rem;
    backdrop-filter: blur(12px);
    width: 100%;
}

.footer-newsletter input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    padding: 0.625rem 1.5rem;
    flex: 1;
    min-width: 0;
    font-size: 0.9375rem;
}

.footer-newsletter input::placeholder {
    color: var(--slate-500);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.2);
}

.newsletter-btn:hover {
    background: var(--gold-dark);
}

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

.footer-profile-col {
    grid-column: 1 / -1;
}

.footer-profile-img {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 3px solid var(--border-white);
    background: var(--slate-900);
    margin-bottom: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.footer-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.footer-profile-name {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-profile-role {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid var(--border-white);
    cursor: pointer;
}

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

.footer-col h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-col a {
    color: var(--slate-400);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.footer-copy {
    color: var(--slate-500);
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--slate-500);
    font-size: 0.75rem;
    transition: color 0.3s;
}

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

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-wrap {
        order: 1;
    }

    .hero-content {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card {
        padding: 4rem 5rem;
    }

    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-newsletter {
        width: auto;
        min-width: 420px;
    }

    .footer-links {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-profile-col {
        grid-column: 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    #main-nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .survey-card {
        padding: 4rem;
    }

    .result-metric-badge {
        padding: 3.5rem;
        min-width: 380px;
    }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    #hero {
        padding: 12rem 0 8rem;
    }

    .hero-headline {
        font-size: clamp(3.5rem, 6vw, 5.5rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .badge-lift {
        left: -3rem;
    }

    .badge-ai {
        right: -2rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* WordPress alignment classes */
.alignnone { margin: 0.5rem 1rem 0.5rem 0; }
.aligncenter { display: block; margin: 0.5rem auto; }
.alignright { float: right; margin: 0.5rem 0 1rem 1rem; }
.alignleft { float: left; margin: 0.5rem 1rem 1rem 0; }
