/* CSS Custom Properties */
:root {
    --primary-yellow: #ffc400;
    --primary-red: #ec1c24;
    --primary-purple: #9b4ea6;
    --primary-turquoise: #00b5d9;
    
    --gradient-main: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    --gradient-logo: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    --gradient-button: linear-gradient(135deg, var(--primary-yellow) 0%, #ffeb3b 100%);
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

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

.btn-primary {
    background: var(--gradient-button);
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--gradient-main);
    color: var(--text-white);
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo {
    width: 140px;
    height: 40px;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--bg-light);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.lang-link:hover {
    background: var(--gradient-main);
    color: var(--text-white);
}

.lang-link i {
    font-size: 1.1rem;
}

.lang-link span {
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-white);
    color: var(--text-dark);
    overflow: hidden;
    padding-top: 150px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.hero-content {
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: transparent;
    border-radius: 20px;
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.app-badges {
    text-align: left;
}

.app-tagline {
    margin-bottom: 1rem;
    font-weight: 500;
}

.badges {
    display: flex;
    gap: 1rem;
}

.badge-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--text-dark);
    border-radius: var(--border-radius);
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid var(--text-dark);
}

.badge-link:hover {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.app-logo-small {
    width: 30px;
    height: 30px;
    background: var(--gradient-logo);
    border-radius: 8px;
}

.app-header span {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-dark);
}

.loyalty-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    height: 80px;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-light);
}

.card-1 { background: linear-gradient(135deg, var(--primary-red), var(--primary-purple)); }
.card-2 { background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red)); }
.card-3 { background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-purple)); }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* Section Separators */
.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gradient-main) 20%, var(--gradient-main) 80%, transparent 100%);
    margin: 5rem 0;
    opacity: 0.3;
}

.section-divider {
    text-align: center;
    margin: 6rem 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--gradient-main);
}

.section-divider::before {
    left: calc(50% - 120px);
}

.section-divider::after {
    right: calc(50% - 120px);
}

.divider-icon {
    background: var(--bg-white);
    padding: 0 20px;
    font-size: 1.5rem;
    color: transparent;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Backgrounds - Alternating */
section:nth-child(even) {
    background: var(--bg-light);
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 180, 0, 0.3) 50%, transparent 100%);
}

section:nth-child(even)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 185, 241, 0.3) 50%, transparent 100%);
}

/* Geometric patterns for sections */
.features::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.benefits::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(161, 66, 244, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 100px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 185, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

/* --- New features header (split left/right) --- */
.features-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.features-header-left { flex: 0 0 auto; }
.features-header-left .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A142F4;
    background: rgba(161,66,244,0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.features-header-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.25;
}
.features-header-desc {
    flex: 1 1 auto;
    max-width: 420px;
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.7;
    padding-top: 0.25rem;
    margin: 0;
    align-self: flex-end;
}

/* --- Feature list (2-column grid) --- */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition-fast);
}
.feature-item:hover { background: rgba(255,255,255,0.85); }
/* remove right border on even items (right column) */
.feature-item:nth-child(2n) { border-right: none; }
/* remove bottom border on last two items */
.feature-item:nth-last-child(-n+2) { border-bottom: none; }

.fi-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}
.fi-content h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.fi-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Legacy grid (keep for any fallback markup) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.feature-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--text-white);
}
.feature-card h3 { margin-bottom: 1rem; color: var(--text-dark); }
.feature-card p  { color: var(--text-light); line-height: 1.6; }

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-white);
}

.benefits-background {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(135deg, rgba(255,196,0,0.04) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0,181,217,0.04) 0%, transparent 50%);
}

.benefits .container { position: relative; z-index: 2; }

