/* PF Marketing AI - Premium Luxury Animated Theme */

/* ============================================
   PREMIUM VARIABLES
   ============================================ */
:root {
    /* Premium Colors */
    --premium-gold: #c9a962;
    --premium-gold-light: #e8d5a8;
    --premium-gold-dark: #9d7b3a;
    --premium-black: #1a1a1a;
    --premium-dark: #2d2d2d;
    --premium-charcoal: #3d3d3d;

    /* Refined Neutrals */
    --cream: #faf9f7;
    --cream-dark: #f5f4f2;
    --warm-white: #fefefe;
    --soft-gray: #e8e7e5;
    --medium-gray: #9a9a9a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;

    /* Gradient Colors */
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e8d5a8 50%, #c9a962 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-cream: linear-gradient(180deg, #faf9f7 0%, #ffffff 50%, #faf9f7 100%);

    /* Premium Shadows */
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 50px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 20px 60px rgba(201, 169, 98, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 169, 98, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ============================================
   GLOBAL ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

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

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 98, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 98, 0.6); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ============================================
   PREMIUM THEME BASE
   ============================================ */
.premium-theme {
    background: var(--warm-white);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ============================================
   FLOATING BACKGROUND ELEMENTS
   ============================================ */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Animated gradient orbs */
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: floatReverse 18s ease-in-out infinite;
}

/* ============================================
   LUXURY GEOMETRIC SHAPES - BOLD & VISIBLE
   Premium high-end design with glassmorphism
   ============================================ */
.luxury-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Bold glassmorphism shapes */
.shape {
    position: absolute;
    background: linear-gradient(135deg,
        rgba(201, 169, 98, 0.35) 0%,
        rgba(232, 213, 168, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 98, 0.4);
    box-shadow:
        0 8px 32px rgba(201, 169, 98, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    top: 5%;
    left: 3%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.shape-2 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: 12%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.shape-3 {
    width: 220px;
    height: 220px;
    border-radius: 50px;
    top: 45%;
    left: 2%;
    animation-delay: 4s;
    transform: rotate(-10deg);
}

.shape-4 {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    top: 55%;
    right: 3%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    top: 25%;
    left: 8%;
    animation-delay: 8s;
    transform: rotate(45deg);
}

.shape-6 {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    top: 75%;
    left: 5%;
    animation-delay: 10s;
}

/* Bold gold ring outlines */
.shape-ring {
    position: absolute;
    border: 3px solid rgba(201, 169, 98, 0.5);
    border-radius: 50%;
    background: transparent;
    box-shadow:
        0 0 30px rgba(201, 169, 98, 0.2),
        inset 0 0 30px rgba(201, 169, 98, 0.1);
    animation: floatRing 25s ease-in-out infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    top: 8%;
    right: 2%;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 8%;
    animation-delay: 6s;
}

/* Bold gradient accent lines */
.shape-line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.6) 20%,
        rgba(232, 213, 168, 0.8) 50%,
        rgba(201, 169, 98, 0.6) 80%,
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
    animation: floatLine 15s ease-in-out infinite;
}

.line-1 {
    width: 300px;
    top: 20%;
    left: 0;
    transform: rotate(-12deg);
    animation-delay: 0s;
}

.line-2 {
    width: 250px;
    bottom: 25%;
    right: 0;
    transform: rotate(15deg);
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 15deg));
        opacity: 0.85;
    }
    50% {
        transform: translateY(-25px) rotate(calc(var(--rotation, 15deg) + 5deg));
        opacity: 1;
    }
}

@keyframes floatRing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05) rotate(90deg);
        opacity: 0.9;
    }
}

@keyframes floatLine {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-20px) rotate(var(--rotation, -12deg));
    }
    50% {
        opacity: 1;
        transform: translateX(20px) rotate(var(--rotation, -12deg));
    }
}

/* Gradient Orbs - BOLD & VISIBLE */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.45) 0%,
        rgba(232, 213, 168, 0.25) 40%,
        transparent 70%);
    top: -250px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.4) 0%,
        rgba(201, 169, 98, 0.2) 40%,
        transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    33% {
        transform: translate(40px, -50px) scale(1.15);
        opacity: 1;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.95);
        opacity: 0.85;
    }
}

