.hero-section {
    background: radial-gradient(circle at top left, #0a7c63 0%, #0d1414 60%);
    color: #ffffff;
    padding-bottom: 100px;
}


.demo-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 10px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.mockup-window {
    background: white;
    border-radius: 18px;
    overflow: hidden;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.grid-box {
    height: 95px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10e7c4, #15c4a3);
}

.reason-tag {
    grid-column: span 3;
    background: #10e7c4;
    padding: 8px 14px;
    border-radius: 14px;
    color: #0d1414;
    font-weight: 500;
}
/* Mockup container */
.api-mockup {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* Mac window circles */
.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

/* API endpoint styling */
.api-endpoint {
    background: #f2f7f7;
    padding: 10px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
}

.api-endpoint .method {
    background: #0a7c63;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
}

.api-endpoint .route {
    font-weight: 500;
    color: #0d1414;
}

/* Test list */
.test-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.test-list li {
    background: linear-gradient(135deg, #10e7c4, #15c4a3);
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    color: #0d1414;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.test-list li:hover {
    transform: translateX(5px);
}
/* Container */
.env-rotate {
    overflow: hidden;
    height: 20px;
    width: 120px;
    position: relative;
    color: #0d1414;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: right;
}

/* List of rotating environments */
.env-rotate span {
    position: absolute;
    width: 100%;
    left: 0;
    animation: rotateEnv 8s linear infinite;
    opacity: 0;
}

/* Each environment appears à un moment */
.env-rotate span:nth-child(1) { animation-delay: 0s; }
.env-rotate span:nth-child(2) { animation-delay: 2s; }
.env-rotate span:nth-child(3) { animation-delay: 4s; }
.env-rotate span:nth-child(4) { animation-delay: 6s; }

@keyframes rotateEnv {
    0%     { opacity: 0; transform: translateY(10px); }
    10%    { opacity: 1; transform: translateY(0px); }
    25%    { opacity: 1; transform: translateY(0px); }
    35%    { opacity: 0; transform: translateY(-10px); }
    100%   { opacity: 0; }
}
/* Dropdown container */
.env-dropdown {
    width: 150px;
    padding: 12px 10px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

/* Environments items */
.env-item {
    padding: 7px 10px;
    font-weight: 600;
    color: #0d1414;
    position: relative;
    z-index: 2;
}

/* Highlight cursor */
.cursor {
    position: absolute;
    top: 12px; /* QA */
    left: 8px;
    width: 130px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10e7c4, #15c4a3);
    z-index: 1;
    animation: envSlide 8s infinite ease-in-out;
}

/* Animation steps */
@keyframes envSlide {
    0%   { top: 12px; }     /* QA */
    25%  { top: 47px; }     /* Stage */
    50%  { top: 82px; }     /* Staging */
    75%  { top: 117px; }    /* Dev */
    100% { top: 12px; }     /* Return QA */
}

/* POST tag styling */
.method.post {
    background: #2d6f63;
    color: white;
    padding: 6px 12px;
    font-weight: 700;
    border-radius: 8px;
}


/* Container visible */
.test-scroll-container {
    height: 120px;              /* visible area */
    overflow: hidden;
    position: relative;
}

/* Scrolling content */
.test-scroll {
    display: flex;
    flex-direction: column;
    animation: autoScroll 8s linear infinite;
}

/* Individual test item */
.test-item {
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    gap: 10px;
    background: #0d1414;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Passed / Failed colors */
.test-item.passed {
    border-left: 6px solid #14a381; /* green */
}

.test-item.failed {
    border-left: 6px solid #e53935; /* red */
}

/* Status dot */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.passed .status-dot {
    background: #14a381;
}

.failed .status-dot {
    background: #e53935;
}

/* Auto scroll animation */
@keyframes autoScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-60%); }
}

.source-tag {
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
    opacity: 0.9;
}

/* Green tag for API Definition */
.source-tag.api {
    background: rgba(20, 163, 129, 0.18);
    color: #14a381;
}

/* Grey-blue tag for Document */
.source-tag.doc {
    background: rgba(180, 195, 210, 0.17);
    color: #cfd8dc;
}

/* PREMIUM BLACK NAVBAR */
.navbar {
    background: #000000 !important; /* vrai noir */
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.55);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Branding */
.navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

/* Navigation links */
.nav-link {
    color: #d0d7d7 !important;
    font-weight: 500;
    margin-left: 26px;
    opacity: 0.85;
    transition: 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: #10e7c4 !important;
    opacity: 1;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #10e7c4;
    border-radius: 4px;
    transition: width 0.25s ease;
}

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

/* CTA Button */
.btn-primary {
    background: #0a7c63 !important;
    border: none !important;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 14px rgba(16, 231, 196, 0.2);
    transition: 0.22s ease;
}

.btn-primary:hover {
    background: #15c4a3 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(16, 231, 196, 0.3);
}


/* ------------------ TOP ROTATING BANNER ------------------ */
.top-banner {
    background: #0a7c63;
    color: white;
    text-align: center;
    padding: 9px 0;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}

/* Container of rotating messages */
.banner-rotate {
    height: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: rotateBanner 6s infinite ease-in-out;
}

/* Individual message */
.banner-rotate span {
    padding: 0;
    line-height: 20px;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    animation: fadeLoop 6s infinite ease-in-out;
}

/* Timing for each message */
.banner-rotate span:nth-child(1) { animation-delay: 0s; }
.banner-rotate span:nth-child(2) { animation-delay: 3s; }

/* Fade in/out animation */
@keyframes fadeLoop {
    0%   { opacity: 0; transform: translateY(8px); }
    10%  { opacity: 1; transform: translateY(0); }
    40%  { opacity: 1; }
    50%  { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 0; }
}

/* Slide container animation (up/down effect) */
@keyframes rotateBanner {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner {
        font-size: 0.85rem;
    }
}
.logo-block {
    display: flex;
    align-items: center;
}

.logo-dots {
    display: flex;
    gap: 2px; /* espace entre les trois points */
    margin-right: 4px; /* rapproche du texte */
    margin-top: 2px; /* alignement parfait avec la baseline du texte */
}

.logo-dots .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ffffff;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff !important;
}


/* ================================
   PREMIUM MODULES SECTION
   ================================ */

.modules-section {
    background: #000000;
    padding: 90px 0;
    color: white;
}

.modules-title {
    font-size: 2.3rem;
    letter-spacing: -0.5px;
    color: white;
}

.modules-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
}

/* Module Cards */
.module-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px 25px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: #0a7c63;
    box-shadow: 0 12px 28px rgba(10,124,99,0.25);
}