/* 2×2 card grid */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    border-radius: 3px 0 0 3px;
    opacity: 0.7;
}
.benefit-card:nth-child(1)::before { background: #F4B400; }
.benefit-card:nth-child(2)::before { background: #10B981; }
.benefit-card:nth-child(3)::before { background: #3B82F6; }
.benefit-card:nth-child(4)::before { background: #A142F4; }

.benefit-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.bc-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.bc-icon.yellow { background: rgba(244,180,0,0.1); color: #F4B400; }
.bc-icon.green  { background: rgba(16,185,129,0.1); color: #10B981; }
.bc-icon.blue   { background: rgba(59,130,246,0.1);  color: #3B82F6; }
.bc-icon.purple { background: rgba(161,66,244,0.1);  color: #A142F4; }

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Legacy benefit-item layout (kept for fallback) */
.benefits-grid { display: grid; gap: 3rem; }
.benefit-item {
    display: flex; align-items: center; gap: 2rem; padding: 2rem;
    background: var(--bg-white); border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light); transition: all var(--transition-fast);
}
.benefit-item:hover { transform: translateX(10px); box-shadow: var(--shadow-medium); }
.benefit-item:nth-child(even) { flex-direction: row-reverse; }
.benefit-item:nth-child(even):hover { transform: translateX(-10px); }
.benefit-icon {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--text-white); flex-shrink: 0;
}
.benefit-content h3 { margin-bottom: 0.5rem; color: var(--text-dark); }
.benefit-content p  { color: var(--text-light); line-height: 1.6; }

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* --- New hiw layout --- */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Dashed connecting line at badge level */
.hiw-steps::before {
    content: '';
    position: absolute;
    top: 19px; /* half of .hiw-num height */
    left: calc(12.5%);
    right: calc(12.5%);
    height: 0;
    border-top: 2px dashed rgba(0,0,0,0.1);
    z-index: 0;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem 0;
    gap: 0.85rem;
}

.hiw-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c, #F4B400);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.hiw-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hiw-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.hiw-step p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Legacy steps (kept for fallback) */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.step { text-align: center; position: relative; }
.step-number {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    color: var(--text-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 700;
    margin: 0 auto 2rem; position: relative; z-index: 2;
}
.step-content h3 { margin-bottom: 1rem; color: var(--text-dark); }
.step-content p  { color: var(--text-light); margin-bottom: 2rem; line-height: 1.6; }
.step-visual { font-size: 3rem; color: var(--primary-turquoise); opacity: 0.3; }

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    text-align: center;
}

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

.pricing-card.featured {
    background: var(--gradient-main);
    color: var(--text-white);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    opacity: 0.8;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.pricing-features i {
    color: var(--primary-turquoise);
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--primary-yellow);
}

/* ─── Contact Section ─────────────────────────────────────────── */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    max-width: 960px;
    margin: 3rem auto 0;
}
.contact-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.contact-intro {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cm-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}
.cm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-main);
    margin-top: 5px;
    flex-shrink: 0;
}
.cm-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cm-item strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.cm-item > div > span {
    font-size: 0.88rem;
    color: var(--text-light);
}
a.cm-item:hover > div > span {
    color: var(--primary-turquoise);
    text-decoration: underline;
}
.contact-right {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
/* Contact form fields */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 3px rgba(0,181,217,0.12);
    background: var(--bg-white);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}
.form-legal {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cf-row { grid-template-columns: 1fr; }
    .contact-right { padding: 1.5rem; }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 0;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 180px;
    height: 52px;
}

.footer-brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-turquoise);
    transform: translateY(-2px);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--primary-turquoise);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F4B400 0%, #EA4335 33%, #A142F4 66%, #00B9F1 100%);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ─── Use Cases Grid ──────────────────────────────────────────── */
section.use-cases {
    padding: 5rem 0;
}
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.uc-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.uc-icon {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}
.uc-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.uc-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .usecases-grid { grid-template-columns: 1fr; }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left var(--transition-fast);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .language-switcher {
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1001;
    }
    
    .hero {
        padding-top: 100px;
        position: relative;
        z-index: 1;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-badges {
        text-align: center;
    }
    
    .app-tagline {
        text-align: center;
    }
    
    .badges {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* New features layout → single column */
    .features-header {
        flex-direction: column;
        gap: 1rem;
    }
    .features-header-desc { max-width: 100%; }
    .features-list {
        grid-template-columns: 1fr;
    }
    .feature-item { border-right: none !important; }
    .feature-item:last-child { border-bottom: none; }

    /* New benefits cards → single column */
    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item:nth-child(even) {
        flex-direction: column;
    }

    .benefit-item:hover,
    .benefit-item:nth-child(even):hover {
        transform: translateY(-5px);
    }
    
    /* New how-it-works → 2 columns on tablet/mobile */
    .hiw-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hiw-steps::before { display: none; }

    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .hiw-steps { grid-template-columns: 1fr; }
    .benefits-cards { grid-template-columns: 1fr; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .benefit-item,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Enhancements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.phone-mockup {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.step-number {
    animation: pulse 2s ease-in-out infinite;
}

/* Scroll-based animations will be handled by AOS library */

/* ─── Header scrolled ─────────────────────────────────────── */
.header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.98);
}

/* ─── Nav offer link ──────────────────────────────────────── */
.nav-offer-link {
    background: linear-gradient(135deg, rgba(244,180,0,0.15), rgba(234,67,53,0.15));
    border: 1px solid rgba(244,180,0,0.4);
    color: #c8820a !important;
    padding: 6px 14px !important;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.nav-offer-link:hover {
    background: linear-gradient(135deg, rgba(244,180,0,0.3), rgba(234,67,53,0.3)) !important;
    color: #a06000 !important;
}

/* ─── Hero Badge ─────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(244,180,0,0.15), rgba(161,66,244,0.15));
    border: 1px solid rgba(244,180,0,0.4);
    color: var(--primary-yellow);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

/* ─── Hero Stats ──────────────────────────────────────────── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0,0,0,0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.07);
    width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-number {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-light); -webkit-text-fill-color: var(--text-light) !important; white-space: nowrap; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.12); }

/* ─── Phone mockup enrichi ────────────────────────────────── */
.app-notif-dot { width: 8px; height: 8px; background: #ea4335; border-radius: 50%; margin-left: auto; }
.app-welcome { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; padding: 0 2px; }
.card-inner { padding: 10px 14px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.card-name { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; }
.card-points { font-size: 18px; font-weight: 700; color: #fff; }
.card-points small { font-size: 10px; font-weight: 400; opacity: 0.8; }
.card-stamps { display: flex; gap: 4px; flex-wrap: wrap; }
.stamp { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5); }
.stamp.filled { background: rgba(255,255,255,0.9); }
.card-progress { height: 6px; background: rgba(255,255,255,0.25); border-radius: 3px; overflow: hidden; }
.progress-bar { height: 100%; background: rgba(255,255,255,0.9); border-radius: 3px; }
.app-scan-btn {
    margin-top: 14px;
    background: linear-gradient(135deg, #F4B400, #EA4335);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-buttons .btn i { margin-right: 6px; }

/* ─── Pricing: Abonnement socle ───────────────────────────── */
.pricing-subscription { margin-bottom: 3.5rem; }
.subscription-card {
    background: var(--bg-white);
    border: 2px solid rgba(161,66,244,0.25);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}
.subscription-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-main);
}
.sub-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(244,180,0,0.15), rgba(161,66,244,0.15));
    border: 1px solid rgba(161,66,244,0.3);
    color: var(--primary-purple);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.sub-body { display: flex; align-items: center; gap: 3rem; }
.sub-info { flex: 1; }
.sub-info h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.sub-desc { color: var(--text-light); margin-bottom: 1.5rem; }
.sub-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.sub-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.95rem; color: var(--text-dark); }
.sub-features li i { color: var(--primary-turquoise); margin-top: 3px; flex-shrink: 0; }
.sub-price-block {
    text-align: center;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}
.sub-price { display: flex; align-items: baseline; gap: 4px; }
.sub-amount {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sub-period { font-size: 1rem; color: var(--text-light); }
.sub-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; }

/* ─── Pricing: Crédits ────────────────────────────────────── */
.pricing-credits-block { margin-bottom: 3.5rem; }
.credits-header { text-align: center; margin-bottom: 2rem; }
.credits-header h3 { margin-bottom: 1rem; }
.credits-rule { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.credits-rule span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,181,217,0.08);
    border: 1px solid rgba(0,181,217,0.25);
    color: var(--primary-turquoise);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.credits-note { color: var(--text-light); font-size: 0.9rem; }
.credits-packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.credit-pack {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.07);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
}
.credit-pack:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: rgba(161,66,244,0.3); }
.credit-pack.recommended { border-color: var(--primary-yellow); box-shadow: 0 4px 20px rgba(244,180,0,0.2); }
.pack-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.credit-pack h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-dark); }
.pack-price {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}
.pack-credits { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.pack-unit { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.pack-usage {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.pack-usage span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: left;
}
.pack-usage span i { color: var(--primary-turquoise); font-size: 0.72rem; flex-shrink: 0; }

/* ─── Pricing: Options marketing ─────────────────────────── */
.pricing-options-block { margin-bottom: 3.5rem; }
.pricing-options-block > h3 {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.pricing-examples-block > h3 { text-align: center; margin-bottom: 2rem; }
.optional-tag {
    font-size: 0.75rem;
    background: rgba(108,117,125,0.15);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.option-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all var(--transition-fast);
}
.option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.option-icon {
    width: 52px; height: 52px;
    background: var(--gradient-main);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.option-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.option-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.5; }
.option-prices { display: flex; flex-direction: column; gap: 0.5rem; }
.option-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.875rem;
}
.op-duration { color: var(--text-dark); }
.op-price { font-weight: 700; color: var(--primary-purple); white-space: nowrap; }

/* ─── Pricing: Exemples ───────────────────────────────────── */
.pricing-examples-block {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 1rem;
}
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.example-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-fast);
}
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-light); }
.example-card.featured { border-color: var(--primary-yellow); box-shadow: 0 4px 16px rgba(244,180,0,0.15); }
.example-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.example-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.example-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.5; }
.example-total {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Bandeau fondateur sticky ───────────────────────────── */
.founder-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #1a0533, #2d0a5e);
    border-bottom: 1px solid rgba(161,66,244,0.3);
    padding: 10px 0;
}
.founder-banner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.founder-banner-tag {
    background: linear-gradient(135deg, #a142f4, #6366f1);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.founder-banner-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}
.founder-banner-countdown {
    display: flex;
    gap: 4px;
    align-items: center;
}
.fc-block {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 3px 7px;
}
.fc-block span { color: #fff; font-size: 0.9rem; font-weight: 700; }
.fc-block small { color: rgba(255,255,255,0.55); font-size: 0.65rem; }
.founder-banner-cta {
    background: linear-gradient(135deg, #a142f4, #6366f1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.founder-banner-cta:hover { opacity: 0.85; }
.founder-banner-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}
.founder-banner-close:hover { color: rgba(255,255,255,0.8); }

/* ─── Offre de lancement ──────────────────────────────────── */
.launch-offer {
    padding: 4rem 0;
    background: var(--bg-dark) !important;
    position: relative;
    overflow: hidden;
}
.launch-offer::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(161,66,244,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.launch-offer::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,180,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.launch-card {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}
.launch-sparkle {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.launch-tag {
    display: inline-block;
    background: linear-gradient(135deg, #F4B400, #EA4335);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.launch-card h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.launch-card > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.launch-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    text-align: left;
}
.launch-perk { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.launch-perk i { color: #4ade80; font-size: 1.1rem; flex-shrink: 0; }
.btn-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F4B400, #EA4335);
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(244,180,0,0.4);
    margin-bottom: 1rem;
}
.btn-launch:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(244,180,0,0.5); }
.launch-footer { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 1rem; }

/* ─── Section fondateur — grille 2 colonnes ──────────────── */
.founder-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.founder-left { text-align: left; }
.founder-left .launch-sparkle { text-align: left; }
.founder-left h2 { color: #fff; font-size: 1.8rem; margin-bottom: 0.75rem; }
.founder-left > p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; }
.founder-left .launch-perks { grid-template-columns: 1fr; margin-bottom: 2rem; }

/* Comparaison prix */
.founder-price-compare {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.fpc-now, .fpc-after {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fpc-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.45); }
.fpc-price { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.fpc-price small { font-size: 0.9rem; font-weight: 500; }
.fpc-now .fpc-price { background: linear-gradient(135deg, #a142f4, #6366f1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fpc-striked { color: rgba(255,255,255,0.35) !important; text-decoration: line-through; font-size: 1.4rem !important; -webkit-text-fill-color: rgba(255,255,255,0.35) !important; }
.fpc-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* Colonne droite */
.founder-right {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Barre de places */
.founder-slots { margin-bottom: 2rem; }
.founder-slots-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 0.6rem; }
.founder-slots-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.founder-slots-fill {
    height: 100%;
    background: linear-gradient(90deg, #a142f4, #6366f1);
    border-radius: 999px;
    transition: width 1s ease;
}
.founder-slots-count { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.founder-slots-count strong { color: #fff; font-size: 1.1rem; }

/* Countdown large */
.founder-countdown-box { margin-bottom: 2rem; }
.fcb-label { color: rgba(255,255,255,0.45); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.founder-countdown-large { display: flex; align-items: center; justify-content: center; gap: 6px; }
.fcl-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.fcl-block span { color: #fff; font-size: 2rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.fcl-block small { color: rgba(255,255,255,0.4); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3px; }
.fcl-sep { color: rgba(255,255,255,0.3); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }

.founder-cta { width: 100%; justify-content: center; margin-bottom: 0; }

/* ─── Responsive additions ────────────────────────────────── */
@media (max-width: 768px) {
    .hero-stats { gap: 1rem; padding: 1rem; margin: 1.5rem auto 0; }
    .hero-badge { margin: 0 auto 1.5rem; }
    .sub-body { flex-direction: column; gap: 2rem; }
    .sub-features { grid-template-columns: 1fr; }
    .sub-price-block { width: 100%; }
    .credits-packs-grid { grid-template-columns: 1fr 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr; }
    .launch-perks { grid-template-columns: 1fr; }
    .launch-card h2 { font-size: 1.5rem; }
    .founder-offer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .founder-left h2 { font-size: 1.5rem; }
    .founder-banner-text { display: none; }
    .fcl-block span { font-size: 1.5rem; }
    .credits-rule { flex-direction: column; align-items: center; gap: 0.75rem; }
}
@media (max-width: 480px) {
    .credits-packs-grid { grid-template-columns: 1fr; }
    .hero-stat-divider { display: none; }
    .hero-stats { gap: 1rem; justify-content: center; }
}

/* ─── Numbers Bar ─────────────────────────────────────────── */
.numbers-bar {
    background: var(--bg-light, #f8f9fa);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.numbers-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.number-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem 2rem;
    position: relative;
}
.number-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0,0,0,0.10);
}
.number-value {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    line-height: 1;
    display: block;
}
.number-suffix {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    line-height: 1;
}
.number-label {
    font-size: 0.85rem;
    color: var(--text-light, #6c757d);
    -webkit-text-fill-color: var(--text-light, #6c757d) !important;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
    line-height: 1.4;
}
.numbers-bar .number-label {
    color: var(--text-light, #6c757d);
    -webkit-text-fill-color: var(--text-light, #6c757d) !important;
}
.number-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    line-height: 1;
    margin-bottom: 0.1rem;
}
.number-platforms i {
    font-size: 2.4rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 768px) {
    .numbers-grid { flex-wrap: wrap; gap: 0; }
    .number-item { flex: 50%; padding: 1.2rem 1rem; }
    .number-item:nth-child(2)::after { display: none; }
    .number-item:nth-child(3)::after { display: none; }
    .number-value { font-size: 2rem; }
    .number-suffix { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .number-item { flex: 100%; }
    .number-item::after { display: none !important; }
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials {
    background: var(--bg-light);
    padding: 5rem 0;
}
.testimonials-swiper {
    padding-bottom: 3rem !important;
    overflow: hidden;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-light);
    transition: box-shadow var(--transition-fast);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card:hover { box-shadow: var(--shadow-medium); }
.testimonial-stars { color: #F4B400; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1rem;
    margin-top: auto;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #F4B400 0%, #EA4335 100%);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
}
.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-light);
    display: block;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-yellow);
}

/* ─── Comparison ──────────────────────────────────────────── */
.comparison {
    background: var(--bg-white);
    padding: 5rem 0;
}
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    max-width: 860px;
    margin: 2.5rem auto 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.comparison-col {
    background: var(--bg-light);
}
.comparison-col--new {
    background: var(--bg-dark);
}
.comparison-vs {
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.comparison-col-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: rgba(0,0,0,0.04);
}
.comparison-col--new .comparison-col-header {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-col ul {
    list-style: none;
    padding: 1rem 1.2rem 1.5rem;
    margin: 0;
}
.comparison-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comparison-col li:last-child { border-bottom: none; }
.comparison-col--new li { color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.07); }
.comparison-col--new li:last-child { border-bottom: none; }
.bad { color: #ef4444; flex-shrink: 0; margin-top: 2px; }
.good { color: #4ade80; flex-shrink: 0; margin-top: 2px; }
.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 0;
}
.comparison-vs span {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    padding: 0.5rem;
    text-align: center;
}
@media (max-width: 768px) {
    .comparison-table { grid-template-columns: 1fr; border-radius: var(--border-radius); }
    .comparison-vs { flex-direction: row; justify-content: center; padding: 0.5rem; }
    .comparison-vs span { writing-mode: horizontal-tb; }
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
    background: var(--bg-light);
    padding: 5rem 0;
}
.faq-list {
    max-width: 760px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: box-shadow var(--transition-fast);
}
.faq-item.open { box-shadow: var(--shadow-medium); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--primary-yellow); }
.faq-question i {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary-yellow); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}
.faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem;
}

/* ─── Sticky CTA ──────────────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(8px);
    padding: 0.85rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, #F4B400, #EA4335);
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: filter var(--transition-fast);
}
.sticky-cta-btn:hover { filter: brightness(1.1); }
@media (max-width: 768px) {
    .sticky-cta { display: block; }
    /* Prevent content from being hidden behind sticky bar */
    footer { padding-bottom: 80px; }
}

/* ─── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 9999;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    max-width: 540px;
    animation: slideUpIn 0.4s ease;
}
.cookie-banner.visible { display: flex; flex-direction: column; gap: 1rem; }
@keyframes slideUpIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cookie-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.cookie-content p a { color: var(--primary-yellow); text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.btn-cookie-accept {
    background: linear-gradient(135deg, #F4B400, #EA4335);
    color: #fff;
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: filter var(--transition-fast);
}
.btn-cookie-accept:hover { filter: brightness(1.1); }
.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-cookie-decline:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.4); }
@media (max-width: 480px) {
    .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; }
    .cookie-actions { flex-direction: column; }
    .btn-cookie-accept, .btn-cookie-decline { width: 100%; text-align: center; }
}

/* ─── Chatbot Widget ─────────────────────────────────────── */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Toggle button */
.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-main);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(161, 66, 244, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(161, 66, 244, 0.55);
}
.chatbot-toggle-icon {
    position: absolute;
    font-size: 1.25rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.chatbot-toggle-icon.close {
    opacity: 0;
    transform: rotate(-80deg) scale(0.8);
}
.chatbot-widget.is-open .chatbot-toggle-icon.open {
    opacity: 0;
    transform: rotate(80deg) scale(0.8);
}
.chatbot-widget.is-open .chatbot-toggle-icon.close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Notification badge */
.chatbot-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: badgePulse 1.8s ease infinite;
    font-family: var(--font-primary);
}
.chatbot-badge.hidden { display: none; }

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

/* Chat panel */
.chatbot-panel {
    width: 360px;
    max-height: 510px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.88) translateY(16px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.chatbot-widget.is-open .chatbot-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.chatbot-header {
    background: var(--gradient-main);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 11px;
}
.chatbot-avatar-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.chatbot-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}
.chatbot-header-name {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
}
.chatbot-header-status {
    display: block;
    font-size: 0.71rem;
    color: rgba(255, 255, 255, 0.78);
}
.chatbot-header-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.chatbot-header-close:hover { background: rgba(255, 255, 255, 0.35); }

/* Messages area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }

.chatbot-msg {
    max-width: 86%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.55;
    white-space: pre-line;
    animation: chatMsgIn 0.22s ease;
    font-family: var(--font-secondary);
}
@keyframes chatMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chatbot-msg.bot {
    background: #f3f4f6;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.chatbot-msg.user {
    background: var(--gradient-main);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

/* Typing indicator */
.chatbot-typing {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: chatMsgIn 0.22s ease;
}
.chatbot-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a0a0a0;
    animation: typingBounce 1.2s ease infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.18s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick replies */
.chatbot-quick-replies {
    padding: 10px 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
    min-height: 52px;
}
.chatbot-reply-btn {
    background: #fff;
    border: 1.5px solid rgba(161, 66, 244, 0.28);
    color: #7c3aed;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--font-secondary);
    line-height: 1;
}
.chatbot-reply-btn:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(161, 66, 244, 0.3);
}

/* Mobile */
@media (max-width: 480px) {
    .chatbot-widget { bottom: 16px; right: 16px; }
    .chatbot-panel { width: calc(100vw - 32px); max-height: 72vh; }
}

