/* Nova Lobster - Premium Styles */
:root {
    --primary: #FF6B35;
    --secondary: #E63946;
    --accent-yellow: #FFD166;
    --accent-teal: #06D6A0;
    --accent-blue: #118AB2;
    --bg-dark: #1A1A2E;
    --bg-light: #FFF8F0;
    --text-dark: #16213E;
    --text-light: #FFFEF9;
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    --font-accent: 'Bangers', cursive;
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 248, 240, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

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

.logo-lobster {
    font-size: 2.5rem;
    animation: wobble 3s ease-in-out infinite;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFE8D6 50%, #FFDAB9 100%);
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%23FF6B35' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
    background-size: 600px 100%;
    animation: wave 15s linear infinite;
}

.wave1 { bottom: 0; opacity: 0.3; animation-delay: 0s; }
.wave2 { bottom: 20px; opacity: 0.2; animation-delay: -5s; animation-duration: 20s; }
.wave3 { bottom: 40px; opacity: 0.1; animation-delay: -10s; animation-duration: 25s; }

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(6, 214, 160, 0.3));
    border-radius: 50%;
    animation: rise 8s ease-in infinite;
    opacity: 0.6;
}

.bubble:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 25px; height: 25px; animation-delay: 1s; }
.bubble:nth-child(3) { left: 45%; width: 10px; height: 10px; animation-delay: 2s; }
.bubble:nth-child(4) { left: 60%; width: 20px; height: 20px; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 75%; width: 18px; height: 18px; animation-delay: 1.5s; }
.bubble:nth-child(6) { left: 85%; width: 12px; height: 12px; animation-delay: 2.5s; }
.bubble:nth-child(7) { left: 95%; width: 22px; height: 22px; animation-delay: 0.8s; }

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.title-line.accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.cta-button .cta-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Hero Lobster Mascot */
.hero-lobster {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

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

.lobster-mascot {
    position: relative;
    width: 280px;
    height: 280px;
    animation: float 4s ease-in-out infinite;
}

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

.lobster-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.lobster-tail {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tail-segment {
    width: 60px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: tailWag 1s ease-in-out infinite;
}

.tail-segment:nth-child(1) { width: 70px; animation-delay: 0s; }
.tail-segment:nth-child(2) { width: 60px; animation-delay: 0.1s; }
.tail-segment:nth-child(3) { width: 50px; animation-delay: 0.2s; }

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

.lobster-main-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 140px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50% 50% 45% 45%;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.2);
}

.lobster-shell {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
}

.lobster-eye-left,
.lobster-eye-right {
    position: absolute;
    top: 35px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lobster-eye-left { left: 30px; }
.lobster-eye-right { right: 30px; }

.eye-ball {
    width: 25px;
    height: 25px;
    background: var(--text-dark);
    border-radius: 50%;
    position: relative;
}

.eye-pupil {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: lookAround 4s ease-in-out infinite;
}

@keyframes lookAround {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, 0); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(-3px, 0); }
}

.lobster-mouth {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 50% 50%;
}

.lobster-antenna-left,
.lobster-antenna-right {
    position: absolute;
    top: 10px;
    width: 4px;
    height: 40px;
    background: var(--secondary);
    border-radius: 2px;
}

.lobster-antenna-left {
    left: 50px;
    transform: rotate(-20deg);
    animation: antennaWag 2s ease-in-out infinite;
}

.lobster-antenna-right {
    right: 50px;
    transform: rotate(20deg);
    animation: antennaWag 2s ease-in-out infinite 0.5s;
}

@keyframes antennaWag {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-30deg); }
}

.lobster-claw-left,
.lobster-claw-right {
    position: absolute;
    top: 80px;
    width: 50px;
    height: 60px;
}

.lobster-claw-left {
    left: 20px;
    animation: clawWave 2s ease-in-out infinite;
}

.lobster-claw-right {
    right: 20px;
    animation: clawWave 2s ease-in-out infinite 0.3s;
}

@keyframes clawWave {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.claw-upper,
.claw-lower {
    position: absolute;
    width: 50px;
    height: 35px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 25px 25px 0 0;
}

.claw-lower {
    top: 30px;
    height: 30px;
    border-radius: 0 0 25px 25px;
}

.lobster-legs-left,
.lobster-legs-right {
    position: absolute;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lobster-legs-left { left: 70px; }
.lobster-legs-right { right: 70px; }

.leg {
    width: 8px;
    height: 25px;
    background: var(--secondary);
    border-radius: 4px;
}

.lobster-hat {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.party-hat {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid var(--accent-yellow);
    position: relative;
}

.party-hat::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--accent-teal);
    border-radius: 50%;
}

.party-hat::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
}