/* Icon styles */
.module-icon {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
}

/* Colors per module */
.module-icon.api {
    background: linear-gradient(135deg, #0a7c63, #15c4a3);
}

.module-icon.ui {
    background: linear-gradient(135deg, #14a381, #10e7c4);
}

.module-icon.security {
    background: linear-gradient(135deg, #ea4335, #ff6b6b);
}

/* Text */
.module-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.module-text {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.45;
}
/* Make all 3 modules exactly the same height */
.module-equal {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ensure descriptions fill space evenly */
.module-text {
    flex-grow: 1;
}

.demo-section {
    background: #000;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.demo-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.demo-text {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ENVIRONMENT ANIMATION */
.env-animation {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    overflow: hidden;
}

.env-item {
    padding: 8px 18px;
    background: #0a7c63;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    animation: envFade 6s infinite;
}

/* Delay each badge */
.env-item:nth-child(1) { animation-delay: 0s; }
.env-item:nth-child(2) { animation-delay: 1s; }
.env-item:nth-child(3) { animation-delay: 2s; }
.env-item:nth-child(4) { animation-delay: 3s; }

@keyframes envFade {
    0%   { opacity: 0; transform: translateY(10px); }
    15%  { opacity: 1; transform: translateY(0); }
    40%  { opacity: 1; }
    60%  { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; }
}

/* VIDEO PLAYER WRAPPER */
.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 380px;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .video-wrapper iframe {
        height: 260px;
    }
    .demo-title {
        font-size: 2rem;
    }
}
.env-badge-rotate {
    display: inline-block;
    height: 40px;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    font-size: 1rem;
}

.env-badge-rotate span {
    display: block;
    padding: 8px 20px;
    background: #0a7c63;
    color: white;
    border-radius: 50px;
    margin-bottom: 8px;
    animation: rotateEnvBadge 6s infinite;
}

.env-badge-rotate span:nth-child(1) { animation-delay: 0s; }
.env-badge-rotate span:nth-child(2) { animation-delay: 1.5s; }
.env-badge-rotate span:nth-child(3) { animation-delay: 3s; }
.env-badge-rotate span:nth-child(4) { animation-delay: 4.5s; }

@keyframes rotateEnvBadge {
    0%   { opacity: 0; transform: translateY(15px); }
    10%  { opacity: 1; transform: translateY(0); }
    35%  { opacity: 1; }
    50%  { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 0; }
}

/* ===============================
   PREMIUM TITLE ANIMATION
   =============================== */
.mega-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #10e7c4, #0a7c63, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: titleFadeIn 1.2s ease forwards,
               titleShimmer 6s infinite linear;
    opacity: 0;
    transform: translateY(20px);
}

/* Fade + slide intro */
@keyframes titleFadeIn {
    0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
    60%  { opacity: 1; transform: translateY(0) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Moving gradient shimmer */
@keyframes titleShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Underline glow */
.mega-title::after {
    content: "";
    margin-top: 10px;
    width: 120px;
    height: 4px;
    display: block;
    border-radius: 4px;

    background: linear-gradient(90deg, #10e7c4, #0a7c63);
    opacity: 0;
    animation: underlineAppear 1.4s ease forwards 0.6s;
}

@keyframes underlineAppear {
    0%   { width: 0; opacity: 0; }
    100% { width: 120px; opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mega-title {
        font-size: 2rem;
        text-align: center;
    }

    .mega-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===============================
   ULTRA-PREMIUM ANIMATED TITLE
   =============================== */

.mega-animated {
    display: block;
    position: relative;
    height: 100px; /* Réduit pour ton layout */
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 10; /* Force l’affichage */
}


/* Phrases */
.mega-animated .phrase {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, #ffffff, #10e7c4, #0a7c63, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyclePhrase 6s infinite;
}

/* 1ère phrase */
.mega-animated .phrase:nth-child(1) {
    animation-delay: 0s;
}

/* 2ème phrase */
.mega-animated .phrase:nth-child(2) {
    animation-delay: 3s;
}

/* Keyframes: fade + slide + subtle scale */
@keyframes cyclePhrase {
    0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
    10%  { opacity: 1; transform: translateY(0) scale(1.03); }
    25%  { opacity: 1; transform: translateY(0) scale(1); }
    40%  { opacity: 0; transform: translateY(-20px) scale(0.95); }
    100% { opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mega-animated {
        font-size: 2rem;
        height: 60px;
        text-align: center;
    }
}

/* Section Background */
.impact-section {
    background: #000;
    padding: 90px 0;
    color: white;
    font-family: "Inter", sans-serif;
}

/* Title */
.impact-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Subtitle */
.impact-subtitle {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-top: 10px;
}

/* Box Wrapper */
.impact-box {
    padding: 25px 10px;
    transition: 0.3s ease;
}

/* Animated hover (premium subtle scale) */
.impact-box:hover {
    transform: translateY(-6px);
}

/* Big numbers */
.impact-value {
    font-size: 2.3rem;
    font-weight: 800;
    color: #10e7c4;
    margin-bottom: 10px;
    letter-spacing: -1px;
    animation: fadeUp 1.4s ease forwards;
}

/* Label */
.impact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e5e7eb;
}

/* Description */
.impact-desc {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Smooth fade-up animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Section background */
.steps-section {
    background: #0c1111;
    padding: 110px 0;
    color: white;
    font-family: "Inter", sans-serif;
}

/* Title */
.steps-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 70px;
}

/* Wrapper for steps */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

/* Horizontal glowing line */
.steps-wrapper::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #10e7c4, transparent);
    opacity: 0.6;
}

/* Step container */
.step-box {
    text-align: center;
    width: 20%;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

/* Step circle (premium glow effect) */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px auto;

    background: radial-gradient(circle, #10e7c4 0%, #0a7c63 90%);
    box-shadow: 0 0 25px rgba(16, 231, 196, 0.35);
    color: #000;
    font-weight: 800;
    font-size: 1.4rem;

    display: flex;
    justify-content: center;
    align-items: center;

    animation: pulseGlow 3s infinite ease-in-out;
}

/* Glow animation */
@keyframes pulseGlow {
    0%   { box-shadow: 0 0 22px rgba(16, 231, 196, 0.25); transform: scale(1); }
    50%  { box-shadow: 0 0 34px rgba(16, 231, 196, 0.45); transform: scale(1.05); }
    100% { box-shadow: 0 0 22px rgba(16, 231, 196, 0.25); transform: scale(1); }
}

/* Step title */
.step-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Step description */
.step-desc {
    font-size: 0.96rem;
    opacity: 0.75;
    line-height: 1.45;
    max-width: 220px;
    margin: 0 auto;
}

/* Responsive layout */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .steps-wrapper::before {
        display: none;
    }

    .step-box {
        width: 100%;
    }
}
/* SECTION BACKGROUND */
.industries-section {
    background: #0b0f0f;
    padding: 120px 0;
    color: white;
    font-family: "Inter", sans-serif;
}

/* TITLE */
.industries-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.95);
    letter-spacing: -1px;
}

.industries-subtitle {
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.65;
}

/* INDUSTRIES GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.85;
    transition: 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-6px);
    opacity: 1;
}

/* ICON STYLE */
.icon {
    width: 42px;
    height: 42px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* ICONS — tu peux remplacer les URLs par les tiens */
.i-finance { background-image: url('https://img.icons8.com/ios-filled/50/10e7c4/bank.png'); }
.i-logistics { background-image: url('https://img.icons8.com/ios-filled/50/10e7c4/delivery.png'); }
.i-insurance { background-image: url('https://img.icons8.com/ios-filled/50/10e7c4/security-checked.png'); }
.i-saas { background-image: url('https://img.icons8.com/ios-filled/50/10e7c4/cloud.png'); }

/* STATS GRID */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 60px;
}

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

/* NUMBER */
.stat-number {
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #10e7c4, #0a7c63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.2px;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

/* LABEL */
.stat-label {
    margin-top: 12px;
    opacity: 0.65;
    font-size: 1.1rem;
}

/* Fade-up animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        flex-direction: column;
        gap: 50px;
    }
}
.comparison-section {
    background: #0b0f0f;
    color: #fff;
    padding: 100px 0;
    font-family: "Inter", sans-serif;
}

.comparison-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.comp-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 18px 40px;
    background: linear-gradient(90deg, #15c4a3, #0a7c63);
    border-radius: 18px 18px 0 0;
    font-weight: 700;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 22px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.25s ease;
}

.comp-row:hover {
    background: rgba(10, 124, 99, 0.08);
}

.feature {
    font-weight: 600;
    opacity: 0.9;
}

.col {
    opacity: 0.75;
}

.col.fade {
    color: rgb(250, 245, 245);
}

.col.highlight {
    color: #10e7c4;
    font-weight: 600;
}

.highlight {
    color: #10e7c4;
}

/* Green check icon */
.check {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    background: url('https://img.icons8.com/fluency-systems-filled/48/10e7c4/checkmark.png') no-repeat center/contain;
}

.comparison-footer {
    margin-top: 30px;
    font-size: 1.15rem;
    opacity: 0.85;
}

/* FOOTER PREMIUM --------------------------------------------------- */

.footer {
    background: #05080a;
    padding: 80px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Social Buttons */
.footer-socials {
    display: flex;
    gap: 14px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: linear-gradient(135deg, #10e7c4, #0a7c63);
    border-color: #10e7c4;
    transform: translateY(-3px);
    color: #0d1414;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #10e7c4;
    padding-left: 4px;
}

/* Bottom Row */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

:root {
    --black: #0d1414;
    --card-bg: #111c1c;
    --white: #ffffff;
    --green: #0a7c63;
}

/* SECTION */
.pricing-section {
    background: var(--black);
    color: var(--white);
}

/* TITRES */
.pricing-title {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 700;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* CARDS */
.pricing-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 44px 34px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
}

/* HIGHLIGHT PRO */
.pricing-card.featured {
    border: 2px solid var(--green);
    box-shadow: 0 0 0 6px rgba(10, 124, 99, 0.35);
}

/* PLAN NAME */
.plan-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* PRICE */
.plan-price {
    color: var(--green);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 34px;
}

.plan-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

/* FEATURES */
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 38px;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* BUTTONS */
.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    font-weight: 600;
    transition: all 0.25s ease;
}

.pricing-btn:hover {
    background: var(--green);
    color: var(--white);
}

.pricing-btn.primary {
    background: var(--green);
    color: var(--white);
}
/* === Animated screenshots === */

.screenshots-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16 / 10;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1414;
}

.screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 0.6s ease,
        transform 0.8s ease;
}

.screenshot.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* =============================
   HERO TITLE REFINED STYLE
   ============================= */

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 680px;
    position: relative;

    color: #ffffff;

    /* subtle fade-in */
    opacity: 0;
    transform: translateY(15px);
    animation: heroAppear 0.9s ease forwards;
}

/* subtle appearance animation */
@keyframes heroAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern accent underline */
.hero-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 4px;
    margin-top: 18px;
    border-radius: 4px;

    background: linear-gradient(90deg, #10e7c4, #0a7c63);
    box-shadow: 0 0 14px rgba(16, 231, 196, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        margin: 0 auto;
    }

    .hero-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}
/* =============================
   HERO SUBTITLE PREMIUM
   ============================= */

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 640px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: -0.2px;

    opacity: 0;
    transform: translateY(10px);
    animation: subtitleAppear 1s ease forwards 0.3s;
}

@keyframes subtitleAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium stat highlight */
.highlight-stat {
    font-weight: 700;
    color: #10e7c4;
    letter-spacing: -0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.05rem;
        text-align: center;
        margin: 0 auto;
    }
}
/* ===============================
   STACKED PREMIUM ANIMATION
   =============================== */

.stacked-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 500px;
    margin: auto;
}

/* Base style for images */
.stack-img {
    position: absolute;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    opacity: 0;
    transform: scale(0.96) translateY(20px);
}

/* Layer positioning like your first image */
.img-1 {
    z-index: 1;
}

.img-2 {
    width: 85%;
    right: 0;
    bottom: -30px;
    z-index: 2;
}

.img-3 {
    width: 75%;
    right: -40px;
    bottom: -80px;
    z-index: 3;
}

/* ===============================
   ANIMATION SEQUENCE
   =============================== */

/* First image */
.img-1 {
    animation: show1 9s infinite;
}

/* Second image */
.img-2 {
    animation: show2 9s infinite;
}

/* Third image */
.img-3 {
    animation: show3 9s infinite;
}

@keyframes show1 {
    0%   { opacity: 0; transform: scale(0.96) translateY(20px); }
    8%   { opacity: 1; transform: scale(1) translateY(0); }
    60%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes show2 {
    0%   { opacity: 0; }
    20%  { opacity: 0; }
    28%  { opacity: 1; transform: scale(1) translateY(0); }
    60%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes show3 {
    0%   { opacity: 0; }
    35%  { opacity: 0; }
    45%  { opacity: 1; transform: scale(1) translateY(0); }
    60%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { opacity: 0; }
}
/* ================================
   AI TOOL-GROUNDED SECTION
   ================================ */

.grounded-section {
    background: #050a0a;
    color: white;
    padding: 110px 0;
}

.grounded-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #10e7c4, #0a7c63, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grounded-subtitle {
    opacity: 0.75;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* SOURCE CARD */
.source-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.source-header {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

/* Animated scroll */
.source-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollSources 12s linear infinite;
}

@keyframes scrollSources {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-40%); }
}

.source-item {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #0d1414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: 0.3s ease;
}

.source-item:hover {
    transform: translateX(6px);
}

.source-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(16,231,196,0.15);
    color: #10e7c4;
}

