@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

:root {
    --primary-green: #c4e456;
    --primary-green-dark: #a8c73d;
    --primary-green-light: #d9f076;
    --bg: #f8f6f0;
    --panel: #fdfcf8;
    --text: #2b2a28;
    --muted: #75706a;
    --border: #3b362f;
    --white-noise: #f5f3ed;
    --accent-orange: #ff6b35;
    --success: #25d366;
    --warning: #ffa726;
    --error: #ff5252;
    
    --base3: var(--bg);
    --base2: var(--panel);
    --base00: var(--text);
    --base1: var(--muted);
}

[data-theme="dark"] {
    --bg: #1a1a1a;
    --panel: #2d2d2d;
    --text: #e8e8e8;
    --muted: #a0a0a0;
    --border: #4a4a4a;
    --white-noise: #2a2a2a;
    --primary-green: #c4e456;
    --primary-green-dark: #a8c73d;
    --primary-green-light: #d9f076;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 228, 86, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

main {
    padding: 0 2rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-container {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    width: 320px;
    box-shadow: 5px -5px 0 -1px var(--primary-green), 5px -5px var(--text);
    position: relative;
    overflow: hidden;
}

.notification-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
}

.notification .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification .top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification .top-left i {
    color: var(--success);
    font-size: 20px;
}

.notification .top-left span {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification .time {
    font-size: 12px;
    color: var(--muted);
}

.notification .bottom .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.notification .bottom .message {
    font-size: 13px;
    color: var(--muted);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    position: sticky;
    top: 0;
    background: rgba(248, 246, 240, 0.95);
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 54, 47, 0.1);
}

.navbar .logo {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--text);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
    border: 2px solid var(--text);
    transition: all 0.3s ease;
}

.navbar .logo:hover {
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.theme-toggle:hover {
    background: var(--primary-green);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.cta-nav {
    background: var(--primary-green);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.cta-nav:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
}

.hero-phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    background: var(--text);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 8px -8px 0 -1px var(--primary-green), 8px -8px var(--text);
    border: 3px solid var(--text);
    position: relative;
    overflow: hidden;
}

.phone-header {
    background: var(--panel);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg);
    font-size: 12px;
    font-weight: 600;
}

.signal-battery {
    display: flex;
    gap: 4px;
    color: var(--muted);
}

.whatsapp-header {
    background: var(--primary-green);
    color: var(--text);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    align-items: center;
    gap: 12px;
}

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

.contact-details h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.status {
    font-size: 11px;
    opacity: 0.8;
}

.chat-actions {
    display: flex;
    gap: 16px;
    font-size: 18px;
}

.chat-container {
    background: linear-gradient(135deg, var(--bg) 0%, var(--white-noise) 100%);
    height: 450px;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    animation: messageSlide 0.3s ease-out;
}

.message-bubble.incoming {
    background: var(--panel);
    border: 1px solid var(--border);
    align-self: flex-start;
    box-shadow: 2px -2px 0 -1px var(--primary-green), 2px -2px var(--text);
}

.message-bubble.outgoing {
    background: var(--primary-green);
    color: var(--text);
    align-self: flex-end;
    box-shadow: 2px -2px 0 -1px var(--accent-orange), 2px -2px var(--text);
}

.feature-list-chat {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0;
}

.feature-list-chat li {
    margin: 4px 0;
    font-size: 12px;
}

.timestamp {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 8px 0;
}

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

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

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

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-input {
    background: var(--panel);
    border-radius: 0 0 20px 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
}

.chat-input input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text);
}

.chat-input i {
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.chat-input i:hover {
    color: var(--primary-green-dark);
}

.hero-content-alt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 228, 86, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green-dark);
    width: fit-content;
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--primary-green);
}

.hero-title-alt {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-hero-primary {
    background: var(--primary-green);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 16px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 4px -4px 0 -1px var(--bg), 4px -4px var(--text);
    font-family: inherit;
}

.btn-hero-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 6px -6px 0 -1px var(--accent-orange), 6px -6px var(--text);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 16px 24px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
    font-family: inherit;
}

