@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f3f4f6;
    --accent-primary: #7C3AED;
    --accent-hover: #6D28D9;
    --accent-light: #F5F3FF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-color: #E2E8F0;
    --card-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.04), 0 4px 12px -5px rgba(0, 0, 0, 0.02);
    --card-shadow-hover: 0 20px 40px -15px rgba(124, 58, 237, 0.08), 0 8px 20px -6px rgba(124, 58, 237, 0.04);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset and Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
}

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

img, svg {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-accent-light {
    background-color: var(--accent-light);
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-center: center;
}

/* Header & Glassmorphism Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    display: inline-block;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

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

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

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(124, 58, 237, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    background: radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--accent-light);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.hero-badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

.hero-title {
    font-size: 54px;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 540px;
}

.hero-actions-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Interactive Hoodie Customizer Card */
.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customizer-card {
    width: 100%;
    max-width: 460px;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.customizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), #A78BFA);
}

.mockup-display {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
}

.mockup-svg-wrapper {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.mockup-svg-wrapper svg {
    max-height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

/* Dynamic classes for Hoodie color styling */
.hoodie-body { fill: #f8fafc; transition: fill 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hoodie-shading { opacity: 0.15; }
.hoodie-strings { fill: #cbd5e1; }
.hoodie-pattern {
    display: none;
    transform-origin: center;
    transform: translate(25px, 30px) scale(0.6);
    pointer-events: none;
}

.mockup-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.customizer-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.option-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.option-title span {
    color: var(--text-primary);
    text-transform: none;
    font-weight: 500;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: var(--transition-bounce);
}

.color-dot:hover {
    transform: scale(1.15);
}

.color-dot.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.color-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background-color: var(--dot-color);
    border: 1px solid rgba(0,0,0,0.06);
}

.fabric-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fabric-pill {
    padding: 10px;
    background-color: var(--bg-tertiary);
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.fabric-pill:hover {
    background-color: var(--border-color);
}

.fabric-pill.active {
    background-color: var(--accent-light);
    color: var(--accent-primary);
    border-color: rgba(124, 58, 237, 0.3);
}

.pattern-options {
    display: flex;
    gap: 8px;
}

.pattern-pill {
    flex: 1;
    padding: 10px;
    background-color: var(--bg-tertiary);
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pattern-pill:hover {
    background-color: var(--border-color);
}

.pattern-pill.active {
    background-color: var(--accent-light);
    color: var(--accent-primary);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Feature Cards Section */
.features-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary);
}

.feature-link span {
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-link span {
    transform: translateX(4px);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-primary);
    overflow: hidden;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    padding-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 4%;
    width: 92%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
    z-index: 2;
}

.timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
    box-shadow: 0 0 0 6px var(--bg-primary);
}

.timeline-step.active .timeline-node {
    border-color: var(--accent-primary);
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 0 6px var(--bg-primary), 0 0 15px rgba(124, 58, 237, 0.4);
}

.timeline-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-icon-box {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
}

.timeline-step.active .timeline-icon-box {
    background-color: var(--accent-light);
    border-color: rgba(124, 58, 237, 0.2);
}

.timeline-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* AI Preview Section with Chat Simulator */
.ai-preview-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ai-preview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.chat-simulator {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    height: 480px;
    overflow: hidden;
}

.chat-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-secondary);
}

.chat-bot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-bot-info h4 {
    font-size: 14px;
    font-weight: 700;
}

.chat-bot-info p {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-bot-info p::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10B981;
    display: inline-block;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 80%;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    line-height: 1.5;
    animation: fade-slide-up 0.4s ease forwards;
}

.chat-bubble-user {
    align-self: flex-end;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border-bottom-right-radius: 4px;
}

.chat-bubble-ai {
    align-self: flex-start;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

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

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

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

@keyframes typing-bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

@keyframes fade-slide-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-input-area {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    background-color: var(--bg-secondary);
}

.chat-input-box {
    flex: 1;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    color: var(--text-primary);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    background-color: var(--accent-primary);
}

/* AI Design Gallery (beside the chat) */
.ai-results-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ai-gallery-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-bounce);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.ai-gallery-card.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.ai-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(124, 58, 237, 0.2);
}

.ai-image-wrap {
    background-color: var(--bg-secondary);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.ai-image-wrap svg {
    max-height: 100%;
}

.ai-card-info {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-card-title {
    font-size: 13px;
    font-weight: 700;
}

.ai-card-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-primary);
    background-color: var(--accent-light);
    padding: 4px 8px;
    border-radius: 100px;
}

/* Platform Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow);
}

.advantage-icon {
    font-size: 24px;
    color: var(--accent-primary);
    background-color: var(--accent-light);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card h4 {
    font-size: 18px;
}

.advantage-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Producers / Manufacturers Section */
.producers-section {
    background-color: var(--bg-primary);
}

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

.producer-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-bounce);
    box-shadow: var(--card-shadow);
}

.producer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--card-shadow-hover);
}

.producer-header {
    padding: 32px 32px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.producer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-light);
}

.producer-meta h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.producer-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #F59E0B;
}

.producer-details {
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    background-color: var(--bg-secondary);
}

.detail-block span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-block p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.producer-footer {
    padding: 24px 32px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-indicator span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.price-indicator h3 {
    font-size: 20px;
    font-weight: 800;
}

/* Testimonials / Customer Reviews */
.testimonials-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.user-info-text h4 {
    font-size: 14px;
    font-weight: 700;
}

.user-info-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Showcase Section */
.cta-showcase {
    background-color: var(--bg-primary);
    padding: 120px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e1b4b 100%);
    border-radius: var(--border-radius-lg);
    padding: 80px 60px;
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

.cta-content {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--bg-primary);
    font-size: 40px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-content p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 0;
}

.cta-btn-wrap {
    position: relative;
    z-index: 2;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.7fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-about p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 240px;
}

.footer-column h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Scroll Animation Reveal Classes (Framer-Motion replacement) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-row {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .mockup-container {
        width: 100%;
    }
    
    .customizer-card {
        margin: 0 auto;
    }
    
    .features-grid, .advantages-grid, .producers-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 40px;
        padding-top: 0;
        margin-top: 40px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
    }
    
    .timeline-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .timeline-icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Mobile Menu Drawer when Active */
    .nav.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        padding: 40px 24px;
        gap: 24px;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .features-grid, .advantages-grid, .producers-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 48px 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