/* INTELLIGENCE CARD */
.intelligence-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(12px);
}

.intelligence-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
}

.flow-step {
    padding: 10px 18px;
    border-radius: 50px;
    background: #0a7c63;
    animation: pulseFlow 3s infinite;
}

.highlight-step {
    background: linear-gradient(135deg, #10e7c4, #0a7c63);
    color: #000;
    font-weight: 700;
}

.flow-arrow {
    opacity: 0.6;
}

@keyframes pulseFlow {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.intelligence-description {
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

.grounded-footer {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.accent {
    color: #10e7c4;
    margin-left: 8px;
}



/* ======================================
   LAYERED STACK ARCHITECTURE
   ====================================== */

.stack-section {
    background: #000;
    padding: 120px 0;
    color: white;
}

.stack-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.stack-subtitle {
    max-width: 720px;
    margin: 15px auto 60px auto;
    opacity: 0.7;
    font-size: 1.1rem;
}

/* STACK WRAPPER */
.stack-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BASE LAYER STYLE */
.stack-layer {
    width: 100%;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: -20px; /* overlapping effect */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    position: relative;
}

/* =========================
   API CORE (BOTTOM / BIG)
   ========================= */

.api-layer {
    background: linear-gradient(
        135deg,
        rgba(10,124,99,0.35),
        rgba(10,124,99,0.12)
    );
    border: 2px solid #0a7c63;
    box-shadow: 0 0 60px rgba(10,124,99,0.35);
    z-index: 3;
}

.api-layer h3 {
    font-size: 1.8rem;
    color: #10e7c4;
    margin-bottom: 15px;
}

/* =========================
   SECURITY (MIDDLE)
   ========================= */

.security-layer {
    background: rgba(255,255,255,0.06);
    width: 90%;
    z-index: 2;
}

.security-layer h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

/* =========================
   UI (TOP / LIGHTER)
   ========================= */

.ui-layer {
    background: rgba(255,255,255,0.04);
    width: 80%;
    opacity: 0.9;
    z-index: 1;
}

.ui-layer h4 {
    color: #10e7c4;
    margin-bottom: 10px;
}

/* Hover lift */
.stack-layer:hover {
    transform: translateY(-6px);
    border-color: #10e7c4;
}

/* Responsive */
@media (max-width: 768px) {
    .stack-layer {
        width: 100% !important;
        margin-bottom: 20px;
    }
}
/* ================================
   AI TOOL-GROUNDED SECTION
   ================================ */

.grounded-section {
    background: #050a0a;
    color: white;
    padding: 110px 0;
}

.grounded-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #10e7c4, #0a7c63, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grounded-subtitle {
    opacity: 0.75;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* SOURCE CARD */
.source-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.source-header {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

/* Animated scroll */
.source-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollSources 12s linear infinite;
}

@keyframes scrollSources {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-40%); }
}

.source-item {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #0d1414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: 0.3s ease;
}

.source-item:hover {
    transform: translateX(6px);
}

.source-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(16,231,196,0.15);
    color: #10e7c4;
}

/* INTELLIGENCE CARD */
.intelligence-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(12px);
}

