/* ============================================
   DECORB - AI Interior Design Landing Page
   Luxury Dark Theme with Gold Accents
   ============================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
    /* Colors - Luxury Dark Theme */
    --bg-primary: #0d0d0d;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1c1c1c;

    /* Gold/Bronze Accents */
    --accent-gold: #c9a962;
    --accent-gold-light: #d4ba7a;
    --accent-gold-dark: #a88b4a;
    --accent-cream: #f5f0e8;
    --accent-warm: #e8d5b5;

    /* Glass colors */
    --glass-bg: rgba(28, 28, 28, 0.8);
    --glass-border: rgba(201, 169, 98, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.4);

    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.3);
    --text-gold: var(--accent-gold);

    /* Spacing */
    --section-padding: 140px;
    --container-max: 1400px;
    --nav-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    cursor: none;
    /* Hide default cursor for custom one */
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(201, 169, 98, 0.3);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: exclusion;
}

.cursor-follower.active {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elegant Serif Typography */
.serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================
   Animated Background - Subtle
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.25) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 139, 74, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: -8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 213, 181, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -16s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.98);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* ============================================
   Glass Card Styling
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 40px var(--glass-shadow);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(201, 169, 98, 0.25);
    transform: translateY(-4px);
}

/* ============================================
   Navigation - Floating Pill
   ============================================ */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    height: 64px;
    width: auto;
    /* Allow width to fit content */
    max-width: 90%;
    transition: all var(--transition-normal);
    border-radius: 50px;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    padding: 0 8px;
    /* Add padding for pill shape containment */
}

.nav-container {
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* Space between logo, links, actions */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.logo:hover {
    color: var(--accent-gold);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.logo-text {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

/* ============================================
   Buttons - Refined
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-large {
    padding: 18px 48px;
    font-size: 0.85rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-block {
    width: 100%;
}

/* Magnetic Button Effect - Subtle version */
.btn-magnetic {
    display: inline-flex;
    /* Prevent layout changes during hover */
    will-change: transform;
}

.magnetic-area {
    display: inline-block;
    padding: 20px;
    margin: -20px;
}

/* Tilt Effect Active State */
.is-tilting {
    transition: transform 0.1s ease-out !important;
    z-index: 10;
}

/* ============================================
   Infinite Marquee
   ============================================ */
.marquee-section {
    padding: 40px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    padding-left: 60px;
    /* Initial offset */
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-tertiary);
    font-style: italic;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.marquee-item:hover {
    opacity: 1;
    color: var(--accent-gold);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ============================================
   Hero Section - Magazine Style
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 80px) 40px 100px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--accent-gold);
}

.badge-icon {
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 300;
}

.gradient-text {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 480px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

/* ============================================
   Hero Visual - Single Showcase
   ============================================ */
.hero-visual {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    padding: 20px;
    margin: -20px;
}

/* Style Switcher Pills */
.style-switcher {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease-out 0.4s backwards;
}

.style-pill {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: capitalize;
}

.style-pill:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.style-pill.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Hero Showcase Container */
.hero-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-showcase .showcase-image {
    border-radius: var(--radius-lg);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-showcase:hover .showcase-image {
    transform: scale(1.02);
}

/* Interactive Hotspot Dots */
.hotspot-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    animation: fadeIn 0.6s ease-out backwards;
    /* Center the hotspot on its specified coordinates */
    transform: translate(-50%, -50%);
}

.hotspot-dot::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.7);
    animation: dotPulse 2s infinite;
    transition: all var(--transition-normal);
}

.hotspot-dot:hover::before {
    background: var(--accent-gold-light);
    /* Don't use transform here as it's already on parent */
}

.dot-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 169, 98, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 98, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Floating Item Cards */
.floating-items {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: 20;
}

.item-card {
    position: absolute;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    pointer-events: auto;
    cursor: pointer;
    width: 200px;
}

.item-card[data-for="sofa"] {
    top: 20%;
    left: -10px;
    animation: floatIn 0.6s ease-out 0.8s forwards;
}