.btn-hero-secondary:hover {
    background: var(--panel);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--primary-green), 5px -5px var(--text);
}

.hero-stats-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 14px 24px;
    border: 2px solid var(--text);
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text);
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

.btn-secondary {
    background: var(--panel);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green-dark);
    border: 2px solid var(--primary-green-dark);
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--primary-green-dark);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--text);
    border-color: var(--text);
    box-shadow: 5px -5px 0 -1px var(--bg), 5px -5px var(--text);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 0.5rem;
}

.stat:nth-child(2) .stat-number {
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 5px -5px 0 -1px var(--primary-green), 5px -5px var(--text);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    box-shadow: 8px -8px 0 -1px var(--accent-orange), 8px -8px var(--text);
    transform: translateY(-5px);
}

.floating-card.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
    border-left: 4px solid var(--primary-green);
}

.floating-card.card-3 {
    bottom: 50px;
    left: 100px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(196, 228, 86, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary-green);
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.card-content p {
    color: var(--primary-green-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    transition: width 0.3s ease;
}

.floating-card.card-3 .progress {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-green));
}

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

.flow-timeline {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    background: var(--primary-green);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.timeline-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.timeline-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step.step-right {
    grid-template-columns: 1fr 1fr;
}

.timeline-step.step-right .step-shape {
    order: 2;
}

.timeline-step.step-right .step-visual {
    order: 1;
}

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

.shape-hexagon {
    background: var(--panel);
    border: 3px solid var(--text);
    height: 280px;
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
    transition: all 0.3s ease;
}

.shape-diamond {
    background: var(--panel);
    border: 3px solid var(--text);
    box-shadow: 6px -6px 0 -1px var(--accent-orange), 6px -6px var(--text);
    transition: all 0.3s ease;
}

.shape-circle {
    background: var(--panel);
    border: 3px solid var(--text);
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
    transition: all 0.3s ease;
}

.shape-triangle {
    background: var(--panel);
    border: 3px solid var(--text);
    box-shadow: 6px -6px 0 -1px var(--accent-orange), 6px -6px var(--text);
    transition: all 0.3s ease;
}

.step-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    width: 90%;
}


.step-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-features span {
    font-size: 0.8rem;
    color: var(--primary-green-dark);
    font-weight: 500;
}

.step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-editor {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    width: 300px;
    box-shadow: 5px -5px 0 -1px var(--bg), 5px -5px var(--text);
    overflow: hidden;
}