/* ============================================
   PREMIUM NAVIGATION - Compact & Luxury
   ============================================ */
.premium-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    padding: 0.65rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.premium-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.premium-nav .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.premium-nav .logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    color: var(--warm-white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.premium-nav .logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.08);
}

.premium-nav .logo-text {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--premium-black);
}

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

.premium-nav .nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.premium-nav .nav-links a:hover::after {
    width: 100%;
}

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

.premium-select {
    border: 1px solid var(--soft-gray);
    background: var(--warm-white);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-select:hover {
    border-color: var(--premium-gold);
}

/* Nav buttons - compact */
.premium-nav .btn-ghost {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.premium-nav .btn-premium {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Premium Buttons */
.btn-premium {
    background: var(--gradient-dark);
    background-size: 200% 200%;
    color: var(--warm-white);
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 8px 35px rgba(201, 169, 98, 0.35); }
}

.btn-premium::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: left 0.6s ease;
}

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

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
    animation: none;
}

.btn-premium.btn-xl {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    gap: 0.75rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--premium-gold-dark);
    transform: translateY(-2px);
}

.btn-outline-premium {
    background: transparent;
    color: var(--premium-black);
    border: 2px solid var(--soft-gray);
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-premium:hover {
    border-color: var(--premium-gold);
    background: rgba(201, 169, 98, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.15);
}

.btn-outline-premium.btn-xl {
    padding: 1rem 2rem;
}

.btn-premium-dark {
    background: var(--premium-black);
    color: var(--warm-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-premium-dark:hover {
    background: var(--premium-charcoal);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM HERO WITH ANIMATIONS
   ============================================ */
.premium-hero {
    padding: calc(5rem + 56px) 0 5rem;
    background: var(--gradient-cream);
    background-size: 100% 200%;
    animation: gradientShift 10s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated decorative elements */
.premium-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.premium-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--premium-gold-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.badge-icon {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(
        90deg,
        #c9a962 0%,
        #e8d5a8 25%,
        #f5e6c3 50%,
        #e8d5a8 75%,
        #c9a962 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
    position: relative;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.metric {
    text-align: center;
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: scale(1.05);
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--premium-black);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--premium-gold), transparent);
}

/* ============================================
   HERO VISUAL - ANIMATED CARDS
   ============================================ */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease forwards;
}

.visual-card.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: var(--shadow-strong), 0 0 60px rgba(201, 169, 98, 0.1);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

.visual-card.main-card:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: var(--shadow-strong), 0 0 80px rgba(201, 169, 98, 0.2);
}

.card-header-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.visual-content {
    padding: 1.25rem;
}

.ai-output-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.output-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.output-item:hover {
    border-color: var(--premium-gold);
    transform: translateX(5px);
}

.output-icon {
    font-size: 1.25rem;
}

.output-item .check {
    margin-left: auto;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.output-item.active {
    background: var(--gradient-dark);
    color: var(--warm-white);
    animation: glow 2s ease-in-out infinite;
}

.loading-bar {
    margin-left: auto;
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: -50px;
    width: 50px;
    height: 100%;
    background: var(--gradient-gold);
    animation: loading 1.5s infinite;
    border-radius: 3px;
}

@keyframes loading {
    0% { left: -50px; }
    100% { left: 100%; }
}

/* Floating Cards - Social Media Style */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--warm-white);
    border-radius: 14px;
    box-shadow: var(--shadow-medium), 0 0 30px rgba(201, 169, 98, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.floating-card:hover {
    transform: scale(1.15) rotate(-3deg) !important;
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.35), 0 0 40px rgba(201, 169, 98, 0.2);
    animation: none;
}

.float-icon {
    font-size: 1.25rem;
}

.floating-card.card-1 {
    top: 5%;
    right: 0;
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -10px;
    animation: floatReverse 7s ease-in-out infinite;
    animation-delay: 1s;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.floating-card.card-3 {
    bottom: 5%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
    background: linear-gradient(135deg, #E1306C 0%, #F77737 100%);
    color: white;
}

/* Additional floating icons */
.premium-hero .floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--premium-gold-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 100px;
}

.section-title-premium {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--premium-black);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   DIFFERENCE SECTION - ANIMATED
   ============================================ */
.difference-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, #f8f5ef 50%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Bold decorative orb left */
.difference-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.35) 0%,
        rgba(232, 213, 168, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -200px;
    animation: orbFloat 20s ease-in-out infinite;
    filter: blur(50px);
}

/* Bold decorative orb right */
.difference-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.4) 0%,
        rgba(201, 169, 98, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: orbFloat 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

.difference-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-boxes {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-box {
    flex: 1;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--soft-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.comparison-box:hover {
    transform: translateY(-5px);
}

.comparison-box.other-tools {
    background: var(--cream);
}

.comparison-box.other-tools:hover::before {
    background: var(--medium-gray);
}

.comparison-box.pf-marketing {
    background: var(--gradient-dark);
    color: var(--warm-white);
    border: none;
    box-shadow: var(--shadow-strong);
}

.comparison-box.pf-marketing::before {
    background: var(--gradient-gold);
    height: 4px;
}

.comparison-box.pf-marketing:hover {
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.box-icon {
    font-size: 1.75rem;
    animation: bounceIn 1s ease;
}

.box-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-secondary);
}

.comparison-quote.pf-quote {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-size: 1rem;
}

.pf-quote strong {
    color: var(--premium-gold-light);
    font-weight: 600;
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-weight: 800;
    color: var(--premium-black);
    flex-shrink: 0;
    align-self: center;
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

/* ============================================
   FEATURES SECTION - ENHANCED
   ============================================ */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f5f2eb 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.4) 0%,
        rgba(232, 213, 168, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    top: 5%;
    left: -250px;
    animation: orbFloat 22s ease-in-out infinite;
    filter: blur(50px);
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.35) 0%,
        rgba(201, 169, 98, 0.15) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: 0;
    right: -200px;
    animation: orbFloat 28s ease-in-out infinite reverse;
    filter: blur(45px);
    pointer-events: none;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
}

/* Feature block decorative elements */
.feature-block::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.feature-block::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.3) 20%,
        rgba(201, 169, 98, 0.5) 50%,
        rgba(201, 169, 98, 0.3) 80%,
        transparent 100%);
    bottom: 10%;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Position glow differently for left/right aligned features */