.intelligence-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
}

.flow-step {
    padding: 10px 18px;
    border-radius: 50px;
    background: #0a7c63;
    animation: pulseFlow 3s infinite;
}

.highlight-step {
    background: linear-gradient(135deg, #10e7c4, #0a7c63);
    color: #000;
    font-weight: 700;
}

.flow-arrow {
    opacity: 0.6;
}

@keyframes pulseFlow {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.intelligence-description {
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

.grounded-footer {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.accent {
    color: #10e7c4;
    margin-left: 8px;
}
/* ======================================
   LAYERED STACK ARCHITECTURE
   ====================================== */

.stack-section {
    background: #000;
    padding: 120px 0;
    color: white;
}

.stack-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.stack-subtitle {
    max-width: 720px;
    margin: 15px auto 60px auto;
    opacity: 0.7;
    font-size: 1.1rem;
}

/* STACK WRAPPER */
.stack-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BASE LAYER STYLE */
.stack-layer {
    width: 100%;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: -20px; /* overlapping effect */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    position: relative;
}

/* =========================
   API CORE (BOTTOM / BIG)
   ========================= */

.api-layer {
    background: linear-gradient(
        135deg,
        rgba(10,124,99,0.35),
        rgba(10,124,99,0.12)
    );
    border: 2px solid #0a7c63;
    box-shadow: 0 0 60px rgba(10,124,99,0.35);
    z-index: 3;
}

.api-layer h3 {
    font-size: 1.8rem;
    color: #10e7c4;
    margin-bottom: 15px;
}

/* =========================
   SECURITY (MIDDLE)
   ========================= */

.security-layer {
    background: rgba(255,255,255,0.06);
    width: 90%;
    z-index: 2;
}

.security-layer h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

/* =========================
   UI (TOP / LIGHTER)
   ========================= */

.ui-layer {
    background: rgba(255,255,255,0.04);
    width: 80%;
    opacity: 0.9;
    z-index: 1;
}

.ui-layer h4 {
    color: #10e7c4;
    margin-bottom: 10px;
}

/* Hover lift */
.stack-layer:hover {
    transform: translateY(-6px);
    border-color: #10e7c4;
}

/* Responsive */
@media (max-width: 768px) {
    .stack-layer {
        width: 100% !important;
        margin-bottom: 20px;
    }
}


/* ======================================
   ULTRA PREMIUM MEGA DROPDOWN
   ====================================== */

.dropdown {
    position: relative;
}

/* Mega container */
.mega-dropdown {
    width: 380px;
    padding: 0;
    border: none;
    background: transparent;
}

/* Inner glass box */
.mega-content {
    background: rgba(10, 15, 15, 0.95);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    animation: megaFade 0.25s ease;
}

/* Fade animation */
@keyframes megaFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Each item */
.mega-item {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.25s ease;
}

.mega-item:hover {
    background: rgba(16,231,196,0.08);
    transform: translateX(4px);
}

/* Title */
.mega-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* Description */
.mega-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* Divider */
.mega-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 16px 0;
}

/* Highlight AI item */
.highlight-mega {
    border: 1px solid rgba(16,231,196,0.25);
}

.highlight-mega .mega-title {
    color: #10e7c4;
}
.hero-content {
    max-width: 1200px;
    margin: auto;
}

.hero-description {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
    margin-top: 10px;
}

.hero-cta {
    margin-bottom: 50px;
    margin-top: 10px;
}

.hero-image-wrapper {
    width: 100%;
    margin-top: 20px;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: auto;

    border-radius: 22px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 80px rgba(0,0,0,0.45),
        0 0 50px rgba(16,231,196,0.12);

    transition: all .35s ease;
}

.hero-image:hover {
    transform: translateY(-6px);
}
.hero-dashboard {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 40px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35);
}

.dashboard-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}

.metric-card {
    background: #111c1c;

    border-radius: 16px;

    padding: 25px;

    text-align: center;
}

.metric-value {
    display: block;

    font-size: 2rem;

    font-weight: 800;

    color: #10e7c4;
}

.metric-label {
    display: block;

    margin-top: 10px;

    color: rgba(255,255,255,0.75);
}

.metric-card.warning .metric-value {
    color: #ff9f43;
}

.metric-card.success .metric-value {
    color: #2ecc71;
}

.traceability-flow {
    margin-top: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.flow-node {
    padding: 12px 22px;

    border-radius: 12px;

    background: #0a7c63;

    color: white;

    font-weight: 600;
}

.flow-arrow {
    color: #10e7c4;

    font-size: 1.4rem;

    font-weight: bold;
}

.highlight {
    background: linear-gradient(
        135deg,
        #10e7c4,
        #0a7c63
    );

    color: black;

    font-weight: 700;
}

.problem-section {
    background: #050a0a;
    padding: 120px 0;
    color: white;
}

.problem-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.problem-badge {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(16,231,196,0.12);

    color: #10e7c4;

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.problem-header h2 {
    font-size: 3rem;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;
}

.problem-header p {
    font-size: 1.15rem;

    color: rgba(255,255,255,0.75);

    line-height: 1.7;
}

.problem-grid {
    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.problem-card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    padding: 35px;

    transition: all .3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);

    border-color: rgba(16,231,196,0.3);
}

.problem-icon {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.35rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.problem-card p {
    color: rgba(255,255,255,0.72);

    line-height: 1.6;
}

.problem-footer {
    margin-top: 60px;

    text-align: center;
}

.problem-result {
    display: inline-block;

    padding: 18px 30px;

    border-radius: 14px;

    background: rgba(255,159,67,0.12);

    border: 1px solid rgba(255,159,67,0.25);

    color: #ffb347;

    font-weight: 600;
}

@media(max-width:992px){

    .problem-grid{
        grid-template-columns:1fr;
    }

    .problem-header h2{
        font-size:2.2rem;
    }

}
/* ==========================================
   TURINGONE SEMANTIC INTELLIGENCE
========================================== */

.semantic-section{

    position:relative;

    padding:140px 0;

    background:#050a0a;

    overflow:hidden;
}

.semantic-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    top:0;

    background:
    radial-gradient(
    circle,
    rgba(16,231,196,.08),
    transparent 70%
    );
}

.semantic-section::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    right:-250px;
    top:100px;

    background:
    radial-gradient(
    circle,
    rgba(16,231,196,.05),
    transparent 70%
    );
}

/* HEADER */

.semantic-section .section-header{

    max-width:850px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;
}

.semantic-section .section-badge{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(16,231,196,.08);

    border:1px solid rgba(16,231,196,.15);

    color:#10e7c4;

    font-size:.75rem;

    letter-spacing:.18em;

    font-weight:600;
}

.semantic-section h2{

    margin-top:28px;

    font-size:3rem;

    line-height:1.1;

    letter-spacing:-1.4px;

    color:white;

    font-weight:700;
}

.semantic-section p{

    margin-top:22px;

    color:rgba(255,255,255,.72);

    font-size:1.08rem;

    line-height:1.8;
}

/* INPUTS */

.semantic-inputs{

    max-width:1200px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;
}

.input-card{

    padding:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:20px;

    transition:.3s ease;

    text-align:center;
}

.input-card:hover{

    transform:translateY(-5px);

    border-color:
    rgba(16,231,196,.25);
}

.input-card h3{

    font-size:1.05rem;

    color:white;

    margin:18px 0 8px;
}

.input-card span{

    font-size:.92rem;

    color:rgba(255,255,255,.6);
}

/* PREMIUM ICONS */

.input-icon,
.tool-icon{

    width:64px;
    height:64px;

    margin:auto;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    rgba(16,231,196,.18),
    rgba(253, 254, 254, 0.04)
    );

    border:
    1px solid rgba(16,231,196,.15);

    position:relative;
}