.editor-toolbar {
    background: var(--bg);
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.tool-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-item.active {
    background: var(--primary-green);
    color: var(--text);
    border-color: var(--text);
}

.editor-canvas {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flow-node {
    background: var(--primary-green);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid var(--text);
    font-weight: 600;
    font-size: 12px;
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.flow-connector {
    width: 2px;
    height: 20px;
    background: var(--primary-green);
}

.mockup-code {
    background: var(--text);
    color: var(--bg);
    border-radius: 12px;
    width: 320px;
    overflow: hidden;
    box-shadow: 5px -5px 0 -1px var(--primary-green), 5px -5px var(--text);
}

.code-header {
    background: var(--panel);
    color: var(--text);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.code-dots {
    display: flex;
    gap: 4px;
}

.code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
}

.code-content {
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.4;
}

.mockup-phone-mini {
    background: var(--text);
    border-radius: 20px;
    padding: 12px;
    width: 200px;
    box-shadow: 4px -4px 0 -1px var(--primary-green), 4px -4px var(--text);
}

.phone-screen {
    background: var(--bg);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-demo {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    max-width: 80%;
}

.message-demo.incoming {
    background: var(--panel);
    border: 1px solid var(--border);
    align-self: flex-start;
}

.message-demo.outgoing {
    background: var(--primary-green);
    color: var(--text);
    align-self: flex-end;
}

.mockup-dashboard {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    width: 280px;
    padding: 16px;
    box-shadow: 4px -4px 0 -1px var(--bg), 4px -4px var(--text);
}

.dashboard-header {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 14px;
}

.dashboard-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-mini {
    flex: 1;
    text-align: center;
}

.stat-mini .number {
    display: block;
    font-weight: 700;
    color: var(--primary-green-dark);
    font-size: 16px;
}

.stat-mini .label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
}

.dashboard-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    transition: all 0.3s ease;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
    z-index: 10;
}

.api-layers {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.layers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: blobFloat 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: 60%;
    right: -5%;
    animation-delay: 7s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-green-light);
    bottom: 10%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.api-header-alt {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.api-tag {
    background: var(--accent-orange);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    border: 2px solid var(--text);
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.api-title {
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.api-description {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.api-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.api-layer {
    position: relative;
}

.layer-card {
    background: var(--panel);
    border: 3px solid var(--text);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
    position: relative;
    overflow: hidden;
}

.layer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--primary-green) transparent transparent;
    transition: all 0.3s ease;
}

.layer-card:hover::before {
    border-width: 0 50px 50px 0;
}

.layer-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 10px -10px 0 -1px var(--accent-orange), 10px -10px var(--text);
}

.layer-messages .layer-card {
    border-left: 6px solid var(--primary-green);
}

.layer-templates .layer-card {
    border-left: 6px solid var(--accent-orange);
}

.layer-webhooks .layer-card {
    border-left: 6px solid var(--primary-green-light);
}

.layer-analytics .layer-card {
    border-left: 6px solid var(--warning);
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.layer-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
    transition: all 0.3s ease;
}

.layer-templates .layer-icon {
    background: var(--accent-orange);
}

.layer-webhooks .layer-icon {
    background: var(--primary-green-light);
}

.layer-analytics .layer-icon {
    background: var(--warning);
}

.layer-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.message-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.msg-example {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.msg-example:hover {
    background: var(--primary-green);
    color: var(--text);
    border-color: var(--text);
    transform: translateY(-3px);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.msg-example i {
    font-size: 18px;
}

.msg-example span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.template-item {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.template-type {
    background: var(--accent-orange);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid var(--text);
}

.template-content {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 8px;
}

.template-status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.webhook-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.webhook-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.webhook-icon {
    background: var(--primary-green-light);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid var(--text);
}

.webhook-step span {
    font-size: 10px;
    text-align: center;
    color: var(--muted);
    font-weight: 500;
}

.webhook-arrow {
    color: var(--primary-green-dark);
    font-weight: bold;
    font-size: 16px;
}

.analytics-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.metric-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    min-width: 80px;
}

.metric-bar {
    flex: 1;
    height: 16px;
    background: var(--bg);
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 8px;
    transition: width 0.8s ease;
    position: relative;
}

.metric-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
}

.api-code-section {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.code-tabs {
    display: flex;
    background: var(--panel);
    border: 2px solid var(--text);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg);
    color: var(--muted);
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: var(--primary-green);
    color: var(--text);
    font-weight: 600;
}

.tab:hover:not(.active) {
    background: var(--panel);
    color: var(--text);
}

.code-examples {
    background: var(--text);
    color: var(--bg);
    border: 2px solid var(--text);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
    position: relative;
}

.code-example {
    display: none;
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-x: auto;
}

.code-example.active {
    display: block;
}

.code-example pre {
    margin: 0;
}

.code-example code {
    color: var(--bg);
}

.testimonials-stack {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-stack {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    background: var(--panel);
    border: 3px solid var(--text);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px -8px 0 -1px var(--primary-green), 8px -8px var(--text);
}

.card-stack-1 {
    z-index: 3;
    transform: translateX(-50%) translateY(0px) rotate(0deg);
}

.card-stack-2 {
    z-index: 2;
    transform: translateX(-50%) translateY(20px) rotate(-2deg) scale(0.95);
    opacity: 0.8;
    box-shadow: 6px -6px 0 -1px var(--accent-orange), 6px -6px var(--text);
}

.card-stack-3 {
    z-index: 1;
    transform: translateX(-50%) translateY(40px) rotate(1deg) scale(0.9);
    opacity: 0.6;
    box-shadow: 4px -4px 0 -1px var(--warning), 4px -4px var(--text);
}

.testimonial-card:hover {
    transform: translateX(-50%) translateY(-10px) rotate(0deg) scale(1.02) !important;
    z-index: 10 !important;
    opacity: 1 !important;
    box-shadow: 12px -12px 0 -1px var(--primary-green), 12px -12px var(--text) !important;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.company-logo {
    background: var(--primary-green);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.company-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
}

.company-info span {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: var(--warning);
    font-size: 16px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px 0;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    background: var(--accent-orange);
    color: var(--text);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--text);
}

.author-details strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}

.author-details span {
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-stats .stat-item {
    text-align: center;
}

.testimonial-stats .stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 4px;
}

.testimonial-stats .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.nav-btn {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    font-size: 18px;
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.nav-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 4px -4px 0 -1px var(--bg), 4px -4px var(--text);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.pricing-creative {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.pricing-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    border-radius: 50% 20% 50% 20%;
    top: 10%;
    left: 5%;
    animation: morphShape 15s infinite ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-orange);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 60%;
    right: 10%;
    animation: morphShape 18s infinite ease-in-out reverse;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--primary-green-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    left: 20%;
    animation: morphShape 20s infinite ease-in-out;
}

@keyframes morphShape {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.9);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 8px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.toggle-label {
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--muted);
}

.toggle-label.active {
    background: var(--primary-green);
    color: var(--text);
    font-weight: 600;
}

.discount {
    background: var(--accent-orange);
    color: var(--text);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 13px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: var(--primary-green);
}

.toggle-switch input:checked + label:before {
    transform: translateX(24px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--panel);
    border: 3px solid var(--text);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 8px -8px 0 -1px var(--accent-orange), 8px -8px var(--text);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 10px -10px 0 -1px var(--accent-orange), 10px -10px var(--text);
}

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

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.featured-badge {
    background: var(--primary-green) !important;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.plan-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.plan-header p {
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.currency {
    font-size: 1.2rem;
    color: var(--muted);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--muted);
}

.custom-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--primary-green-dark);
    font-size: 16px;
    flex-shrink: 0;
}

.plan-cta {
    width: 100%;
    background: var(--primary-green);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
    font-family: inherit;
}

.plan-cta:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

.featured-cta {
    background: var(--accent-orange) !important;
}

.featured-cta:hover {
    background: var(--warning) !important;
}

.pricing-guarantee {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 4px -4px 0 -1px var(--bg), 4px -4px var(--text);
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    background: var(--success);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
}

.guarantee-content p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.faq-asymmetric {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.faq-decoration {
    position: absolute;
    opacity: 0.03;
}

.deco-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 5%;
    right: 10%;
    animation: float 12s infinite ease-in-out;
}

.deco-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-orange);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    bottom: 20%;
    left: 5%;
    animation: float 15s infinite ease-in-out reverse;
}

