*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #f59e0b;
    --accent: #ec4899;
    --bg-dark: #0f0f1a;
    --bg-section: #1a1a2e;
    --bg-card: #16213e;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    --gradient-2: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
    --gradient-3: linear-gradient(135deg, #06b6d4, #6366f1);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

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

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

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

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

.nav-links a:hover {
    color: #fff;
}

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

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gradient-1);
    border-radius: 100px;
    color: #fff !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 0.65rem;
    color: #22c55e;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.ssl-icon {
    font-size: 0.8rem;
}

.cart-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    padding: 4px;
    transition: color 0.3s ease;
}

.cart-btn:hover {
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.cart-count.show {
    display: flex;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.6) 50%, rgba(15,15,26,0.4) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    animation: fadeInUp 0.6s ease 0.5s both;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-trust-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.05));
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

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

.pricing-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 8px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.check {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.checkout-security {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 8px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.security-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-badge div strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.security-badge div span {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.form-secure {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Footer Trust Bar */
.footer-trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    margin-bottom: 40px;
    background: var(--bg-section);
}

.footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    white-space: nowrap;
}

.trust-pill.visa-badge { color: #1a1f71; background: rgba(26,31,113,0.1); border-color: rgba(26,31,113,0.2); }
.trust-pill.mc-badge { color: #eb001b; background: rgba(235,0,27,0.06); border-color: rgba(235,0,27,0.12); }
.trust-pill.pp-badge { color: #003087; background: rgba(0,48,135,0.1); border-color: rgba(0,48,135,0.2); }
.trust-pill.amex-badge { color: #2e77bc; background: rgba(46,119,188,0.1); border-color: rgba(46,119,188,0.2); }

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

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

.cookie-text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--gradient-1);
    color: #fff;
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-btn-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    animation: robot-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
}

@keyframes robot-pop-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.8); }
    60% { transform: translateY(-6px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

.toggle-robot {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    animation: robot-float 3s ease-in-out infinite;
}

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

.toggle-eye {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 9px;
    animation: blink 3s ease-in-out infinite;
}

.toggle-eye.left { left: 7px; }
.toggle-eye.right { right: 7px; }

.toggle-mouth {
    width: 10px;
    height: 3px;
    background: rgba(255,255,255,0.6);
    border-radius: 0 0 3px 3px;
    position: absolute;
    bottom: 8px;
}

.toggle-antenna {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.toggle-antenna::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    animation: antenna-glow 2s ease-in-out infinite;
}

@keyframes antenna-glow {
    0%, 100% { box-shadow: 0 0 4px rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 20px rgba(99,102,241,0.4); }
}

.toggle-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: chat-pulse 2s ease-in-out infinite;
}

@keyframes chat-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* Greeting bubble */
.chatbot-greeting {
    display: none;
    position: absolute;
    bottom: 78px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    font-size: 0.85rem;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: greeting-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.chatbot-greeting.show {
    display: flex;
}

.chatbot-greeting::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-card);
}

.chatbot-greeting .greeting-wave {
    font-size: 1.2rem;
    animation: wave-hand 1s ease-in-out infinite;
}

@keyframes wave-hand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
}

@keyframes greeting-pop {
    from { opacity: 0; transform: translateY(10px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Notification badge */
.chatbot-badge {
    display: none;
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: badge-bounce 1s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.chatbot-badge.show {
    display: flex;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chatbot-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    max-height: 520px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: chat-slide 0.3s ease;
}

.chatbot.open .chatbot-window {
    display: flex;
}

@keyframes chat-slide {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gradient-1);
}

.chatbot-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-face {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-face::after {
    content: '';
    width: 14px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4, #6366f1, #a855f7);
    border-radius: 3px;
    position: absolute;
    bottom: 5px;
    opacity: 0.6;
}

.robot-eye {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 6px;
    animation: blink 3s ease-in-out infinite;
}

.robot-eye.left { left: 5px; }
.robot-eye.right { right: 5px; }

.robot-eye.left { left: 5px; }
.robot-eye.right { right: 5px; }

@keyframes blink {
    0%, 95%, 100% { transform: scaleY(1); }
    97% { transform: scaleY(0.1); }
}

.robot-mouth {
    width: 8px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: rgba(255,255,255,0.5);
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes talk {
    0%, 100% { height: 3px; border-radius: 0 0 4px 4px; }
    50% { height: 8px; border-radius: 4px; }
}

.chatbot-speaker {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.3s;
    margin-right: auto;
}

.chatbot-speaker:hover {
    color: #fff;
}

.chatbot-header-info strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.chatbot-header-info span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.chatbot-close:hover {
    color: #fff;
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.message {
    display: flex;
    max-width: 85%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
}

.message-content {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.message.bot .message-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.message.user .message-content {
    background: var(--gradient-1);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-input input:focus {
    border-color: var(--primary);
}

.chatbot-input button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

.chatbot-options {
    padding: 8px 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chatbot-option {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.chatbot-option:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        right: -60px;
        max-height: 460px;
    }
    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.feature-item {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Work */
.work {
    padding: 100px 0;
}

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

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.work-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.work-placeholder span {
    font-size: 4rem;
    opacity: 0.6;
}

.work-live {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow);
}

.featured-testimonial {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(99, 102, 241, 0.05));
}

.testimonial-client-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.05);
}

.featured-testimonial .testimonial-client-img {
    background: rgba(245, 158, 11, 0.15);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.testimonial-link {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 6px;
    font-weight: 500;
}

.testimonial-link:hover {
    text-decoration: underline;
}

.work-info {
    padding: 24px;
}

.work-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.work-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.work-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

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

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

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    padding-bottom: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-sm {
    max-width: 460px;
}

.modal h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.checkout-sub {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.cart-items {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty span {
    color: #fff;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.15);
}

.cart-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 24px 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.cart-total-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

/* Cart notification */
.cart-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification .check {
    font-size: 1.1rem;
}

/* Forge Robot Character */
.forge-character {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 140px;
    height: 200px;
    z-index: 2;
    animation: forge-enter 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes forge-enter {
    from { opacity: 0; transform: translateX(60px) scale(0.7); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.forge-head {
    position: relative;
    width: 70px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a2a4a, #1a1a3a);
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 16px 16px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.forge-antenna {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background: linear-gradient(to top, #6366f1, transparent);
    border-radius: 2px;
}

.forge-antenna::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 0 10px #6366f1, 0 0 20px rgba(99, 102, 241, 0.4);
    animation: antenna-pulse 2s ease-in-out infinite;
}

@keyframes antenna-pulse {
    0%, 100% { box-shadow: 0 0 10px #6366f1, 0 0 20px rgba(99,102,241,0.4); }
    50% { box-shadow: 0 0 20px #6366f1, 0 0 40px rgba(99,102,241,0.6), 0 0 60px rgba(99,102,241,0.3); }
}

.forge-visor {
    width: 50px;
    height: 20px;
    background: linear-gradient(90deg, #06b6d4, #6366f1, #a855f7);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    animation: visor-scan 3s ease-in-out infinite;
}

@keyframes visor-scan {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.forge-visor::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: visor-glint 3s ease-in-out infinite;
}

@keyframes visor-glint {
    0%, 100% { left: -100%; }
    50% { left: 200%; }
}

.forge-ear {
    position: absolute;
    width: 8px;
    height: 18px;
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.forge-ear.left { left: -6px; }
.forge-ear.right { right: -6px; }

.forge-neck {
    width: 16px;
    height: 10px;
    margin: -2px auto 0;
    background: linear-gradient(to bottom, #2a2a4a, #1a1a3a);
    border-radius: 0 0 6px 6px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-top: none;
}

.forge-body {
    position: relative;
    width: 80px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a2a4a, #1a1a3a);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forge-chest {
    width: 50px;
    height: 40px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.chest-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.chest-light:nth-child(1) {
    background: #06b6d4;
    box-shadow: 0 0 6px #06b6d4;
    animation: chest-pulse 2s ease-in-out infinite;
}

.chest-light:nth-child(2) {
    background: #6366f1;
    box-shadow: 0 0 6px #6366f1;
    animation: chest-pulse 2s ease-in-out 0.3s infinite;
}

.chest-light:nth-child(3) {
    background: #a855f7;
    box-shadow: 0 0 6px #a855f7;
    animation: chest-pulse 2s ease-in-out 0.6s infinite;
}

@keyframes chest-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.forge-arm {
    position: absolute;
    width: 14px;
    height: 40px;
    background: linear-gradient(to bottom, #2a2a4a, #1a1a3a);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    top: 8px;
    transform-origin: top center;
}

.forge-arm.left {
    left: -10px;
    animation: arm-swing-left 3s ease-in-out infinite;
}

.forge-arm.right {
    right: -10px;
    animation: arm-swing-right 3s ease-in-out infinite;
}

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

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

.forge-arm::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 10px;
    background: #2a2a4a;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 4px;
}

.forge-legs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -2px;
}

.forge-leg {
    width: 16px;
    height: 30px;
    background: linear-gradient(to bottom, #2a2a4a, #1a1a3a);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0 0 6px 6px;
}

.forge-leg::after {
    content: '';
    display: block;
    width: 22px;
    height: 8px;
    background: #1a1a3a;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 4px;
    margin-left: -4px;
    margin-top: 26px;
}

/* Forge robot floating idle */
.forge-float {
    animation: forge-float 4s ease-in-out infinite;
}

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

/* Forge robot wave state */
.forge-waving .forge-arm.left {
    animation: arm-wave 0.8s ease-in-out infinite;
}

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

/* Forge talking */
.forge-talking .forge-mouth {
    display: block;
    width: 16px;
    height: 6px;
    margin: 4px auto 0;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 0 0 8px 8px;
    animation: talk 0.3s ease-in-out infinite;
}

/* Factory particles */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }
.particle-2 { background: #6366f1; box-shadow: 0 0 6px #6366f1; }
.particle-3 { background: #06b6d4; box-shadow: 0 0 6px #06b6d4; }
.particle-4 { background: #ec4899; box-shadow: 0 0 6px #ec4899; }

/* Story scene styles */
.story-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-scene {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.story-scene.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.story-scene h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.story-scene p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.story-scene .price-tag {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
}

.story-scene .price-sub {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    -webkit-text-fill-color: var(--text-muted);
}

.story-scene .shield-icon {
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
    font-size: 2.5rem;
    margin-bottom: 16px;
    animation: shield-pulse 2s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 30px 10px rgba(34, 197, 94, 0.1); }
}

.forge-in-scene {
    width: 80px;
    margin: 0 auto 16px;
}

/* Hero price flash */
.hero-price-float {
    position: absolute;
    right: 8%;
    top: 25%;
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: price-appear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
}

@keyframes price-appear {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-price-float .big-price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-price-float .big-price .currency {
    font-size: 2rem;
    margin-top: 8px;
}

.hero-price-float .big-price .amount {
    font-size: 4rem;
    color: #fff;
}

.hero-price-float .big-price .gradient-text {
    font-size: 4rem;
}

.hero-price-float .price-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.hero-price-float .price-bonus {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 600;
}

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0; }
}

@media (max-width: 1024px) {
    .forge-character { display: none; }
    .hero-price-float { display: none; }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
}

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

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        align-items: flex-start;
    }

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

    .hamburger {
        display: flex;
    }

    .ssl-badge .ssl-text {
        display: none;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

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

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

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

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