.feature-block.feature-left::before {
    top: 20%;
    right: 10%;
}

.feature-block.feature-right::before {
    top: 30%;
    left: 8%;
}

.feature-block.feature-center::before {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Remove decorative line from centered features */
.feature-block.feature-center::after {
    display: none;
}

/* Nth-child variations for visual variety */
.feature-block:nth-child(2)::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.12) 0%,
        rgba(201, 169, 98, 0.05) 50%,
        transparent 70%);
    animation-delay: -2s;
}

.feature-block:nth-child(3)::before {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.18) 0%,
        transparent 65%);
    animation-delay: -4s;
}

.feature-block:nth-child(4)::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.14) 0%,
        rgba(201, 169, 98, 0.06) 45%,
        transparent 70%);
    animation-delay: -6s;
}

.feature-block:nth-child(5)::before {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.16) 0%,
        transparent 68%);
    animation-delay: -1s;
}

/* Adjust line gradient for different features */
.feature-block:nth-child(odd)::after {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.25) 30%,
        rgba(201, 169, 98, 0.4) 50%,
        rgba(201, 169, 98, 0.25) 70%,
        transparent 100%);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block.feature-right {
    direction: rtl;
}

.feature-block.feature-right > * {
    direction: ltr;
}

.feature-block.feature-center {
    grid-template-columns: 1fr;
    text-align: center;
}

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