.deco-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-green-light);
    border-radius: 50% 20% 50% 20%;
    top: 50%;
    left: 80%;
    animation: float 18s infinite ease-in-out;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.faq-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.help-card {
    background: var(--panel);
    border: 3px solid var(--text);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 6px -6px 0 -1px var(--primary-green), 6px -6px var(--text);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px -8px 0 -1px var(--accent-orange), 8px -8px var(--text);
}

.help-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.help-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.help-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.help-cta {
    background: var(--accent-orange);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
    font-family: inherit;
    font-size: 14px;
}

.help-cta:hover {
    background: var(--warning);
    transform: translateY(-2px);
    box-shadow: 5px -5px 0 -1px var(--bg), 5px -5px var(--text);
}

.stats-card {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 4px -4px 0 -1px var(--bg), 4px -4px var(--text);
}

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

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.stat-value {
    font-weight: 700;
    color: var(--primary-green-dark);
    font-size: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 3px -3px 0 -1px var(--bg), 3px -3px var(--text);
}

.faq-item:hover {
    box-shadow: 5px -5px 0 -1px var(--primary-green), 5px -5px var(--text);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 5px -5px 0 -1px var(--accent-orange), 5px -5px var(--text);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(196, 228, 86, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.faq-toggle {
    background: var(--primary-green);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid var(--text);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-toggle i {
    position: absolute;
    transition: all 0.3s ease;
}

.faq-toggle .ph-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-toggle .ph-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .ph-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .ph-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-item.active .faq-toggle {
    background: var(--accent-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.answer-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(196, 228, 86, 0.1);
    border: 1px solid var(--primary-green);
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--primary-green);
    color: var(--text);
    transform: translateY(-1px);
}

.message-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-tag {
    background: var(--primary-green);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--text);
}

.security-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--success);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.integration-list, .support-channels, .plan-flexibility {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integration-item, .support-item, .flex-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(196, 228, 86, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-green);
}

.integration-item i, .support-item i, .flex-item i {
    color: var(--primary-green-dark);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.integration-item span, .support-item span, .flex-item span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.title-container {
    text-align: center;
    margin-bottom: 80px;
}

.title-container h2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--muted);
    opacity: 0.3;
}

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

