:root {
    --green: #159957;
    --dark-green: #042f1a;
    --light-green: #e9fff2;
    --soft-green: #f3fff7;
    --text: #07150d;
    --muted: #66736b;
    --border: #e2e8e4;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -1px;
}

.logo span {
    color: var(--green);
}

.main-nav {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
}

.main-nav a:hover {
    background: var(--light-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: #0f7e45;
}

.btn-secondary {
    background: #e7f1eb;
    color: var(--text);
}

.btn-secondary:hover {
    background: #d9e8df;
}

.btn-outline {
    border-color: var(--green);
    color: var(--green);
    background: white;
}

.btn-outline:hover {
    background: var(--light-green);
}

.full {
    width: 100%;
}

.hero {
    padding: 100px 0;
    background:
        radial-gradient(circle at 75% 40%, rgba(91, 230, 135, 0.3), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--light-green);
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -3px;
}

.hero p {
    margin: 28px 0 0;
    max-width: 580px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.mock-table {
    display: grid;
    gap: 12px;
}

.mock-table-header,
.mock-row {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 16px;
    align-items: center;
}

.mock-table-header {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    padding: 0 12px 10px;
    border-bottom: 1px solid var(--border);
}

.mock-row {
    padding: 18px 12px;
    border-radius: 14px;
    background: #fbfdfb;
    border: 1px solid var(--border);
}

.mock-row strong {
    font-size: 15px;
}

.mock-row span {
    font-weight: 700;
}

.mock-row em {
    font-style: normal;
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--light-green);
    color: var(--green);
    font-size: 13px;
}

.section {
    padding: 90px 0;
}

.section-soft {
    background:
        radial-gradient(circle at 80% 50%, rgba(76, 222, 128, 0.22), transparent 35%),
        var(--soft-green);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-heading p {
    margin: 18px auto 0;
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.opportunity-list {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.opportunity-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.opportunity-card h3 {
    margin: 8px 0 4px;
    font-size: 20px;
}

.opportunity-card p {
    margin: 0;
    color: var(--muted);
}

.badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffd65a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.card-meta {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
}

.card-meta span:last-child {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--light-green);
    color: var(--green);
    font-size: 13px;
}

.center {
    text-align: center;
    margin-top: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    padding: 32px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--border);
    min-height: 250px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 26px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 430px));
    justify-content: center;
    gap: 26px;
}

.pricing-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--green);
}

.pricing-card h3 {
    margin: 0 0 26px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
}

.pricing-card ul {
    margin: 0 0 30px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 26px;
}

