/* ========================================
   InstaWP - Sweet & Professional Theme
   Modern, Friendly & Delightful
   ======================================== */

/* CSS Variables */
:root {
    /* Sweet Purple-Pink Palette */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --accent: #f472b6;
    
    /* Friendly Colors */
    --success: #34d399;
    --warning: #fbbf24;
    --error: #f87171;
    --info: #60a5fa;
    
    /* Warm Neutral Palette */
    --gray-25: #fdfcfd;
    --gray-50: #faf8fb;
    --gray-100: #f5f3f7;
    --gray-200: #ebe8ef;
    --gray-300: #ddd8e4;
    --gray-400: #c4bcd0;
    --gray-500: #9f95ad;
    --gray-600: #756a85;
    --gray-700: #544b60;
    --gray-800: #3d3548;
    --gray-900: #2a2433;
    --gray-950: #1a161f;
    
    --white: #ffffff;
    --black: #000000;
    
    /* Sweet Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-sweet: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-soft: linear-gradient(180deg, #faf8fb 0%, #ffffff 100%);
    --gradient-hero: linear-gradient(180deg, #f5f0ff 0%, #fdf4ff 50%, #ffffff 100%);
    
    /* Soft Shadows */
    --shadow-xs: 0 1px 2px rgba(139, 92, 246, 0.04);
    --shadow-sm: 0 2px 4px rgba(139, 92, 246, 0.06);
    --shadow: 0 4px 6px rgba(139, 92, 246, 0.08);
    --shadow-md: 0 6px 16px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 12px 28px rgba(139, 92, 246, 0.12);
    --shadow-xl: 0 20px 40px rgba(139, 92, 246, 0.15);
    --shadow-primary: 0 10px 30px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 4px 20px rgba(139, 92, 246, 0.08);
    
    /* Spacing - Comfortable */
    --container-max: 1180px;
    --section-padding: 90px;
    
    /* Border Radius - Rounded & Friendly */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;
    
    /* Transitions - Smooth */
    --transition-fast: 150ms ease;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background-color: var(--gray-25);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

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

ul {
    list-style: none;
}

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

input, select, button {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header & Navigation - Sweet & Professional
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--gradient-sweet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.4rem;
    background: var(--gradient-sweet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: color var(--transition);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Buttons - Sweet & Delightful Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--gradient-sweet);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(139, 92, 246, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139, 92, 246, 0.04);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(74, 108, 247, 0.08);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Hero Section - Clean & Trustworthy
   ======================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: auto;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--gray-900);
    margin-bottom: 20px;
}

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

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-sweet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Background - Sweet */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    top: -150px;
    right: -50px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(236, 72, 153, 0.15);
    bottom: 0;
    left: -100px;
}

.grid-pattern {
    display: none;
}

/* ========================================
   Create Site Card - Sweet Style
   ======================================== */
.create-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all var(--transition);
}

.create-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: var(--gradient-sweet);
    padding: 22px 28px;
    color: var(--white);
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.create-form {
    padding: 32px;
    background: var(--white);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Input Wrapper - Sweet & Friendly */
.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.05);
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 4px 12px rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.input-wrapper input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.domain-suffix {
    padding: 16px 18px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fce7f3 100%);
    color: var(--primary);
    font-weight: 600;
    border-left: 2px solid rgba(139, 92, 246, 0.1);
}

/* Select - Sweet Style */
select {
    width: 100%;
    padding: 16px 18px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    cursor: pointer;
    transition: all var(--transition);
    appearance: none;
    font-weight: 500;
    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='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.05);
}

select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 4px 12px rgba(139, 92, 246, 0.1);
}

/* Theme Grid - Sweet & Playful */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.theme-option {
    cursor: pointer;
}

.theme-option input {
    display: none;
}

.theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 12px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.05);
}

.theme-card i {
    font-size: 1.6rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.theme-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

.theme-option input:checked + .theme-card,
.theme-option:hover .theme-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.theme-option input:checked + .theme-card i,
.theme-option:hover .theme-card i {
    color: var(--primary);
    transform: scale(1.1);
}

/* Plugin Categories Section */
.plugins-section {
    margin-top: 20px;
}

.plugin-category {
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(244, 114, 182, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.plugin-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.plugin-category h4 i {
    color: var(--primary);
    font-size: 16px;
}

/* Plugins Grid - Sweet Checkboxes */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.plugin-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.03);
}

.plugin-checkbox:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(244, 114, 182, 0.03) 100%);
    transform: translateY(-2px);
}

.plugin-checkbox input {
    display: none;
}

.plugin-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plugin-checkbox .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.plugin-checkbox input:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.plugin-checkbox input:checked + .checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.plugin-checkbox input:checked ~ span {
    color: var(--primary);
    font-weight: 600;
}


.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.form-note i {
    color: var(--primary);
}

/* ========================================
   Features Section - Sweet & Delightful
   ======================================== */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #f472b6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(244, 114, 182, 0.15) 100%);
    border-radius: 18px;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   How It Works Section - Sweet
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 50%, #f5f3ff 100%);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, #f472b6 100%);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 22px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    animation: spin 20s linear infinite;
}

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

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #f472b6 100%);
    margin-bottom: 50px;
    border-radius: 10px;
}