.feature-card {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 5px -5px 0 -1px var(--bg), 5px -5px var(--text);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent var(--primary-green) transparent transparent;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    border-width: 0 40px 40px 0;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px -8px 0 -1px var(--bg), 8px -8px var(--text);
}

.feature-card:nth-child(even) {
    border-left: 4px solid var(--accent-orange);
}

.feature-icon {
    color: var(--primary-green-dark);
    display: flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(196, 228, 86, 0.1);
    border-radius: 16px;
    border: 2px solid var(--primary-green);
}

.feature-card:nth-child(even) .feature-icon {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--primary-green-dark);
    font-size: 16px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    background: var(--primary-green);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid var(--text);
    box-shadow: 2px -2px 0 -1px var(--bg), 2px -2px var(--text);
}

.contact-method:nth-child(2) .method-icon {
    background: var(--success);
}

.method-content h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-content a,
.method-content span {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--primary-green-dark);
}

.contact-form {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 5px -5px 0 -1px var(--bg), 5px -5px var(--text);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(196, 228, 86, 0.1);
}

.footer {
    background: var(--panel);
    border-top: 2px solid var(--border);
    margin-top: 100px;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

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

.footer-logo .logo {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--text);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--text);
}

.footer-logo span {
    font-weight: 600;
    color: var(--text);
}

.footer-section h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green-dark);
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}


/* ============ TABLET RESPONSIVITÉ (768px) ============ */
@media (max-width: 1024px) {
    /* Timeline adjustments */
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .timeline-step.step-right .step-shape,
    .timeline-step.step-right .step-visual {
        order: unset;
    }
    
    .step-shape {
        min-height: 250px;
    }
    
    .shape-hexagon, .shape-diamond, .shape-circle, .shape-triangle {
        width: 220px;
        height: 220px;
    }
    
    /* API showcase grid */
    .api-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pricing cards */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    /* FAQ container */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-visual {
        position: static;
        flex-direction: row;
        justify-content: center;
    }
    
    /* Testimonials */
    .testimonial-card {
        width: 400px;
    }
}