.input-icon span,
.tool-icon span{

    position:absolute;

    inset:0;

    margin:auto;

    width:24px;
    height:24px;
}

/* REQUIREMENTS */

.requirements span{

    border:2px solid #10e7c4;
    border-radius:4px;
}

.requirements span::before{

    content:"";

    position:absolute;

    width:10px;
    height:2px;

    background:#10e7c4;

    left:5px;
    top:6px;

    box-shadow:
    0 6px 0 #10e7c4,
    0 12px 0 #10e7c4;
}

/* RULES */

.rules span{

    border-radius:50%;

    border:2px solid #10e7c4;
}

/* DOCS */

.docs span{

    border-left:2px solid #10e7c4;

    border-right:2px solid #10e7c4;
}

/* STORIES */

.stories span{

    border-radius:50%;

    background:#10e7c4;
}

/* CORE */

.semantic-core{

    max-width:900px;

    margin:70px auto;

    padding:45px;

    display:flex;

    align-items:center;

    gap:30px;

    background:
    linear-gradient(
    135deg,
    rgba(16,231,196,.09),
    rgba(16,231,196,.03)
    );

    border:1px solid rgba(16,231,196,.15);

    border-radius:28px;

    position:relative;
}

.semantic-core::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    box-shadow:
    inset 0 0 80px rgba(16,231,196,.05);
}