summary {
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

details p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 50px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-inner nav {
    display: flex;
    gap: 26px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .header-inner {
        height: auto;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 17px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .opportunity-card {
        flex-direction: column;
    }

    .card-meta {
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner nav {
        flex-direction: column;
        gap: 12px;
    }

    .mock-table-header,
    .mock-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PAGE OPPORTUNITÉS
========================= */

.main-nav a.active {
    background: var(--light-green);
    color: var(--green);
}

.page-hero {
    padding: 90px 0 60px;
    text-align: center;
    background:
        radial-gradient(circle at 80% 35%, rgba(91, 230, 135, 0.25), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
}

.page-hero h1 {
    max-width: 950px;
    margin: 20px auto 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
    color: var(--text);
}

.page-hero p {
    max-width: 700px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.filter-button,
.search-field {
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    padding: 0 14px;
    font-size: 14px;
    color: var(--text);
}

.filter-button {
    font-weight: 700;
    cursor: pointer;
}

.filter-button:hover {
    background: var(--light-green);
    border-color: var(--green);
    color: var(--green);
}

.search-field {
    min-width: 300px;
}

.reset-button {
    margin-left: auto;
    height: 44px;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    background: #edf1ee;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.reset-button:hover {
    background: #dfe7e2;
}

.opportunity-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
}

.opportunity-table-header,
.opportunity-table-row {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.8fr 1.2fr 1.4fr;
    gap: 18px;
    align-items: center;
}

.opportunity-table-header {
    padding: 20px 24px;
    background: #fbfdfb;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.opportunity-table-row {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.opportunity-table-row:last-child {
    border-bottom: none;
}

.opportunity-table-row:hover {
    background: #f8fffb;
}

.project-name {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-name strong {
    font-size: 16px;
    color: var(--text);
}

.badge {
    display: inline-flex;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffd65a;
    color: #2f2600;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tech {
    color: var(--green);
    font-weight: 800;
}

.pill {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--light-green);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.location {
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 980px) {
    .filters-bar {
        align-items: stretch;
    }

    .search-field {
        min-width: 100%;
    }

    .reset-button {
        margin-left: 0;
    }

    .opportunity-table {
        overflow-x: auto;
    }

    .opportunity-table-header,
    .opportunity-table-row {
        min-width: 950px;
    }
}

/* =========================
   PAGE SERVICES
========================= */

.services-hero {
    background:
        radial-gradient(circle at 80% 35%, rgba(91, 230, 135, 0.25), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
}

.services-intro-section {
    padding-top: 80px;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.services-intro-text h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.services-intro-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.intro-block {
    margin-top: 30px;
}

.intro-block h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.services-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    min-height: 170px;
    padding: 28px;
    border-radius: 24px;
    background: var(--light-green);
    border: 1px solid #d6f6e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.category-icon {
    font-size: 40px;
}

.category-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.providers-section {
    background:
        radial-gradient(circle at 90% 35%, rgba(91, 230, 135, 0.15), transparent 34%),
        #ffffff;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.provider-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.provider-logo {
    width: 90px;
    height: 60px;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #f4f8f5;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.provider-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.provider-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.provider-card p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.5;
}

.provider-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-services span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--light-green);
    color: var(--text);
    font-size: 14px;
}

.join-section {
    background: #f7fff9;
}

.join-card {
    padding: 42px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.join-content h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.join-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.join-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.join-form input,
.join-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
}

.join-form textarea {
    min-height: 90px;
    padding-top: 14px;
    resize: vertical;
}

.checkbox-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.checkbox-line input {
    width: auto;
    min-height: auto;
    margin-top: 2px;
}

@media (max-width: 980px) {
    .services-intro-grid,
    .join-card {
        grid-template-columns: 1fr;
    }

    .services-category-grid,
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-category-grid,
    .providers-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .join-card {
        padding: 24px;
    }
}

/* =========================
   CORRECTION CARTES PRESTATAIRES SERVICES
========================= */

.providers-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 90% 35%, rgba(91, 230, 135, 0.16), transparent 34%),
        #ffffff;
}

.providers-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.providers-section .section-heading h2 {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.providers-section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.providers-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.provider-card {
    position: relative !important;
    min-height: 360px !important;
    padding: 28px !important;
    border-radius: 20px !important;
    border: 1px solid var(--border) !important;
    background: #ffffff !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.provider-logo {
    width: 90px !important;
    height: 60px !important;
    margin-bottom: 28px !important;
    border-radius: 12px !important;
    background: #f4f8f5 !important;
    color: var(--dark-green) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}

.provider-tag {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    padding: 6px 12px !important;
    border: 1px solid var(--border) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
}

.provider-card h3 {
    margin: 0 0 12px !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    color: var(--text) !important;
}

.provider-card p {
    margin: 0 0 20px !important;
    color: var(--muted) !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
}

.provider-services {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: auto !important;
}

.provider-services span {
    display: inline-flex !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: var(--light-green) !important;
    color: var(--dark-green) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

/* Si une ancienne version utilise partner au lieu de provider */
.partner-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.partner-card {
    padding: 28px !important;
    border-radius: 20px !important;
    border: 1px solid var(--border) !important;
    background: #ffffff !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05) !important;
}

/* Responsive */
@media (max-width: 980px) {
    .providers-grid,
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .providers-grid,
    .partner-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   PAGE TARIFS / PLAN D'AFFAIRES
========================= */

.pricing-hero {
    background:
        radial-gradient(circle at 80% 35%, rgba(91, 230, 135, 0.25), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
}

.pricing-section {
    padding-top: 80px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 430px));
    justify-content: center;
    gap: 28px;
}

.pricing-plan-card {
    padding: 38px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.pricing-plan-card.pricing-featured {
    border-color: var(--green);
    box-shadow: 0 24px 70px rgba(21, 153, 87, 0.16);
}

.pricing-plan-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 26px;
    margin-bottom: 26px;
}

.pricing-plan-header h2 {
    margin: 0 0 26px;
    font-size: 22px;
}

.pricing-price {
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--text);
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--muted);
}

.pricing-description {
    margin: 0 0 24px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.pricing-features {
    margin: 0 0 30px;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.75;
}

.pricing-features li {
    margin-bottom: 8px;
}

/* TABLEAU COMPARATIF */

.comparison-section {
    padding-top: 80px;
}

.comparison-table {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
    gap: 20px;
    align-items: center;
    padding: 20px 26px;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-head {
    background: #f8fdf9;
    font-weight: 800;
}

.comparison-row span {
    color: var(--text);
    line-height: 1.5;
}

.comparison-row strong {
    text-align: center;
}

.comparison-group {
    padding: 18px 26px;
    background: #fbfdfb;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text);
}

.check {
    display: inline-flex;
    width: 26px;
    height: 26px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #c9ff9b;
    color: #16803d;
    font-weight: 900;
}

.cross {
    display: inline-flex;
    width: 26px;
    height: 26px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffd6d6;
    color: #d32929;
    font-weight: 900;
}

.pricing-faq-section {
    background:
        radial-gradient(circle at 80% 45%, rgba(91, 230, 135, 0.20), transparent 35%),
        var(--soft-green);
}

/* RESPONSIVE TARIFS */

@media (max-width: 900px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 720px;
    }
}

@media (max-width: 640px) {
    .pricing-plan-card {
        padding: 26px;
    }

    .pricing-price {
        font-size: 46px;
    }
}