.feature-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(180deg, var(--premium-gold) 0%, rgba(201, 169, 98, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--premium-black);
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: 1.125rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-desc.center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-list.compact {
    gap: 0.875rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--warm-white);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--premium-gold);
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.check-icon {
    color: var(--premium-gold-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-item strong {
    display: block;
    color: var(--premium-black);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Feature Visuals - Enhanced */
.feature-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.strategy-preview,
.blueprint-preview,
.research-preview,
.platforms-preview {
    width: 100%;
    max-width: 400px;
    background: var(--warm-white);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.strategy-preview:hover,
.blueprint-preview:hover,
.research-preview:hover,
.platforms-preview:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.preview-header-premium {
    padding: 1.25rem 1.5rem;
    background: var(--gradient-dark);
    color: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.persona-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s ease;
}

.persona-card:hover {
    background: rgba(201, 169, 98, 0.05);
}

.persona-avatar {
    font-size: 3rem;
    animation: bounceIn 1s ease;
}

.persona-info {
    display: flex;
    flex-direction: column;
}

.persona-name {
    font-weight: 700;
    color: var(--premium-black);
    font-size: 1.1rem;
}

.persona-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pillars-mini {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar {
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 6px;
    width: calc(var(--width) * 4);
    display: flex;
    align-items: center;
    padding-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(201, 169, 98, 0.2);
}

.pillar:hover {
    transform: scaleX(1.05);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.pillar span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--premium-black);
}

/* Blueprint Preview */
.scene-card {
    margin: 1.25rem;
    background: var(--cream);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.scene-card:hover {
    transform: scale(1.02);
}

.scene-header {
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--premium-black);
    color: var(--warm-white);
    font-size: 0.8rem;
    font-weight: 700;
}

.scene-number {
    color: var(--premium-gold);
}

.scene-type {
    margin-left: auto;
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 0.2rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
}

.scene-details {
    padding: 1.25rem;
}

.detail-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
    width: 55px;
}

.more-scenes {
    text-align: center;
    padding: 1.25rem;
    color: var(--premium-gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Blueprint Tags */
.blueprint-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.include-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.include-tag:hover {
    background: var(--premium-gold);
    color: var(--premium-black);
    border-color: var(--premium-gold);
    transform: scale(1.05);
}

/* Comparison Mini */
.comparison-mini {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
}

.comp-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.comp-item.other {
    color: var(--text-muted);
}

.comp-item.pf {
    color: var(--premium-black);
    font-weight: 600;
}

.comp-label {
    font-weight: 700;
    flex-shrink: 0;
}

/* Research Preview */
.trend-section {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.3s ease;
}

.trend-section:last-child {
    border-bottom: none;
}

.trend-section:hover {
    background: rgba(201, 169, 98, 0.05);
}

.trend-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.trend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trend-tag {
    padding: 0.5rem 0.875rem;
    background: var(--cream);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.trend-tag:hover {
    background: var(--premium-gold);
    color: var(--premium-black);
    transform: translateY(-2px);
}

.hashtags-mini {
    font-size: 0.9rem;
    color: var(--premium-gold-dark);
    font-weight: 500;
}

/* Platforms Preview - Enhanced */
.platform-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--soft-gray);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1rem;
    background: var(--warm-white);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(201, 169, 98, 0.05);
    transform: scale(1.02);
}

.platform-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.platform-item:hover .platform-icon-lg {
    transform: scale(1.2) rotate(-5deg);
}

.platform-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.platform-spec {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Platform Specs */
.platform-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-row:hover {
    background: var(--premium-gold);
}

.spec-row:hover .spec-platform,
.spec-row:hover .spec-detail {
    color: var(--premium-black);
}

.spec-platform {
    font-weight: 700;
    color: var(--premium-black);
    width: 100px;
    flex-shrink: 0;
}

.spec-detail {
    color: var(--text-secondary);
}

/* Time Budget Grid - Animated */
.time-budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.budget-card {
    background: var(--warm-white);
    border: 2px solid var(--soft-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.budget-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.budget-card.recommended {
    border-color: var(--premium-gold);
    box-shadow: var(--shadow-premium);
    transform: scale(1.05);
}

.budget-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.budget-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 0.4rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.budget-hours {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--premium-black);
}

.budget-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.budget-recommendation {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   PACKAGE SECTION - ANIMATED
   ============================================ */
.package-section {
    padding: 8rem 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 12s ease-in-out infinite;
}

.package-preview {
    max-width: 650px;
    margin: 0 auto;
    background: var(--gradient-dark);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong), 0 0 80px rgba(0, 0, 0, 0.2);
    position: relative;
}

.package-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.package-header {
    padding: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-date {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--warm-white);
    font-weight: 700;
    font-size: 1rem;
}

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

.package-items {
    padding: 1.75rem;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    margin-bottom: 0.875rem;
    color: var(--warm-white);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--premium-gold);
    transform: translateX(10px);
}

.item-check {
    font-size: 1.25rem;
}

.item-count {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--premium-gold);
    width: 35px;
}

.item-label {
    font-size: 1rem;
}

.package-actions {
    display: flex;
    gap: 0.875rem;
    padding: 0 1.75rem 1.75rem;
}

.package-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    border-radius: 10px;
}

.package-actions .btn-outline-premium {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--warm-white);
}

.package-actions .btn-outline-premium:hover {
    border-color: var(--premium-gold);
    background: rgba(201, 169, 98, 0.2);
}

.package-note {
    padding: 1.25rem 1.75rem;
    background: rgba(201, 169, 98, 0.15);
    text-align: center;
    color: var(--premium-gold-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   SEA SECTION
   ============================================ */
.sea-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f5f2eb 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Bold decorative orb left */
.sea-section::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.35) 0%,
        rgba(232, 213, 168, 0.18) 40%,
        transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -180px;
    animation: orbFloat 20s ease-in-out infinite;
    filter: blur(45px);
}

/* Bold decorative orb right */
.sea-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.38) 0%,
        rgba(201, 169, 98, 0.18) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: -120px;
    right: -130px;
    animation: orbFloat 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

.sea-comparison {
    max-width: 850px;
    margin: 0 auto;
}

.sea-table {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: var(--shadow-medium);
}

.sea-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.sea-row.header {
    background: var(--gradient-dark);
    color: var(--warm-white);
}

.sea-row:not(.header) {
    background: var(--warm-white);
    border-bottom: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.sea-row:not(.header):hover {
    background: rgba(201, 169, 98, 0.05);
}

.sea-row:last-child {
    border-bottom: none;
}

.sea-cell {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
}

.sea-cell.feature {
    font-weight: 600;
    background: var(--cream);
}

.sea-cell .no {
    color: var(--text-muted);
}

.sea-cell .yes {
    color: var(--premium-black);
    font-weight: 600;
}

/* ============================================
   ROI SECTION - ANIMATED
   ============================================ */
.roi-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, #f8f5ef 50%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.4) 0%,
        rgba(232, 213, 168, 0.2) 40%,
        transparent 70%);
    bottom: -350px;
    left: -250px;
    animation: orbFloat 18s ease-in-out infinite;
    filter: blur(60px);
}