/* ========================================
   Pricing Section - Sweet & Professional
   ======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    padding: 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #a855f7 50%, #f472b6 100%);
    border-radius: 24px 24px 0 0;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 12px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 18px;
}

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

.price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    align-self: flex-start;
    margin-top: 8px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    color: var(--gray-700);
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    color: var(--success);
    font-size: 0.75rem;
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    background: var(--gray-100);
    color: var(--gray-300);
}

/* ========================================
   Modal - Sweet Style
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-body {
    padding: 32px;
}

.site-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.copy-field {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.copy-field input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.copy-btn {
    padding: 12px 16px;
    background: var(--gray-100);
    border: none;
    border-left: 1px solid var(--gray-200);
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.copy-btn.copied {
    background: var(--success);
    color: var(--white);
}

.expiry-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 0.9rem;
}

.expiry-notice i {
    color: var(--warning);
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 24px 32px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.modal-footer .btn {
    flex: 1;
}

/* ========================================
   Loading Overlay
   ======================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 1s linear infinite;
}

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

.loading-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.loading-step {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #a855f7 50%, #f472b6 100%);
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s ease;
}

/* ========================================
   Footer - Sweet & Professional
   ======================================== */
.footer {
    background: linear-gradient(180deg, #1e1b4b 0%, #0f0d1a 100%);
    color: var(--gray-400);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #a855f7 33%, #f472b6 66%, var(--primary) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo span {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    line-height: 1.8;
    max-width: 320px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-column h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 10px;
}

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

.footer-column a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column a:hover {
    color: #f472b6;
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom span {
    color: #f472b6;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .create-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .card-header {
        padding: 20px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AI & Corporate Enhancements
   ======================================== */

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* AI Text Animation - Premium */
.ai-text-animate {
    display: block;
    background: linear-gradient(90deg, var(--gray-900) 0%, var(--primary) 50%, var(--gray-900) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.ai-highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.ai-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Trust Badges - Sweet & Professional */
.trust-badges {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.06);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1rem;
}

/* AI Badge in Card - Sweet Style */
.ai-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ai-badge-small i {
    font-size: 0.7rem;
}

/* AI Suggestion Box - Sweet Style */
.ai-suggestion {
    margin-top: 28px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(244, 114, 182, 0.04) 100%);
    border: 2px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    display: none;
    position: relative;
    overflow: hidden;
}

.ai-suggestion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 4px;
}

.ai-suggestion.active {
    display: block;
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.ai-suggestion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.ai-suggestion-header i {
    color: #f472b6;
}

.ai-suggestion-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* Trusted By Section - Sweet Style */
.trusted-by {
    padding: 60px 0;
    background: linear-gradient(180deg, #faf5ff 0%, var(--white) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.08);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(90deg, #faf5ff 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #faf5ff 100%);
}

.logo-track {
    display: flex;
    gap: 72px;
    animation: scroll 25s linear infinite;
}

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

.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.company-logo:hover {
    color: var(--primary);
    transform: scale(1.08);
}

.company-logo i {
    font-size: 1.6rem;
}

/* Feature Card Enhancements - Sweet */
.feature-card.featured {
    position: relative;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(244, 114, 182, 0.03) 100%);
}

.feature-icon.ai-glow {
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    to {
        box-shadow: 0 0 35px rgba(244, 114, 182, 0.45);
    }
}

.feature-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* Testimonials Section - Sweet & Friendly */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid transparent;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(139, 92, 246, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.15);
}

.testimonial-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.18);
}

.testimonial-card.featured::before {
    color: rgba(139, 92, 246, 0.2);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, #f472b6 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* AI Chat Widget - Sweet & Friendly */
.ai-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1500;
}

.ai-chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, #f472b6 100%);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ai-chat-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 24px;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-height: 520px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
}

.ai-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    position: relative;
}

.ai-avatar i {
    font-size: 1.1rem;
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
}

.ai-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ai-status {
    font-size: 0.8rem;
    color: #86efac;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-status::before {
    content: '●';
    font-size: 0.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.ai-chat-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.ai-chat-messages {
    flex: 1;
    padding: 22px;
    overflow-y: auto;
    max-height: 340px;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
}

.ai-message {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.ai-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.ai-message.user .message-avatar {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.25);
}

.message-content {
    max-width: 80%;
}

.message-content p {
    background: var(--white);
    padding: 14px 18px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.ai-message.user .message-content p {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
    border-radius: 18px;
    border-top-right-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.quick-action {
    padding: 8px 14px;
    background: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.ai-chat-input {
    display: flex;
    gap: 10px;
    padding: 18px 22px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    background: var(--white);
}

.ai-chat-input input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    outline: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #faf5ff;
}

.ai-chat-input input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.ai-chat-input input::placeholder {
    color: var(--gray-400);
}

.ai-send-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    border: none;
    border-radius: 14px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.ai-send-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Typing Animation - Sweet */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 18px;
    border-top-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

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

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Counter Animation */
.stat-number[data-count] {
    transition: all 0.3s ease;
}

/* Responsive for AI Features */
@media (max-width: 768px) {
    .trust-badges {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-chat-window {
        width: calc(100vw - 48px);
        right: -12px;
    }
    
    .ai-chat-toggle {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        border-radius: 16px;
    }
}