.semantic-brain{

    min-width:90px;

    width:90px;

    height:90px;

    border-radius:24px;

    background:
    linear-gradient(
    135deg,
    #10e7c4,
    #0a7c63
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    color:#041111;
}

.semantic-content h3{

    color:white;

    font-size:2rem;

    margin-bottom:12px;
}

.semantic-content p{

    margin:0;

    color:rgba(255,255,255,.72);
}

/* TOOLS */

.tools-section{

    max-width:1200px;

    margin:auto;
}

.tools-title{

    text-align:center;

    color:#10e7c4;

    font-weight:600;

    margin-bottom:35px;
}

.tools-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;
}

.tool-card{

    background:
    rgba(241, 236, 236, 0.03);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:26px;

    text-align:center;

    transition:.3s ease;
}

.tool-card:hover{

    transform:translateY(-5px);

    border-color:
    rgba(16,231,196,.25);
}

/* OUTPUT */

.coverage-output{

    max-width:1000px;

    margin:80px auto 0;

    padding:38px;

    border-radius:24px;

    display:flex;

    align-items:center;

    gap:24px;

    background:
    linear-gradient(
    135deg,
    rgba(16,231,196,.08),
    rgba(16,231,196,.02)
    );

    border:
    1px solid rgba(16,231,196,.15);
}