.item-card[data-for="pendant"] {
    top: 8%;
    right: 15%;
    animation: floatIn 0.6s ease-out 1s forwards;
}

.item-card[data-for="table"] {
    bottom: 25%;
    right: -10px;
    animation: floatIn 0.6s ease-out 1.2s forwards;
}

.item-card[data-for="plant"] {
    bottom: 15%;
    left: 10%;
    animation: floatIn 0.6s ease-out 1.4s forwards;
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.item-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    min-width: 0;
}

.item-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}

.item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
}

.item-category {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.item-price-chip {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.15);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Showcase Label */
.showcase-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 25;
}

.label-badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    background: rgba(28, 28, 28, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.label-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Legacy hero image styles - kept for backwards compatibility */
.hero-image {
    display: none;
}

.hero-image-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* Legacy hero card - hidden */
.hero-card {
    display: none;
}

/* ============================================
   Sections - Common Styles
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 0;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--accent-gold);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-title .gold {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   Features Section - Bento Grid
   ============================================ */
.features {
    padding: var(--section-padding) 0;
}

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

.feature-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.feature-card.gold-bg {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.feature-card.gold-bg .feature-title,
.feature-card.gold-bg .feature-desc {
    color: var(--bg-primary);
}

.feature-card.gold-bg .feature-icon {
    background: rgba(0, 0, 0, 0.1);
    color: var(--bg-primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-gold);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-gold), transparent);
    opacity: 0.3;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 24px;
}

.step-content {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
}

.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-gold);
    margin-bottom: 16px;
    transition: all var(--transition-normal);
}

.step:hover .step-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.step-connector {
    display: none;
}

/* ============================================
   Refined Hero Structure & Prompt Bar
   ============================================ */
.hero-prompt-container {
    width: 100%;
    margin-bottom: 40px;
}

.prompt-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    backdrop-filter: blur(10px);
    transition: border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.prompt-bar:focus-within {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 98, 0.1);
}

/* Ensure generate button in prompt bar stays inline */
.prompt-bar .btn {
    flex-shrink: 0;
    border-radius: 50px;
    padding: 12px 24px;
}

.prompt-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    animation: floatImage 3s ease-in-out infinite;
}

.prompt-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    outline: none;
}

.prompt-input::placeholder {
    color: var(--text-muted);
}

.prompt-input:focus {
    /* Focus handled by container */
}

