/* ===== CSS Variables - BrightSites Premium Dark Theme ===== */
:root {
    --primary: #c9a962;
    --primary-dark: #a8893f;
    --primary-light: #dfc07a;
    --primary-glow: rgba(201, 169, 98, 0.4);
    --secondary: #c9a962;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --success: #22c55e;
    --success-glow: rgba(34, 197, 94, 0.3);
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-glow: rgba(239, 68, 68, 0.3);
    --dark: #050506;
    --dark-light: #0a0a0c;
    --gray-900: #0c0c0e;
    --gray-800: #141416;
    --gray-700: #1c1c1f;
    --gray-600: #2a2a2e;
    --gray-500: #52525b;
    --gray-400: #a1a1aa;
    --gray-300: #d4d4d8;
    --gray-200: #e4e4e7;
    --gray-100: #f4f4f5;
    --white: #fafafa;
    --cream: #050506;
    --surface: #0a0a0c;
    --surface-elevated: #111113;
    --surface-glass: rgba(20, 20, 22, 0.8);
    --border: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(201, 169, 98, 0.2);
    --gradient-primary: linear-gradient(135deg, #c9a962 0%, #a8893f 100%);
    --gradient-gold: linear-gradient(135deg, #dfc07a 0%, #c9a962 50%, #a8893f 100%);
    --gradient-gold-soft: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(168, 137, 63, 0.05) 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0c 0%, #050506 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(201, 169, 98, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(201, 169, 98, 0.05) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(201, 169, 98, 0.03) 0px, transparent 50%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.4);
    --shadow: 0 2px 8px 0 rgb(0 0 0 / 0.5);
    --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 24px 48px -8px rgb(0 0 0 / 0.6);
    --shadow-glow: 0 0 40px rgba(201, 169, 98, 0.15);
    --shadow-glow-lg: 0 0 60px rgba(201, 169, 98, 0.2);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-400);
    background-color: var(--cream);
    overflow-x: hidden;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar but keep functionality */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

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

ul {
    list-style: none;
}

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

strong {
    color: var(--white);
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.25);
    letter-spacing: 0.1em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient-primary);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 0.8125rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: var(--radius);
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface) 0%, var(--cream) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 98, 0.25);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}

/* ===== Bullet List Styles ===== */
.hero-bullets,
.problem-bullets,
.system-bullets,
.results-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-width: 600px;
}

.hero-bullets li,
.problem-bullets li,
.system-bullets li,
.results-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-300);
    border-bottom: 1px solid var(--border);
}

.hero-bullets li:last-child,
.problem-bullets li:last-child,
.system-bullets li:last-child,
.results-bullets li:last-child {
    border-bottom: none;
}