@media (max-width: 768px) {
    main {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .right-section {
        gap: 0.5rem;
    }
    
    .cta-nav {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* ===== HERO SECTION ===== */
    #hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
        padding: 3rem 0;
    }
    
    .phone-frame {
        width: 280px;
        height: 550px;
        padding: 16px;
    }
    
    .chat-container {
        height: 400px;
        padding: 12px;
    }
    
    .hero-title-alt {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .hero-stats-alt {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    /* ===== TIMELINE SECTION ===== */
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .timeline-container {
        gap: 80px;
    }
    
    .step-shape {
        min-height: 200px;
    }
    
    .shape-hexagon, .shape-diamond, .shape-circle, .shape-triangle {
        width: 180px;
        height: 180px;
    }
    
    .step-content {
        width: 85%;
        padding: 15px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .mockup-editor, .mockup-code {
        width: 260px;
    }
    
    .mockup-phone-mini {
        width: 160px;
    }
    
    .mockup-dashboard {
        width: 240px;
    }
    
    /* ===== API SECTION ===== */
    .api-title {
        font-size: 2.8rem;
    }
    
    .api-description {
        font-size: 1.1rem;
    }
    
    .layer-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .layer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .layer-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .message-examples {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .webhook-flow {
        flex-direction: column;
        gap: 12px;
    }
    
    .webhook-arrow {
        transform: rotate(90deg);
    }
    
    .api-code-section {
        margin-top: 40px;
    }
    
    .code-tabs {
        flex-direction: column;
    }
    
    .tab {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .code-example {
        padding: 16px;
        font-size: 11px;
    }
    
    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials-title {
        font-size: 2.4rem;
    }
    
    .testimonial-stack {
        height: 450px;
    }
    
    .testimonial-card {
        width: 320px;
        padding: 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .rating-stars {
        align-self: flex-end;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonials-navigation {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    /* ===== PRICING SECTION ===== */
    .pricing-title {
        font-size: 2.6rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .toggle-label {
        padding: 6px 12px;
    }
    
    .pricing-cards {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .plan-price .amount {
        font-size: 2.4rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* ===== FAQ SECTION ===== */
    .faq-title {
        font-size: 2.6rem;
    }
    
    .faq-visual {
        flex-direction: column;
    }
    
    .help-card {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .answer-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .message-types, .security-badges {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    /* ===== GENERAL ===== */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        margin: 60px 0;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
}

/* ============ MOBILE RESPONSIVITÉ (480px) ============ */
@media (max-width: 480px) {
    main {
        padding: 0 0.8rem;
    }
    
    .navbar {
        padding: 0.8rem;
    }
    
    .navbar .logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cta-nav {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    /* ===== HERO SECTION ===== */
    .phone-frame {
        width: 260px;
        height: 500px;
        padding: 14px;
    }
    
    .chat-container {
        height: 350px;
        padding: 10px;
    }
    
    .message-bubble {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hero-title-alt {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 12px 16px;
        font-size: 14px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* ===== TIMELINE SECTION ===== */
    .timeline-title {
        font-size: 2rem;
    }
    
    .timeline-subtitle {
        font-size: 1rem;
    }
    
    .timeline-container {
        gap: 60px;
    }
    
    .shape-hexagon, .shape-diamond, .shape-circle, .shape-triangle {
        width: 150px;
        height: 150px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .step-features span {
        font-size: 0.75rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .mockup-editor, .mockup-code {
        width: 220px;
    }
    
    .mockup-phone-mini {
        width: 140px;
    }
    
    .mockup-dashboard {
        width: 200px;
    }
    
    .timeline-step::before {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    /* ===== API SECTION ===== */
    .api-title {
        font-size: 2.2rem;
    }
    
    .api-description {
        font-size: 1rem;
    }
    
    .layer-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .layer-header h3 {
        font-size: 1.2rem;
    }
    
    .layer-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .message-examples {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .msg-example {
        padding: 10px 6px;
    }
    
    .template-item {
        padding: 12px;
    }
    
    .webhook-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .webhook-step span {
        font-size: 9px;
    }
    
    .code-example {
        padding: 12px;
        font-size: 10px;
    }
    
    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-stack {
        height: 400px;
    }
    
    .testimonial-card {
        width: 280px;
        padding: 20px;
    }
    
    .company-logo {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .company-info h4 {
        font-size: 1rem;
    }
    
    .rating-stars i {
        font-size: 14px;
    }
    
    .testimonial-card blockquote {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .testimonial-stats .stat-value {
        font-size: 1.2rem;
    }
    
    .testimonial-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* ===== PRICING SECTION ===== */
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .billing-toggle {
        padding: 8px;
        gap: 6px;
    }
    
    .toggle-label {
        padding: 4px 10px;
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .plan-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .plan-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
    }
    
    .plan-price .amount {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .plan-cta {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .guarantee-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .guarantee-content h4 {
        font-size: 1rem;
    }
    
    /* ===== FAQ SECTION ===== */
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .help-card h4 {
        font-size: 1.1rem;
    }
    
    .help-cta {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .action-link {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .type-tag, .security-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .integration-item, .support-item, .flex-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    /* ===== GÉNÉRAL ===== */
    .section {
        margin: 40px 0;
    }
    
    .section-tag {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .feature-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}