/* Suggestions */
.prompt-suggestions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 6px 16px;
    color: var(--text-tertiary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.suggestion-tag:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ============================================
   Interactive Room Details Section (Hotspots)
   ============================================ */
.room-details-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.room-details-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.room-hotspot-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hotspot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-hotspot-wrapper:hover .hotspot-image {
    transform: scale(1.02);
}

/* Legacy hotspot styles removed - now using new showcase hotspot implementation */

/* Responsive adjustments */
@media (max-width: 900px) {
    .room-details-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Showcase Section - Projects Grid
   ============================================ */
.showcase {
    padding: var(--section-padding) 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.showcase-item {
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.showcase-slider {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: ew-resize;
}

.showcase-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-item:hover .showcase-slider img {
    transform: scale(1.03);
}

.showcase-slider .after-img {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    z-index: 10;
    transition: left 0.1s ease-out;
}

.handle-line {
    flex: 1;
    width: 1px;
    background: var(--accent-gold);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.showcase-label {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-style {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.label-room {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   Services Section - New Bento Style
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.services-header .section-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-gold);
}

.service-card.gold {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.service-card.gold .service-title,
.service-card.gold .service-desc {
    color: var(--bg-primary);
}

.service-card.image {
    padding: 0;
}

.service-card.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card.image:hover img {
    transform: scale(1.05);
}

.service-card.large {
    grid-column: span 2;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-gold);
    margin-bottom: auto;
}

.service-card.gold .service-icon {
    background: rgba(0, 0, 0, 0.1);
    color: var(--bg-primary);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.05em;
}

.toggle-label.active {
    color: var(--text-primary);
}

.save-badge {
    padding: 4px 10px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

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

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.08) 0%, var(--bg-card) 100%);
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 40px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.period {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

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

.testimonial-stars {
    font-size: 1rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 500;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-actions {
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 139, 74, 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

/* ============================================
   Footer - Premium Design
   ============================================ */
.footer {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Decorative Gradient Divider */
.footer-divider {
    position: relative;
    height: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 169, 98, 0.3) 20%,
            var(--accent-gold) 50%,
            rgba(201, 169, 98, 0.3) 80%,
            transparent 100%);
}

.divider-glow {
    position: absolute;
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.4) 0%, transparent 70%);
    filter: blur(15px);
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.5);
    }
}

.divider-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.divider-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.divider-particle:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.divider-particle:nth-child(2) {
    left: 50%;
    animation-delay: 1.3s;
}

.divider-particle:nth-child(3) {
    left: 70%;
    animation-delay: 2.6s;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translateY(-15px) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateY(-25px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-35px) scale(0.5);
    }
}

/* Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.footer-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: footerOrbFloat 15s ease-in-out infinite;
}

.footer-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 139, 74, 0.06) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation: footerOrbFloat 18s ease-in-out infinite reverse;
}

@keyframes footerOrbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.footer-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Footer Container */
.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 1;
}

/* Centered Brand Section for Minimal Footer */
.footer-brand-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.footer-brand-centered .footer-tagline {
    max-width: 400px;
    margin-bottom: 28px;
    text-align: center;
}

.footer-brand-centered .footer-social {
    justify-content: center;
}

/* Footer Main Grid (for multi-column layouts, kept for backwards compatibility) */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-icon {
    position: relative;
    font-size: 1.75rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon .logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.footer-tagline {
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.footer-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-link svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.footer-social-link:hover {
    border-color: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 98, 0.2);
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

/* Links Section */
.footer-links-section {
    padding-top: 8px;
}

.footer-column-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-accent {
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, rgba(201, 169, 98, 0.3) 100%);
    border-radius: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link .link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
    color: var(--accent-gold);
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.footer-newsletter {
    padding-top: 8px;
    max-width: 320px;
}

.newsletter-desc {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-signup-form {
    margin-bottom: 16px;
}

.footer-input-wrapper {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 6px;
    transition: all var(--transition-normal);
}

.footer-input-wrapper:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
}

.footer-email-input::placeholder {
    color: var(--text-muted);
}

.footer-email-input:focus {
    outline: none;
}

.footer-submit-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border: none;
    border-radius: calc(var(--radius-sm) - 4px);
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.footer-submit-btn:hover {
    background: var(--accent-gold-light);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.footer-submit-btn:active {
    transform: scale(0.98);
}

.newsletter-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.newsletter-note svg {
    color: var(--text-tertiary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    gap: 24px;
    flex-wrap: wrap;
}

/* Minimal Footer Bottom - Centered */
.footer-bottom-minimal {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom-minimal .copyright {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.copyright-separator {
    color: var(--text-muted);
    opacity: 0.4;
    margin: 0 4px;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-center {
    flex: 0 0 auto;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright-symbol {
    color: var(--accent-gold);
}

.copyright-year {
    font-weight: 500;
    color: var(--text-tertiary);
}

.footer-made-with {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.heart-icon {
    color: #ef4444;
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.legal-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-gold);
}

.legal-link:hover::after {
    width: 100%;
}

.legal-divider {
    color: var(--text-muted);
    opacity: 0.3;
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-up.delay-1 {
    animation-delay: 0.15s;
}

.animate-fade-in-up.delay-2 {
    animation-delay: 0.3s;
}

.animate-fade-in-up.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Coming Soon - Navigation Social Links
   ============================================ */
.nav-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-link-nav:hover {
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   Coming Soon - Hero Email Signup
   ============================================ */
.hero-signup {
    margin-bottom: 60px;
}

.signup-form {
    margin-bottom: 16px;
}

.input-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.signup-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.signup-input::placeholder {
    color: var(--text-tertiary);
}

.signup-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.signup-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

/* Hero Badge Animation */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--accent-gold);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.7);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(201, 169, 98, 0);
    }
}

/* ============================================
   Coming Soon - Feature Card Enhancements
   ============================================ */
.feature-card {
    position: relative;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-coming-soon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   Coming Soon - 360° USP Section
   ============================================ */
.usp-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.usp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.usp-text {
    max-width: 560px;
}

.usp-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.usp-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.usp-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.usp-feature-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* 360 Sphere Visual Mockup */
.usp-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-mockup:hover {
    transform: scale(1.02);
}

/* Outer Aura Glow */
.sphere-aura {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(201, 169, 98, 0.15) 0%,
            rgba(201, 169, 98, 0.08) 30%,
            rgba(201, 169, 98, 0.02) 50%,
            transparent 70%);
    filter: blur(30px);
    animation: auraBreath 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes auraBreath {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Energy Waves */
.sphere-energy-waves {
    position: absolute;
    width: 320px;
    height: 320px;
    z-index: 1;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.3);
    animation: energyPulse 3s ease-out infinite;
}

.energy-wave.wave-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.energy-wave.wave-2 {
    width: 100%;
    height: 100%;
    animation-delay: 1s;
}

.energy-wave.wave-3 {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

@keyframes energyPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
        border-color: rgba(201, 169, 98, 0.5);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-color: rgba(201, 169, 98, 0);
    }
}

.sphere-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    z-index: 2;
}

/* Orbital Rings */
.sphere-ring {
    position: absolute;
    border: 1.5px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.4), rgba(201, 169, 98, 0.1)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.sphere-ring.ring-1 {
    width: 100%;
    height: 100%;
    animation: sphereOrbit1 14s linear infinite;
    border-width: 2px;
}

.sphere-ring.ring-2 {
    width: 85%;
    height: 85%;
    border-style: dashed;
    animation: sphereOrbit2 18s linear infinite reverse;
    opacity: 0.7;
}

.sphere-ring.ring-3 {
    width: 70%;
    height: 70%;
    animation: sphereOrbit3 22s linear infinite;
    opacity: 0.5;
}

.sphere-ring.ring-4 {
    width: 55%;
    height: 55%;
    border-style: dotted;
    animation: sphereOrbit2 26s linear infinite;
    opacity: 0.4;
}

@keyframes sphereOrbit1 {
    from {
        transform: rotateX(70deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

@keyframes sphereOrbit2 {
    from {
        transform: rotateX(55deg) rotateY(20deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(55deg) rotateY(20deg) rotateZ(360deg);
    }
}

@keyframes sphereOrbit3 {
    from {
        transform: rotateX(30deg) rotateY(-30deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(30deg) rotateY(-30deg) rotateZ(360deg);
    }
}

/* Floating Particles */
.sphere-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: particleField 30s linear infinite;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.8), 0 0 20px rgba(201, 169, 98, 0.4);
}

.particle.p1 {
    top: 10%;
    left: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle.p2 {
    top: 30%;
    left: 15%;
    animation: particleFloat 7s ease-in-out infinite 0.5s;
}

.particle.p3 {
    top: 50%;
    left: 5%;
    animation: particleFloat 5s ease-in-out infinite 1s;
}

.particle.p4 {
    top: 70%;
    left: 20%;
    animation: particleFloat 8s ease-in-out infinite 1.5s;
}

.particle.p5 {
    top: 90%;
    left: 50%;
    animation: particleFloat 6s ease-in-out infinite 2s;
}

.particle.p6 {
    top: 70%;
    left: 85%;
    animation: particleFloat 7s ease-in-out infinite 2.5s;
}

.particle.p7 {
    top: 50%;
    left: 95%;
    animation: particleFloat 5s ease-in-out infinite 3s;
}

.particle.p8 {
    top: 25%;
    left: 80%;
    animation: particleFloat 8s ease-in-out infinite 3.5s;
}

@keyframes particleField {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-8px) scale(1.2);
        opacity: 1;
    }
}

/* Sphere Core */
.sphere-core {
    position: relative;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%,
            rgba(201, 169, 98, 0.12) 0%,
            rgba(201, 169, 98, 0.05) 30%,
            rgba(13, 13, 13, 0.95) 70%);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(201, 169, 98, 0.15),
        0 0 120px rgba(201, 169, 98, 0.08),
        inset 0 0 40px rgba(201, 169, 98, 0.12),
        inset 0 0 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3;
    animation: coreGlow 4s ease-in-out infinite;
    overflow: hidden;
}

@keyframes coreGlow {

    0%,
    100% {
        box-shadow:
            0 0 60px rgba(201, 169, 98, 0.15),
            0 0 120px rgba(201, 169, 98, 0.08),
            inset 0 0 40px rgba(201, 169, 98, 0.12),
            inset 0 0 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(201, 169, 98, 0.25);
    }

    50% {
        box-shadow:
            0 0 80px rgba(201, 169, 98, 0.25),
            0 0 150px rgba(201, 169, 98, 0.15),
            inset 0 0 50px rgba(201, 169, 98, 0.2),
            inset 0 0 100px rgba(0, 0, 0, 0.4);
        border-color: rgba(201, 169, 98, 0.4);
    }
}

/* Sphere Wireframe Layers */
.sphere-wireframe {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
    fill: none;
    filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.5));
    will-change: transform;
}

.sphere-wireframe.outer {
    width: 110%;
    height: 110%;
    opacity: 0.5;
    animation: wireframeSpin1 35s linear infinite;
}

.sphere-wireframe.inner {
    width: 95%;
    height: 95%;
    opacity: 0.85;
    animation: wireframeSpin2 25s linear infinite reverse;
    filter: drop-shadow(0 0 10px rgba(201, 169, 98, 0.6));
}

@keyframes wireframeSpin1 {
    0% {
        transform: rotate3d(0.5, 1, 0.2, 0deg);
    }

    100% {
        transform: rotate3d(0.5, 1, 0.2, 360deg);
    }
}

@keyframes wireframeSpin2 {
    0% {
        transform: rotate3d(0.3, 1, 0.5, 0deg) rotateX(10deg);
    }

    25% {
        transform: rotate3d(0.3, 1, 0.5, 90deg) rotateX(-5deg);
    }

    50% {
        transform: rotate3d(0.3, 1, 0.5, 180deg) rotateX(10deg);
    }

    75% {
        transform: rotate3d(0.3, 1, 0.5, 270deg) rotateX(-5deg);
    }

    100% {
        transform: rotate3d(0.3, 1, 0.5, 360deg) rotateX(10deg);
    }
}

/* Center Glow Point */
.sphere-center-glow {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(201, 169, 98, 0.8) 30%,
            rgba(201, 169, 98, 0.3) 60%,
            transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.8), 0 0 60px rgba(201, 169, 98, 0.5);
    animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Label Container */
.sphere-label-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.sphere-label-container:hover {
    background: rgba(201, 169, 98, 0.12);
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
}

.sphere-label-icon {
    color: var(--accent-gold);
    opacity: 0.8;
}

.sphere-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* ============================================
   Coming Soon - Target Audience Section
   ============================================ */
.audience-section {
    padding: var(--section-padding) 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.audience-card {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.audience-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-gold);
    margin-bottom: 32px;
}

.audience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.audience-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.audience-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.audience-benefits li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================
   Coming Soon - CTA Signup Form
   ============================================ */
.cta-signup-form {
    margin-bottom: 24px;
    width: 100%;
    max-width: 700px;
}

.cta-input-group {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
}

.cta-signup-input {
    flex: 1;
    min-width: 200px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.cta-signup-input::placeholder {
    color: var(--text-tertiary);
}

.cta-signup-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

/* Mobile Social Links in Menu */
.mobile-social-links {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.mobile-social-links .social-link {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

.mobile-social-links .social-link:hover {
    color: var(--accent-gold);
}

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

    .feature-card.featured {
        grid-column: span 2;
    }

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

    .steps-container::before {
        display: none;
    }

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --nav-height: 70px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .section-container {
        padding: 0 24px;
    }

    .hero {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

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

    .feature-card.featured {
        grid-column: span 1;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .service-card.large {
        grid-column: span 1;
    }

    .services-header .section-title {
        font-size: 4rem;
    }

    .cta-card {
        padding: 60px 32px;
    }

    .footer-container {
        padding: 48px 24px 32px;
    }

    .footer-brand-centered {
        margin-bottom: 32px;
    }

    .footer-brand-centered .footer-tagline {
        max-width: 100%;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-minimal .copyright {
        line-height: 1.8;
    }

    .divider-particles {
        display: none;
    }
}

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

    .hero-visual {
        max-width: 100%;
    }

    .style-switcher {
        justify-content: center;
    }

    .style-pill {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .item-card {
        min-width: 160px;
        padding: 10px;
    }

    .item-card[data-for="sofa"],
    .item-card[data-for="table"] {
        left: 50%;
        transform: translateX(-50%);
    }

    .item-card[data-for="pendant"],
    .item-card[data-for="plant"] {
        right: 50%;
        transform: translateX(50%);
    }

    .item-thumb {
        width: 50px;
        height: 50px;
    }

    .item-info h4 {
        font-size: 0.8rem;
    }

    .item-price {
        font-size: 0.85rem;
    }

    .hotspot-dot {
        width: 32px;
        height: 32px;
    }

    .hotspot-dot::before {
        width: 12px;
        height: 12px;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 16px;
    }

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

/* Additional responsive fixes for new showcase */
@media (max-width: 768px) {
    .hero-visual {
        max-width: 100%;
    }

    .style-switcher {
        gap: 8px;
    }

    .style-pill {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }

    .item-card {
        position: relative;
        animation: none !important;
        opacity: 0;
        pointer-events: none;
    }

    .showcase-label {
        bottom: 16px;
        left: 16px;
    }

    .label-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .item-card {
        font-size: 0.85rem;
    }

    .floating-items {
        display: none;
        /* Hide floating cards on tablet for cleaner view */
    }
}

/* Coming Soon Responsive Styles */
@media (max-width: 968px) {
    .usp-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .usp-visual {
        order: -1;
    }

    .sphere-container {
        width: 250px;
        height: 250px;
    }

    .sphere-core {
        width: 120px;
        height: 120px;
    }

    .sphere-aura {
        width: 320px;
        height: 320px;
    }

    .sphere-energy-waves {
        width: 260px;
        height: 260px;
    }

    .particle {
        width: 3px;
        height: 3px;
    }

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

    .audience-card {
        padding: 36px;
    }

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

    .feature-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }

    .signup-input,
    .cta-signup-input {
        min-width: 100%;
    }

    .cta-input-group {
        flex-direction: column;
    }

    .cta-input-group .btn {
        width: 100%;
    }

    .nav-social {
        display: none;
    }

    .hero-signup .btn {
        width: 100%;
    }

    .sphere-container {
        width: 200px;
        height: 200px;
    }

    .sphere-core {
        width: 100px;
        height: 100px;
    }

    .sphere-aura {
        width: 280px;
        height: 280px;
    }

    .sphere-energy-waves {
        width: 220px;
        height: 220px;
    }

    .particle {
        width: 2px;
        height: 2px;
    }

    .sphere-center-glow {
        width: 14px;
        height: 14px;
    }

    .sphere-label-container {
        padding: 10px 18px;
        gap: 8px;
    }

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

    .sphere-label-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .audience-card {
        padding: 28px;
    }

    .audience-icon {
        width: 60px;
        height: 60px;
    }

    .audience-title {
        font-size: 1.5rem;
    }

    .feature-badge,
    .feature-coming-soon {
        font-size: 0.55rem;
        padding: 4px 8px;
    }
}