.coverage-icon{

    width:80px;
    height:80px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    rgba(16,231,196,.12);

    font-size:1.8rem;
}

.coverage-output h3{

    color:white;

    font-size:1.8rem;

    margin-bottom:8px;
}

.coverage-output p{

    margin:0;
}

/* RESPONSIVE */

@media(max-width:992px){

    .semantic-inputs,
    .tools-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .semantic-core,
    .coverage-output{

        flex-direction:column;

        text-align:center;
    }

    .semantic-section h2{

        font-size:2.3rem;
    }
}

@media(max-width:640px){

    .semantic-inputs,
    .tools-grid{

        grid-template-columns:1fr;
    }

    .semantic-section{

        padding:90px 20px;
    }

    .semantic-section h2{

        font-size:1.9rem;
    }

    .semantic-core{

        padding:30px;
    }
}


.tool-card h3{

    font-size:1.05rem;

    color:white;

    margin:18px 0 8px;
}

.tool-card span{

    font-size:.92rem;

    color:rgba(255,255,255,.6);
}

/* ==========================================
   DECISION QUESTIONS
========================================== */

.decision-questions-section{

    position:relative;

    padding:140px 0;

    background:#050a0a;

    overflow:hidden;
}

.decision-questions-section::before{

    content:"";

    position:absolute;

    width:800px;
    height:800px;

    top:-250px;
    left:-300px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.08),
        transparent 70%
    );
}

.decision-questions-section::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    right:-250px;
    bottom:-200px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.05),
        transparent 70%
    );
}

/* GRID */

.questions-grid{

    max-width:1200px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    position:relative;

    z-index:2;
}

/* CARD */

.question-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:36px;

    transition:.35s ease;

    backdrop-filter:blur(12px);
}

.question-card:hover{

    transform:translateY(-8px);

    border-color:
    rgba(16,231,196,.25);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
}

/* Featured card */

.question-card.featured{

    background:
    linear-gradient(
        135deg,
        rgba(16,231,196,.08),
        rgba(16,231,196,.02)
    );

    border:
    1px solid rgba(16,231,196,.18);
}

/* Number */

.question-number{

    font-size:1rem;

    font-weight:700;

    color:#10e7c4;

    letter-spacing:.18em;

    margin-bottom:22px;
}

/* Title */

.question-card h3{

    color:white;

    font-size:1.4rem;

    line-height:1.35;

    margin-bottom:18px;

    font-weight:600;
}

/* Text */

.question-card p{

    color:rgba(255,255,255,.72);

    line-height:1.8;

    margin:0;

    font-size:1rem;
}

/* Responsive */

@media(max-width:992px){

    .questions-grid{

        grid-template-columns:1fr;
    }

    .decision-questions-section{

        padding:100px 20px;
    }
}
/* ==========================================
   EXPERTISE SECTION
========================================== */

.expertise-section {

    position: relative;
    padding: 140px 0;
    background: #050a0a;
    overflow: hidden;
}

.expertise-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -200px;
    left: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.08),
        transparent 70%
    );
}

.expertise-section::after {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    bottom: -250px;
    right: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.05),
        transparent 70%
    );
}

/* GRID */

.expertise-grid {

    max-width: 1200px;

    margin: 80px auto 0;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 24px;

    position: relative;

    z-index: 2;
}

/* CARD */