.hero-bullets li i,
.system-bullets li i,
.results-bullets li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.problem-bullets li i {
    color: var(--danger);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===== Context & Persuasion Styles ===== */
.hero-context {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.section-context {
    font-size: 1rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bullet-sub {
    color: var(--gray-500);
    font-size: 0.9em;
}

.social-proof {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--surface-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    color: var(--gray-300);
    font-size: 0.95rem;
}

.social-proof i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.section-cta {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

.visual-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

.visual-icon {
    font-size: 5rem;
    color: var(--primary);
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 33, 0.95) 0%, rgba(20, 20, 22, 0.9) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 98, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.floating-card i {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, rgba(201, 169, 98, 0.02) 100%);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, rgba(201, 169, 98, 0.02) 100%);
    top: 30%;
    left: 10%;
}

/* ===== Sections Common ===== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 98, 0.25);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Problem Section (Features) ===== */
.features {
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 169, 98, 0.4);
}

.problem-card .feature-icon,
.problem-icon {
    background: rgba(201, 169, 98, 0.15) !important;
    color: var(--primary) !important;
    border-radius: var(--radius) !important;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.feature-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.problem-truth {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.problem-truth p {
    font-size: 1.25rem;
    color: var(--gray-300);
}

.problem-truth strong {
    color: var(--primary);
}

/* ===== Belief Section ===== */
.belief-section {
    background: var(--dark);
    padding: 7rem 0;
    position: relative;
}

.belief-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.belief-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.belief-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.belief-section .section-badge {
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary);
}

.belief-quote {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin: 2rem 0;
    font-style: italic;
}

.belief-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== What We Build Section ===== */
.services {
    background: var(--cream);
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.build-card {
    background: var(--surface-elevated);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.build-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 169, 98, 0.4);
}

.build-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.build-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201, 169, 98, 0.2);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.build-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.build-description {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== About/Why Different Section ===== */
.about {
    background: var(--surface);
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Comparison Box ===== */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.comparison-col {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.comparison-col.bad {
    background: var(--surface);
    border: 1px solid var(--border);
}

.comparison-col.good {
    background: var(--surface-elevated);
    border: 1px solid rgba(201, 169, 98, 0.4);
}

.comparison-col h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.comparison-col.bad h4 {
    color: var(--gray-400);
}

.comparison-col.good h4 {
    color: var(--primary);
}

.comparison-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-col li {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    background: var(--cream);
    padding: 5rem 0;
}

.philosophy-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2.5rem;
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.3);
}

.philosophy-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.philosophy-not {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ===== Offerings Section ===== */
.offerings-section {
    background: var(--surface);
    padding: 5rem 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offering-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.offering-item:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.offering-item i {
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.offering-item span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== Audience Section ===== */
.audience-section {
    background: var(--cream);
    padding: 5rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
}

.audience-card.for-you {
    background: var(--surface-elevated);
    border: 1px solid rgba(201, 169, 98, 0.4);
}

.audience-card.not-for-you {
    background: var(--surface);
    border: 1px solid var(--border);
}

.audience-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.audience-card.for-you h3 {
    color: var(--primary);
}

.audience-card.not-for-you h3 {
    color: var(--gray-400);
}

.audience-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audience-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.audience-card.for-you li i {
    color: var(--primary);
}

.audience-card.not-for-you li i {
    color: var(--gray-500);
}

/* ===== Mission Section ===== */
.mission-section {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section .section-badge {
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.mission-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--gray-400);
    line-height: 1.8;
}

.mission-text strong {
    color: var(--primary);
    font-weight: 500;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--dark);
    position: relative;
}

/* ===== Sale Countdown Timer ===== */
.sale-countdown {
    margin-top: 3rem;
    text-align: center;
}

.countdown-label {
    font-size: 1.2rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.countdown-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    min-width: 60px;
}

.countdown-num.tick {
    animation: pulse 0.4s ease-out;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.3;
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 0.3rem;
    }
    
    .countdown-num {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .countdown-item {
        font-size: 0.9rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--surface-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gray-600);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-light);
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.pricing-badge.starter {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pricing-badge.business {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.pricing-badge.premium {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.original-price {
    font-size: 1.1rem;
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
    margin-left: 0.75rem;
    align-self: center;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    }
}

.pricing-card.featured .discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card.featured .discount-badge {
    animation: pulse-badge-gold 2s ease-in-out infinite;
}

@keyframes pulse-badge-gold {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    }
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-400);
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.pricing-negotiate {
    font-size: 0.75rem;
    color: var(--primary);
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--gray-300);
    border-bottom: 1px solid var(--surface-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 0.8rem;
    width: 18px;
    color: var(--primary);
}

.pricing-features li i.fa-clock {
    color: var(--gray-400);
}

/* Limitation items (red X) */
.pricing-features li.feature-limitation {
    color: var(--gray-500);
}

.pricing-features li.feature-limitation i {
    color: #ef4444;
}

/* Risk reversal badge */
.risk-reversal {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.risk-reversal i {
    margin-right: 0.5rem;
}

/* Urgency message */
.pricing-urgency {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-urgency i {
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.pricing-note i {
    margin-right: 0.5rem;
    color: var(--gray-600);
}

/* Pricing slot urgency per card */
.pricing-slot {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #f59e0b;
    text-align: center;
}

.pricing-slot i {
    margin-right: 0.25rem;
}

/* FAQ Section in Pricing */
.faq-section {
    margin-top: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.faq-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--surface-overlay);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.faq-item strong {
    color: var(--gray-200);
}

.faq-item p {
    margin-top: 0.5rem;
    opacity: 0.9;
    color: var(--gray-400);
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ===== Contact Section ===== */
.contact {
    background: var(--surface);
}

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

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp-icon {
    background: var(--surface-elevated);
    color: #25D366;
}

.contact-details h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 42px;
    height: 42px;
    padding: 0 1rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link span {
    font-size: 0.875rem;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Instagram hover - gradient effect */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: var(--white);
}

/* WhatsApp hover */
.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

/* LinkedIn hover */
.social-link.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: var(--white);
}

/* Twitter/X hover */
.social-link.twitter:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

/* Facebook hover */
.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: var(--white);
}

/* YouTube hover */
.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--surface-elevated);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.125rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--surface);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

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

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 280px;
    font-size: 0.875rem;
}

.footer-links h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.footer-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.375rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

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

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.25rem;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .build-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .build-grid {
        grid-template-columns: 1fr;
    }
    
    .belief-quote {
        font-size: 1.75rem;
    }
    
    .philosophy-grid {
        gap: 1rem;
    }
    
    .philosophy-item {
        padding: 1rem 1.5rem;
    }
    
    .philosophy-label {
        font-size: 1.25rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-box {
        grid-template-columns: 1fr;
    }
    
    .mission-text {
        font-size: 1.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-description {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        max-width: 300px;
        height: 300px;
    }
    
    .main-visual {
        width: 200px;
        height: 200px;
    }
    
    .visual-icon {
        font-size: 3rem;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .belief-quote {
        font-size: 1.5rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
}

/* ===== VISUAL ENHANCEMENTS - Hierarchy, Readability & Conversion ===== */

/* Enhanced Hero Badge - More Prominent */
.hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.1) 100%);
}

/* Hero Bullets - Card-like grouping */
.hero-bullets {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.hero-bullets li > span:first-of-type,
.hero-bullets li > strong:first-of-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-bullets li i {
    background: rgba(201, 169, 98, 0.15);
    padding: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.hero-bullets .bullet-sub {
    display: block;
    padding-left: 2.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Problem Section - Enhanced Visual Impact */
.problem-bullets {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.problem-bullets li {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.problem-bullets li:hover {
    border-color: rgba(163, 93, 93, 0.4);
    transform: translateX(5px);
}

.problem-bullets li i {
    background: rgba(163, 93, 93, 0.15);
    padding: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.problem-bullets .bullet-sub {
    display: block;
    padding-left: 2.25rem;
    margin-top: 0.25rem;
}

/* Emphasized Numbers/Stats in bullets */
.hero-bullets li strong,
.problem-bullets li strong,
.results-bullets li strong {
    color: var(--white);
    font-weight: 700;
}

.problem-bullets li strong:first-of-type {
    font-size: 1.4rem;
    color: #ef6b6b;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Results/Features Section - Card Grid */
.results-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.results-bullets li {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.results-bullets li:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.results-bullets li i {
    background: rgba(201, 169, 98, 0.15);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    color: var(--primary);
}

.results-bullets .bullet-sub {
    display: block;
    padding-left: 0;
    margin-top: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Social Proof - More Prominent */
.social-proof {
    background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface) 100%);
    border: 1px solid rgba(201, 169, 98, 0.25);
    padding: 1.25rem 2rem;
    font-size: 1rem;
    margin-top: 2.5rem;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Case Snapshot */
.case-snapshot {
    text-align: center;
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-300);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.case-snapshot strong {
    color: #22c55e;
}

/* Contact Social Proof */
.contact-social-proof {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 169, 98, 0.05);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-400);
    border-left: 3px solid var(--primary);
}

.contact-social-proof i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Section Headers - Enhanced */
.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
}

.section-context {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
}

/* Enhanced Pricing Cards */
.pricing-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
    border: 1px solid var(--border);
    padding: 2rem;
}

.pricing-card .pricing-header {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-amount {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pricing-amount .price {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .pricing-amount .price {
    font-size: 3.75rem;
}

.original-price {
    font-size: 1.25rem;
    opacity: 0.7;
    position: relative;
}

.discount-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
}

/* Pricing Features - Better Organization */
.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    flex-wrap: wrap;
    line-height: 1.5;
}

.pricing-features li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.pricing-features li i.fa-star {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.pricing-features li i.fa-key {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pricing-features li i.fa-clock {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.pricing-features .bullet-sub {
    flex-basis: 100%;
    padding-left: 2.25rem;
    margin-top: 0.3rem;
    font-size: 0.82rem;
}

/* Expected leads highlight */
.pricing-features li:has(i.fa-star) {
    background: rgba(245, 158, 11, 0.05);
    margin: 0.5rem -1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
}

/* Pricing CTA Button spacing */
.pricing-card .btn-block {
    margin-top: auto;
    padding: 1rem 1.5rem;
}

.pricing-slot {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
}

/* Sale Countdown Enhancement */
.sale-countdown {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* FAQ Section Enhancement */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.faq-section h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
}

.faq-section h3 i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.faq-item {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.faq-item strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section Enhancement */
.contact-grid {
    gap: 3rem;
}

.contact-content .section-title {
    font-size: 2.5rem;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-trust {
    background: var(--surface-elevated) !important;
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem 1.25rem !important;
    border-radius: var(--radius-lg) !important;
}

.contact-trust i {
    color: var(--primary) !important;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius);
}

.contact-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

/* Contact Form Enhancement */
.contact-form-wrapper {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Section CTA Enhancement */
.section-cta {
    margin-top: 3rem;
    gap: 1.25rem;
}

.section-cta .btn {
    min-width: 200px;
}

/* Footer Enhancement */
.footer {
    background: var(--dark);
    padding: 5rem 0 2rem;
}

.footer-grid {
    gap: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-description {
    margin-top: 1.5rem;
    line-height: 1.75;
}

.footer-trust {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 169, 98, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.footer-links h4 {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Section Separators */
.features::before,
.about::before,
.pricing::before,
.contact::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin-bottom: 0;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .hero-bullets {
        padding: 1.25rem 1.5rem;
    }
    
    .results-bullets {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-bullets {
        padding: 1rem 1.25rem;
    }
    
    .hero-bullets li {
        padding: 0.75rem 0;
    }
    
    .hero-bullets .bullet-sub {
        padding-left: 0;
    }
    
    .problem-bullets li {
        padding: 1rem 1.25rem;
    }
    
    .problem-bullets .bullet-sub {
        padding-left: 0;
    }
    
    .results-bullets li {
        padding: 1.25rem;
    }
    
    .results-bullets .bullet-sub {
        padding-left: 0;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .pricing-features .bullet-sub {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .faq-section {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .problem-bullets li strong:first-of-type {
        font-size: 1.2rem;
    }
    
    .pricing-amount .price {
        font-size: 2.75rem;
    }
    
    .pricing-card.featured .pricing-amount .price {
        font-size: 3rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}


/* ===== PREMIUM VISUAL OVERHAUL ===== */

/* Body - Add subtle noise texture */
body {
    background: var(--dark);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
}

/* === Hero Section - Make it POP === */
.hero {
    background: linear-gradient(180deg, 
        rgba(201, 169, 98, 0.03) 0%, 
        var(--dark) 50%,
        var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
    animation: aurora 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(3deg); }
}

/* Hero Badge - Glowing */
.hero-badge {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(201, 169, 98, 0.2); }
    50% { box-shadow: 0 0 50px rgba(201, 169, 98, 0.35); }
}

/* Hero Title - Gradient text */
.hero-title {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero Bullets - Glassmorphism cards */
.hero-bullets {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.9) 0%, rgba(10, 10, 12, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.hero-bullets li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bullets li i {
    background: var(--gradient-gold);
    color: var(--dark);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

/* === BUTTONS - Premium feel === */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2);
    transform: translateY(-2px);
}

/* === PROBLEM SECTION - Visual drama === */
.features {
    background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
    position: relative;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.problem-bullets {
    max-width: 900px;
}

.problem-bullets li {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.95) 0%, rgba(15, 15, 17, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--danger);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.problem-bullets li:hover {
    transform: translateX(8px);
    border-left-color: #ef4444;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.problem-bullets li i {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #ef4444;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

/* Large numbers in problem */
.problem-bullets li strong:first-of-type {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: linear-gradient(135deg, #ff6b6b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

/* === RESULTS/FEATURES SECTION - Card grid === */
.about {
    background: var(--dark);
    background-image: var(--gradient-mesh);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.results-bullets {
    max-width: 1100px;
}

.results-bullets li {
    background: linear-gradient(145deg, rgba(25, 25, 28, 0.95) 0%, rgba(18, 18, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.results-bullets li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.results-bullets li:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 98, 0.1);
}

.results-bullets li:hover::before {
    opacity: 1;
}

.results-bullets li i {
    background: var(--gradient-gold-soft);
    color: var(--primary);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.15);
}

/* WhatsApp icon special */
.results-bullets li i.fa-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
    color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.2);
}

/* Robot/AI icon */
.results-bullets li i.fa-robot {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Server icon */
.results-bullets li i.fa-server {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Key icon */
.results-bullets li i.fa-key {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #22c55e;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Social Proof - Glow bar */
.social-proof {
    background: linear-gradient(135deg, rgba(25, 25, 28, 0.95) 0%, rgba(18, 18, 20, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    background: var(--gradient-gold);
    height: 4px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Case Snapshot */
.case-snapshot {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

/* === PRICING SECTION - Premium cards === */
.pricing {
    background: linear-gradient(180deg, var(--dark) 0%, var(--surface) 50%, var(--dark) 100%);
    background-image: var(--gradient-mesh);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card {
    background: linear-gradient(165deg, rgba(25, 25, 28, 0.98) 0%, rgba(15, 15, 17, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-600), var(--gray-700));
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(201, 169, 98, 0.1);
}

.pricing-card:hover::before {
    background: var(--gradient-gold);
}

/* Featured pricing card */
.pricing-card.featured {
    background: linear-gradient(165deg, rgba(30, 28, 25, 0.98) 0%, rgba(20, 18, 15, 0.95) 100%);
    border: 2px solid rgba(201, 169, 98, 0.3);
    box-shadow: 0 0 60px rgba(201, 169, 98, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    background: var(--gradient-gold);
    height: 5px;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 0 80px rgba(201, 169, 98, 0.25), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-popular {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

/* Price amount - Glowing numbers */
.pricing-amount .price {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.3));
}

.pricing-card.featured .pricing-amount .price {
    font-size: 4.5rem;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.4));
}

.original-price {
    font-size: 1.3rem;
    color: var(--gray-500);
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

/* Discount badge - Animated glow */
.discount-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Pricing features - Better icons */
.pricing-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 0.75rem;
}

.pricing-features li i.fa-check {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    color: var(--primary);
}

.pricing-features li i.fa-star {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.pricing-features li i.fa-key {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
}

.pricing-features li i.fa-clock {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

/* Expected leads highlight */
.pricing-features li:has(i.fa-star) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.02) 100%);
    margin: 0.75rem -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* Sale Countdown - Glowing container */
.sale-countdown {
    background: linear-gradient(135deg, rgba(25, 25, 28, 0.98) 0%, rgba(18, 18, 20, 0.95) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-2xl);
}

.countdown-num {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Urgency banner */
.pricing-urgency {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-xl);
}

/* === FAQ SECTION === */
.faq-section h3 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.9) 0%, rgba(15, 15, 17, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 169, 98, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 169, 98, 0.05);
}

/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(180deg, var(--dark) 0%, var(--surface) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.4), transparent);
}

.contact-trust {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.03) 100%) !important;
    border: 1px solid rgba(201, 169, 98, 0.2) !important;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
}

.contact-form-wrapper {
    background: linear-gradient(165deg, rgba(25, 25, 28, 0.98) 0%, rgba(15, 15, 17, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-2xl);
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1), 0 0 20px rgba(201, 169, 98, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

/* Contact icons */
.contact-icon {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.1);
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-trust {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
    border-left: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.05);
}

/* === WHATSAPP BUTTON - Enhanced === */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.3);
}

/* === NAVIGATION - Glass effect === */
.navbar {
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(5, 5, 6, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* === SECTION BADGES - Consistent glow === */
.section-badge {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.25);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.15);
}

/* === RESPONSIVE VISUAL ADJUSTMENTS === */
@media (max-width: 768px) {
    .hero::before {
        display: none;
    }
    
    .pricing::before {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-amount .price {
        font-size: 3rem;
    }
    
    .pricing-card.featured .pricing-amount .price {
        font-size: 3.25rem;
    }
}