/* Variables CSS */
:root {
    --primary-color: #1E90FF;    /* Bleu profond et professionnel */
    --secondary-color: #FF6B6B;   /* Rouge */
    --accent-color: #E74C3C;     /* Vert émeraude pour les accents */
    --text-color: #333;          /* Gris très foncé pour le texte */
    --light-text: #666;          /* Gris moyen pour le texte */
    --light-gray: #f8f9fa;       /* Gris très clair pour les fonds */
    --white: #fff;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 4px 12px rgba(30, 144, 255, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Styles généraux */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #1873CC;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background-color: #1873CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.25);
}

/* Bouton de simulation : toujours rouge */
.simulate-btn {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 14px rgba(231, 76, 60, 0.25);
    color: var(--white);
}

.simulate-btn:hover,
.simulate-btn:focus,
.simulate-btn:active {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 9px rgba(231, 76, 60, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(30, 144, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-compte {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-compte:hover {
    background-color: #1873CC;  /* Version plus foncée du primary-color */
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(30, 144, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 144, 255, 0.95), rgba(30, 144, 255, 0.85)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-3deg);
}

.hero-content {
    max-width: 640px;
    margin: 0 auto 0 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.ecosystem-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.chip-strong {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero .cta-buttons {
    justify-content: flex-start;
}

.hero-checklist {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.hero-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--border-radius);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-panel {
    background: var(--white);
    color: var(--text-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(90deg, rgba(30,144,255,0.12), rgba(30,144,255,0.05));
    border-bottom: 1px solid var(--border-color);
}

.panel-title {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green { background: #2ecc71; }
.dot.yellow { background: #f1c40f; }
.dot.red { background: #e74c3c; }

.panel-body {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.panel-subtitle {
    font-weight: 700;
    color: var(--primary-color);
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.panel-list li {
    padding: 0.75rem 0.9rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.panel-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel-footnote {
    font-size: 0.95rem;
    color: var(--light-text);
}

.terminal-shell {
    background: #0d1117;
    color: #e6edf3;
    border-radius: var(--border-radius-md);
    border: 1px solid #1f2a3a;
    overflow: hidden;
    margin-top: 0.25rem;
    box-shadow: var(--shadow-lg);
}

.terminal-header {
    background: #161b22;
    padding: 0.6rem 0.85rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9rem;
    color: #7ee0ff;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #1f2a3a;
}

.terminal-body {
    padding: 1rem;
    height: 220px;
    overflow-y: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    background: radial-gradient(120% 80% at 10% 20%, rgba(30,144,255,0.12), rgba(13,17,23,0.96));
}

.terminal-line {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
    letter-spacing: 0.25px;
}

.terminal-line strong {
    color: #7ee0ff;
    font-weight: 600;
}

.simulate-btn.connected {
    position: relative;
    padding-right: 3.2rem;
}

.simulate-btn.connected .dot-wave {
    display: inline-flex;
    gap: 0.15rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.simulate-btn.connected .dot-wave span {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: wave 1s infinite ease-in-out;
}

.simulate-btn.connected .dot-wave span:nth-child(2) { animation-delay: 0.15s; }
.simulate-btn.connected .dot-wave span:nth-child(3) { animation-delay: 0.3s; }

@keyframes wave {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.9; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.spinner-frame {
    display: inline-block;
    padding-left: 0.4rem;
    color: #7ee0ff;
    font-weight: 700;
    min-width: 12px;
}

.ecosystem-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.chip-strong {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero .cta-buttons {
    justify-content: flex-start;
}

.hero-checklist {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.hero-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--border-radius);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-panel {
    background: var(--white);
    color: var(--text-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(90deg, rgba(30,144,255,0.12), rgba(30,144,255,0.05));
    border-bottom: 1px solid var(--border-color);
}

.panel-title {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green { background: #2ecc71; }
.dot.yellow { background: #f1c40f; }
.dot.red { background: #e74c3c; }

.panel-body {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.panel-subtitle {
    font-weight: 700;
    color: var(--primary-color);
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.panel-list li {
    padding: 0.75rem 0.9rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.panel-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel-footnote {
    font-size: 0.95rem;
    color: var(--light-text);
}

.terminal-shell {
    background: #0d1117;
    color: #e6edf3;
    border-radius: var(--border-radius-md);
    border: 1px solid #1f2a3a;
    overflow: hidden;
    margin-top: 0.25rem;
    box-shadow: var(--shadow-lg);
}

.terminal-header {
    background: #161b22;
    padding: 0.6rem 0.85rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9rem;
    color: #7ee0ff;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #1f2a3a;
}

.terminal-body {
    padding: 1rem;
    min-height: 140px;
    max-height: 220px;
    overflow-y: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    background: radial-gradient(120% 80% at 10% 20%, rgba(30,144,255,0.12), rgba(13,17,23,0.96));
}

.terminal-line {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
    letter-spacing: 0.25px;
}

.terminal-line strong {
    color: #7ee0ff;
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header .badge {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--light-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.benefit-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover img {
    transform: scale(1.1);
}

.badge {
    display: inline-flex;
    padding: 0.4rem 0.85rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(30, 144, 255, 0.15);
}

.badge-soft {
    background: #f3f7ff;
    color: var(--primary-color);
    border-color: rgba(30, 144, 255, 0.25);
}

.product-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.product-copy {
    display: grid;
    gap: 1.5rem;
}

.timeline {
    display: grid;
    gap: 1.25rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.timeline-step {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(30, 144, 255, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: grid;
    gap: 1.25rem;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

.product-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    color: var(--light-text);
    font-size: 0.95rem;
}

.product-list {
    display: grid;
    gap: 1rem;
}

.product-list-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.product-list-item h4 {
    margin-bottom: 0.25rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(30, 144, 255, 0.1);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge {
    display: inline-flex;
    padding: 0.4rem 0.85rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(30, 144, 255, 0.15);
}

.badge-soft {
    background: #f3f7ff;
    color: var(--primary-color);
    border-color: rgba(30, 144, 255, 0.25);
}

.product-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.product-copy {
    display: grid;
    gap: 1.5rem;
}

.timeline {
    display: grid;
    gap: 1.25rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.timeline-step {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(30, 144, 255, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: grid;
    gap: 1.25rem;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

.product-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    color: var(--light-text);
    font-size: 0.95rem;
}

.product-list {
    display: grid;
    gap: 1rem;
}

.product-list-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.product-list-item h4 {
    margin-bottom: 0.25rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(30, 144, 255, 0.1);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.testimonials .section-lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--light-text);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem auto 1rem;
}

.metric-pill {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-color), #ff8a8a);
}

.testimonial-meta h3 {
    margin: 0;
    font-size: 1.2rem;
}

.testimonial-meta .role {
    color: var(--light-text);
    font-size: 0.95rem;
}

.star-rating {
    margin-left: auto;
    color: #f5a623;
    font-weight: 700;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-chip {
    background: rgba(30, 144, 255, 0.08);
    color: var(--text-color);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(30, 144, 255, 0.2);
    font-size: 0.95rem;
}

.highlight-chip.success {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.25);
}

.highlight-chip.warning {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.25);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1873CC);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern.svg');
    opacity: 0.1;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    position: relative;
}

.cta-section p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
}

.cta-section .btn {
    position: relative;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
}

.cta-section .btn:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero .cta-buttons {
        justify-content: center;
    }

    .hero-checklist li {
        justify-content: center;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .product-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .product-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-slider {
        padding: 1rem 0;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 2rem;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

} 