.roi-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.38) 0%,
        rgba(201, 169, 98, 0.18) 40%,
        transparent 70%);
    top: -200px;
    right: -150px;
    animation: orbFloat 22s ease-in-out infinite reverse;
    filter: blur(50px);
}

.roi-comparison {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.roi-card {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--soft-gray);
    transition: all 0.4s ease;
}

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

.roi-card.without {
    background: var(--cream);
}

.roi-card.without:hover {
    box-shadow: var(--shadow-medium);
}

.roi-card.with {
    background: var(--gradient-dark);
    color: var(--warm-white);
    border: none;
    box-shadow: var(--shadow-strong);
}

.roi-card.with:hover {
    box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.roi-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.roi-card.with .roi-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.roi-icon {
    font-size: 2rem;
}

.roi-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.roi-items {
    padding: 1.75rem;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.roi-item:hover {
    padding-left: 10px;
}

.roi-card.with .roi-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.roi-item.highlight {
    color: var(--premium-gold);
    font-weight: 600;
}

.roi-value {
    color: var(--text-muted);
}

.roi-card.with .roi-value {
    color: var(--premium-gold);
}

.roi-savings {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
}

.saving-item {
    text-align: center;
}

.saving-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-gold);
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

.saving-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.roi-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 700;
}

.roi-card.with .roi-total {
    background: rgba(255, 255, 255, 0.1);
}

.roi-total.success {
    background: var(--gradient-gold);
    color: var(--premium-black);
}

.total-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.roi-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-weight: 800;
    color: var(--premium-black);
    flex-shrink: 0;
    align-self: center;
    box-shadow: var(--shadow-medium), var(--shadow-glow);
    animation: pulse 3s ease-in-out infinite;
}

/* ============================================
   PERFECT FOR SECTION
   ============================================ */
.perfect-for-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f5f2eb 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Bold decorative elements for perfect-for section */
.perfect-for-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.38) 0%,
        rgba(232, 213, 168, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: orbFloat 20s ease-in-out infinite;
    filter: blur(55px);
}