.lobster-blush {
    position: absolute;
    top: 60px;
    width: 25px;
    height: 15px;
    background: rgba(255, 100, 100, 0.4);
    border-radius: 50%;
}

.blush-left { left: 25px; }
.blush-right { right: 25px; }

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.section-header.light .section-title {
    color: var(--text-light);
}

.section-header.light .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Characters Section */
.characters {
    background: var(--bg-light);
    position: relative;
}

.characters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-light), transparent);
}

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

.character-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.character-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), var(--shadow-glow);
}

.character-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

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

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: white;
    background: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.card-badge.popular {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.character-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Mini Lobsters */
.lobster-mini {
    position: relative;
    width: 120px;
    height: 120px;
}

.lobster-mini.large {
    width: 200px;
    height: 200px;
}

.mini-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.mini-tail {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 15px;
}

.large .mini-tail {
    width: 70px;
    height: 40px;
}

.mini-shell {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 40px 40px 30px 30px;
}

.large .mini-shell {
    width: 130px;
    height: 100px;
}

.mini-eyes {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
}

.large .mini-eyes {
    gap: 40px;
}

.mini-eye {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.large .mini-eye {
    width: 30px;
    height: 30px;
}

.mini-pupil {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    background: var(--text-dark);
    border-radius: 50%;
}

.large .mini-pupil {
    width: 10px;
    height: 10px;
}

.mini-smile {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.large .mini-smile {
    width: 35px;
    height: 18px;
    border-width: 4px;
}

.mini-claws {
    position: absolute;
    top: 40%;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mini-claw {
    width: 25px;
    height: 30px;
    background: var(--primary);
    border-radius: 15px 15px 5px 5px;
}

.large .mini-claw {
    width: 40px;
    height: 50px;
}

/* Character specific styles */
.lobster-mini.sandy .mini-accessory.apron {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 35px;
    background: #FF69B4;
    border-radius: 5px;
}

.lobster-mini.pixel .mini-accessory.hoodie {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 40px;
    background: #4A90D9;
    border-radius: 30px 30px 0 0;
}

.lobster-mini.kube .mini-accessory.hardhat {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: #FFA500;
    border-radius: 5px 5px 0 0;
}

.character-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.character-tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.character-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.character-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.add-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.add-cart-btn svg {
    width: 20px;
    height: 20px;
}

/* Plans Section */
.plans {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2D2D4A 100%);
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(6, 214, 160, 0.1), transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

.toggle-switch {
    width: 70px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.toggle-switch:hover {
    border-color: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.toggle-switch.yearly .toggle-slider {
    left: calc(100% - 28px);
}

.save-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent-teal);
    background: rgba(6, 214, 160, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(230, 57, 70, 0.2));
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.plan-price .price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.plan-price .price-period {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.6;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled svg {
    color: var(--secondary);
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.plan-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
}

.plan-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Customize Section */
.customize {
    background: var(--bg-light);
    position: relative;
}

.customize-workspace {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.customize-preview {
    background: linear-gradient(135deg, #FFE8D6, #FFDAB9);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-card);
}

.preview-lobster {
    margin-bottom: 1.5rem;
}

.preview-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.custom-shell {
    transition: background 0.3s ease;
}

.custom-hat,
.custom-accessory {
    position: absolute;
    transition: all 0.3s ease;
}

.custom-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.option-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px white, 0 0 0 5px var(--primary);
}

.accessory-options,
.hat-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.accessory-btn,
.hat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.accessory-btn:hover,
.hat-btn:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.accessory-btn.active,
.hat-btn.active {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.accessory-icon,
.hat-icon {
    font-size: 1.75rem;
}

.accessory-label,
.hat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-light) 0%, #FFE8D6 100%);
    position: relative;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
    opacity: 0.4;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2316213E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

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

.form-error {
    font-size: 0.85rem;
    color: var(--secondary);
    min-height: 1.25rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--secondary);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-brand .logo-lobster {
    font-size: 3rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-tagline {
    opacity: 0.6;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-col a {
    display: block;
    padding: 0.4rem 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

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

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-lobster {
        order: -1;
    }

    .lobster-mascot {
        width: 220px;
        height: 220px;
    }

    .characters-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .customize-workspace {
        grid-template-columns: 1fr;
    }

    .customize-preview {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

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

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

    .billing-toggle {
        flex-direction: column;
        gap: 1rem;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

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

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section-container {
        padding: 4rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}
