.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);
}