.perfect-for-section::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.4) 0%,
        rgba(201, 169, 98, 0.18) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: orbFloat 25s ease-in-out infinite reverse;
    filter: blur(50px);
}

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

.perfect-item {
    background: var(--warm-white);
    border: 2px solid var(--soft-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.perfect-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.perfect-item:hover::before {
    transform: scaleX(1);
}

.perfect-item:hover {
    border-color: var(--premium-gold);
    box-shadow: var(--shadow-medium), var(--shadow-glow);
    transform: translateY(-10px);
}

.perfect-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease;
}

.perfect-item:hover .perfect-icon {
    transform: scale(1.2) rotate(-5deg);
}

.perfect-title {
    display: block;
    font-weight: 700;
    color: var(--premium-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.perfect-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   PREMIUM PRICING - ENHANCED
   ============================================ */
.premium-pricing {
    background: linear-gradient(180deg, var(--warm-white) 0%, #f8f5ef 50%, var(--warm-white) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Bold decorative elements for pricing section */
.premium-pricing::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
        rgba(201, 169, 98, 0.35) 0%,
        rgba(232, 213, 168, 0.18) 40%,
        transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: orbFloat 24s ease-in-out infinite;
    filter: blur(60px);
}

.premium-pricing::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(232, 213, 168, 0.38) 0%,
        rgba(201, 169, 98, 0.18) 40%,
        transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: orbFloat 20s ease-in-out infinite reverse;
    filter: blur(55px);
}

.premium-pricing-grid {
    max-width: 1100px;
}

.premium-card {
    border: 2px solid var(--soft-gray);
    border-radius: 24px;
    background: var(--warm-white);
    transition: all 0.4s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.premium-card.featured {
    border-color: var(--premium-gold);
    box-shadow: var(--shadow-premium);
    transform: scale(1.05);
    position: relative;
}

.premium-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.premium-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.premium-card .pricing-badge {
    background: var(--gradient-gold);
    color: var(--premium-black);
    font-weight: 700;
}

.premium-card .pricing-header h3 {
    font-family: var(--font-display);
}

.premium-card .pricing-price .amount {
    font-family: var(--font-display);
    color: var(--premium-black);
}

.premium-card .pricing-price .amount.custom {
    font-size: 2rem;
}

.premium-card.featured .btn-premium {
    background: var(--gradient-gold);
    color: var(--premium-black);
}

.premium-card.featured .btn-premium:hover {
    box-shadow: var(--shadow-glow);
}

/* ============================================
   FINAL CTA - ANIMATED
   ============================================ */
.final-cta {
    padding: 10rem 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.final-cta::after {
    content: '🚀 ✨ 💡 🎯 📈';
    position: absolute;
    font-size: 3rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.final-cta .btn-premium {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.final-cta .btn-premium:hover {
    box-shadow: 0 0 60px rgba(201, 169, 98, 0.5);
    transform: translateY(-5px) scale(1.02);
}

/* ============================================
   UNIQUE SECTION DESIGNS - Each section different
   ============================================ */

/* ---- DIFFERENCE SECTION: Diagonal Corner Accents ---- */
.difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg,
        rgba(201, 169, 98, 0.25) 0%,
        transparent 60%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}

.difference-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: linear-gradient(315deg,
        rgba(201, 169, 98, 0.2) 0%,
        transparent 60%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.difference-section .corner-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(201, 169, 98, 0.5);
    z-index: 0;
}

.difference-section .corner-accent-1 {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.difference-section .corner-accent-2 {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
}

/* ---- FEATURES SECTION: Vertical Lines + Floating Numbers ---- */
.features-section .deco-line-vertical {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(201, 169, 98, 0.6) 30%,
        rgba(201, 169, 98, 0.6) 70%,
        transparent 100%);
    z-index: 0;
}

.features-section .deco-line-v1 {
    left: 5%;
    top: 15%;
}

.features-section .deco-line-v2 {
    right: 5%;
    top: 40%;
    height: 250px;
}

.features-section .deco-circle-outline {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(201, 169, 98, 0.35);
    border-radius: 50%;
    z-index: 0;
    animation: spinSlow 60s linear infinite;
}

.features-section .deco-circle-1 {
    top: 5%;
    right: -100px;
}

.features-section .deco-circle-2 {
    bottom: 10%;
    left: -100px;
}

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

/* ---- PACKAGE SECTION: Grid Pattern ---- */
.package-section .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.package-section .glow-corner {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.package-section .glow-corner-1 {
    top: -150px;
    left: -150px;
}

.package-section .glow-corner-2 {
    bottom: -150px;
    right: -150px;
}

/* ---- SEA SECTION: Wave Lines ---- */
.sea-section .wave-line {
    position: absolute;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='none' stroke='rgba(201,169,98,0.3)' stroke-width='2' d='M0,60 Q150,0 300,60 T600,60 T900,60 T1200,60'/%3E%3C/svg%3E") repeat-x;
    z-index: 0;
    opacity: 0.8;
}

.sea-section .wave-line-1 {
    top: 10%;
    animation: waveMove 20s linear infinite;
}

.sea-section .wave-line-2 {
    bottom: 15%;
    animation: waveMove 25s linear infinite reverse;
}

@keyframes waveMove {
    from { background-position-x: 0; }
    to { background-position-x: 1200px; }
}

.sea-section .map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.6);
    animation: pulse 2s ease-in-out infinite;
    z-index: 0;
}

.sea-section .map-dot-1 { top: 25%; left: 10%; }
.sea-section .map-dot-2 { top: 40%; right: 15%; animation-delay: 0.5s; }
.sea-section .map-dot-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.sea-section .map-dot-4 { bottom: 20%; right: 25%; animation-delay: 1.5s; }

/* ---- ROI SECTION: Chart Lines ---- */
.roi-section .chart-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(201, 169, 98, 0.5) 0%,
        rgba(201, 169, 98, 0.2) 100%);
    z-index: 0;
}

.roi-section .chart-line-1 { width: 200px; top: 20%; left: 3%; }
.roi-section .chart-line-2 { width: 150px; top: 35%; left: 5%; }
.roi-section .chart-line-3 { width: 250px; top: 50%; left: 2%; }

.roi-section .chart-bar {
    position: absolute;
    width: 40px;
    background: linear-gradient(180deg,
        rgba(201, 169, 98, 0.4) 0%,
        rgba(201, 169, 98, 0.15) 100%);
    border-radius: 4px 4px 0 0;
    bottom: 10%;
    z-index: 0;
}

.roi-section .chart-bar-1 { height: 80px; right: 8%; }
.roi-section .chart-bar-2 { height: 120px; right: 13%; }
.roi-section .chart-bar-3 { height: 160px; right: 18%; }
.roi-section .chart-bar-4 { height: 200px; right: 23%; }

.roi-section .arrow-up {
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 80px;
    color: rgba(201, 169, 98, 0.2);
    z-index: 0;
}

/* ---- PERFECT FOR SECTION: Spotlight Effects ---- */
.perfect-for-section .spotlight {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(201, 169, 98, 0.15) 0%,
        transparent 70%);
    z-index: 0;
}

.perfect-for-section .spotlight-1 {
    top: -200px;
    left: 10%;
}

.perfect-for-section .spotlight-2 {
    bottom: -200px;
    right: 10%;
}

.perfect-for-section .hex-outline {
    position: absolute;
    width: 150px;
    height: 130px;
    border: 3px solid rgba(201, 169, 98, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
    animation: floatShape 15s ease-in-out infinite;
}

.perfect-for-section .hex-1 {
    top: 10%;
    right: 5%;
}

.perfect-for-section .hex-2 {
    bottom: 15%;
    left: 3%;
    animation-delay: 5s;
}

/* ---- PRICING SECTION: Sparkle Stars ---- */
.pricing .sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 0;
}

.pricing .sparkle::before,
.pricing .sparkle::after {
    content: '';
    position: absolute;
    background: var(--gradient-gold);
}

.pricing .sparkle::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.pricing .sparkle::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.pricing .sparkle-1 { top: 15%; left: 8%; animation: twinkle 2s ease-in-out infinite; }
.pricing .sparkle-2 { top: 25%; right: 10%; animation: twinkle 2s ease-in-out infinite 0.5s; }
.pricing .sparkle-3 { bottom: 20%; left: 12%; animation: twinkle 2s ease-in-out infinite 1s; }
.pricing .sparkle-4 { bottom: 30%; right: 8%; animation: twinkle 2s ease-in-out infinite 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.pricing .price-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pricing .floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: var(--gradient-gold);
    color: var(--premium-black);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 0;
    animation: floatShape 10s ease-in-out infinite;
}

.pricing .badge-1 {
    top: 20%;
    left: 5%;
    content: 'SAVE 50%';
}

/* ---- FINAL CTA: Centered Burst Effect ---- */
.final-cta .burst-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(201, 169, 98, 0.5) 50%,
        transparent 100%);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    z-index: 0;
}