.expertise-card {

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius: 24px;

    padding: 38px;

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

.expertise-card:hover {

    transform: translateY(-8px);

    border-color:
    rgba(16,231,196,.25);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
}

.expertise-card.featured {

    background:
    linear-gradient(
        135deg,
        rgba(16,231,196,.08),
        rgba(16,231,196,.02)
    );

    border:
    1px solid rgba(16,231,196,.18);
}

/* ICON */

.expertise-icon {

    width: 68px;
    height: 68px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background:
    linear-gradient(
        135deg,
        rgba(16,231,196,.18),
        rgba(16,231,196,.04)
    );

    border:
    1px solid rgba(16,231,196,.15);

    color: #10e7c4;

    font-size: 1.4rem;

    font-weight: 700;
}

/* TITLE */

.expertise-card h3 {

    color: white;

    font-size: 1.35rem;

    line-height: 1.3;

    margin-bottom: 16px;
}

/* DESCRIPTION */

.expertise-card p {

    color:
    rgba(255,255,255,.72);

    line-height: 1.8;

    margin-bottom: 22px;
}

/* LIST */

.expertise-card ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.expertise-card li {

    position: relative;

    padding-left: 22px;

    margin-bottom: 12px;

    color:
    rgba(255,255,255,.75);
}

.expertise-card li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #10e7c4;
}

/* RESPONSIVE */

@media(max-width:992px){

    .expertise-grid{

        grid-template-columns:1fr;
    }

    .expertise-section{

        padding:100px 20px;
    }
}

/* ==========================================
   EXPERTISE HEADER
========================================== */

.expertise-section {

    position: relative;

    padding: 140px 0;

    background: #050a0a;

    overflow: hidden;
}

/* Glow gauche */
.expertise-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    left: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.08),
        transparent 70%
    );

    pointer-events: none;
}

/* Glow droite */
.expertise-section::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    bottom: -250px;
    right: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.05),
        transparent 70%
    );

    pointer-events: none;
}

/* HEADER */

.expertise-section .section-header {

    max-width: 900px;

    margin: 0 auto 80px auto;

    text-align: center;

    position: relative;

    z-index: 10;
}

/* Badge */

.expertise-section .section-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    border-radius: 999px;

    background:
    rgba(16,231,196,.08);

    border:
    1px solid rgba(16,231,196,.18);

    color: #10e7c4;

    font-size: .78rem;

    letter-spacing: .22em;

    font-weight: 700;

    text-transform: uppercase;
}

/* Title */

.expertise-section h2 {

    margin-top: 32px;

    font-size: clamp(2.5rem,5vw,4rem);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    color: #ffffff;

    margin-bottom: 24px;
}

/* Description */

.expertise-section .section-header p {

    max-width: 760px;

    margin: 0 auto;

    font-size: 1.15rem;

    line-height: 1.8;

    color: rgba(255,255,255,.72);
}

/* ==========================================
   COVERAGE EXPANSION SECTION
========================================== */

.coverage-expansion {

    position: relative;

    padding: 140px 0;

    background: #050a0a;

    overflow: hidden;
}

.coverage-expansion::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    left: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.08),
        transparent 70%
    );

    pointer-events: none;
}

.coverage-expansion::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    bottom: -250px;
    right: -250px;

    background:
    radial-gradient(
        circle,
        rgba(16,231,196,.05),
        transparent 70%
    );

    pointer-events: none;
}

/* HEADER */

.coverage-expansion .section-header {

    max-width: 900px;

    margin: 0 auto 90px auto;

    text-align: center;

    position: relative;

    z-index: 10;
}

.coverage-expansion .section-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    border-radius: 999px;

    background:
    rgba(16,231,196,.08);

    border:
    1px solid rgba(16,231,196,.18);

    color: #10e7c4;

    font-size: .78rem;

    letter-spacing: .22em;

    font-weight: 700;

    text-transform: uppercase;
}

.coverage-expansion h2 {

    margin-top: 32px;

    font-size: clamp(2.5rem,5vw,4rem);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    color: #ffffff;

    margin-bottom: 24px;
}

.coverage-expansion .section-header p {

    max-width: 760px;

    margin: 0 auto;

    font-size: 1.15rem;

    line-height: 1.8;

    color: rgba(255,255,255,.72);
}

/* ROADMAP */

.coverage-roadmap {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 24px;

    position: relative;

    z-index: 2;
}

/* CARD */

.coverage-stage {

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius: 24px;

    padding: 38px;

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

.coverage-stage:hover {

    transform: translateY(-8px);

    border-color:
    rgba(16,231,196,.25);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
}

/* ACTIVE CARD */

.coverage-stage.active {

    background:
    linear-gradient(
        135deg,
        rgba(16,231,196,.08),
        rgba(16,231,196,.02)
    );

    border:
    1px solid rgba(16,231,196,.18);
}

/* FUTURE */

.coverage-stage.future {

    opacity: .85;
}

/* STATUS */

.stage-status {

    display: inline-flex;

    padding: 10px 18px;

    border-radius: 999px;

    background:
    rgba(16,231,196,.08);

    border:
    1px solid rgba(16,231,196,.15);

    color: #10e7c4;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    margin-bottom: 24px;
}

.future .stage-status {

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:
    rgba(255,255,255,.65);
}

/* TITLE */

.coverage-stage h3 {

    color: white;

    font-size: 1.35rem;

    line-height: 1.3;

    margin-bottom: 18px;
}

/* TEXT */

.coverage-stage p {

    color:
    rgba(255,255,255,.72);

    line-height: 1.8;

    margin-bottom: 22px;
}

/* LIST */

.coverage-stage ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.coverage-stage li {

    position: relative;

    padding-left: 22px;

    margin-bottom: 12px;

    color:
    rgba(255,255,255,.75);
}

.coverage-stage li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #10e7c4;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .coverage-roadmap{

        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .coverage-roadmap{

        grid-template-columns: 1fr;
    }

    .coverage-expansion{

        padding:100px 20px;
    }
}