.final-cta .burst-1 { height: 300px; transform: translate(-50%, -100%) rotate(0deg); }
.final-cta .burst-2 { height: 250px; transform: translate(-50%, -100%) rotate(30deg); }
.final-cta .burst-3 { height: 280px; transform: translate(-50%, -100%) rotate(60deg); }
.final-cta .burst-4 { height: 260px; transform: translate(-50%, -100%) rotate(90deg); }
.final-cta .burst-5 { height: 290px; transform: translate(-50%, -100%) rotate(120deg); }
.final-cta .burst-6 { height: 240px; transform: translate(-50%, -100%) rotate(150deg); }
.final-cta .burst-7 { height: 270px; transform: translate(-50%, -100%) rotate(180deg); }
.final-cta .burst-8 { height: 255px; transform: translate(-50%, -100%) rotate(210deg); }
.final-cta .burst-9 { height: 285px; transform: translate(-50%, -100%) rotate(240deg); }
.final-cta .burst-10 { height: 245px; transform: translate(-50%, -100%) rotate(270deg); }
.final-cta .burst-11 { height: 275px; transform: translate(-50%, -100%) rotate(300deg); }
.final-cta .burst-12 { height: 265px; transform: translate(-50%, -100%) rotate(330deg); }

.final-cta .ring-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 3px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(201, 169, 98, 0.2);
    z-index: 0;
}

.final-cta .ring-glow-2 {
    width: 500px;
    height: 500px;
    border-width: 2px;
    border-color: rgba(201, 169, 98, 0.2);
}

/* Ensure sections with shapes have relative positioning */
.difference-section,
.features-section,
.sea-section,
.roi-section,
.perfect-for-section,
.premium-pricing,
.package-section,
.final-cta {
    position: relative;
}

/* Make sure content is above shapes */
.difference-section .container,
.features-section .container,
.sea-section .container,
.roi-section .container,
.perfect-for-section .container,
.premium-pricing .container,
.package-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.premium-footer {
    background: var(--premium-black);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    padding: 4rem 0 2rem;
}

.premium-footer .logo-icon {
    background: var(--gradient-gold);
    color: var(--premium-black);
}

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

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

.premium-footer .footer-links h4 {
    color: var(--premium-gold);
    font-weight: 700;
}

.premium-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.premium-footer .footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.premium-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3rem;
    padding-top: 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .premium-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-block.feature-right {
        direction: ltr;
    }

    .time-budget-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .budget-card.recommended {
        transform: none;
    }

    .comparison-boxes {
        flex-direction: column;
    }

    .vs-badge {
        align-self: center;
    }

    .roi-comparison {
        flex-direction: column;
    }

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

    .sea-row {
        grid-template-columns: 1fr;
    }

    .sea-row.header {
        display: none;
    }

    .sea-cell {
        padding: 0.875rem 1.25rem;
    }

    .sea-cell.feature {
        font-weight: 700;
        background: var(--cream-dark);
    }
}

@media (max-width: 768px) {
    .premium-hero {
        padding: calc(4rem + 56px) 0 3rem;
    }

    .title-line {
        font-size: 2.25rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .feature-number {
        font-size: 3.5rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

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

    .premium-pricing-grid {
        grid-template-columns: 1fr;
    }

    .premium-card.featured {
        transform: none;
    }

    .premium-card.featured:hover {
        transform: translateY(-10px);
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-premium.btn-xl,
    .btn-outline-premium.btn-xl {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .metric-divider {
        width: 40px;
        height: 1px;
    }

    .package-actions {
        flex-direction: column;
    }

    .section-label {
        font-size: 0.7rem;
    }
}
