/* Variables globales - Thème Modern Startup */
:root {
    --primary-white: #ffffff;        /* Bleu foncé du logo */
    --primary-light: #3B82F6;       /* Bleu ciel du logo */
    --accent: #22D3EE;              /* Accent cyan moderne */
    --dark-bg: #0F172A;             /* Fond très sombre minimaliste */
    --light-text: #FFFFFF;          /* Texte pur blanc */
    --medium-text: #ffffff;         /* Texte gris moyen */
    --surface: #0F172A;             /* Surface légèrement plus claire */
    --font-family: 'Inter', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Import Inter Bold */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}


/* Navbar - Moderne et épurée */
.navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 0.7rem;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 200px;
    height: auto;
}

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

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-item > a,
.nav-item > .nav-trigger {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 0.4rem;
    margin-top: -0.9rem;
    cursor: pointer;
}

.nav-item::before {
    display: none;
}

.nav-item-simple::before {
    display: none;
}

.nav-item-simple > a::after {
    display: none;
}

.nav-item > a::after,
.nav-item > .nav-trigger::after {
    display: none;
}



/* 1. Ligne + V centre (style "notch") */
.notch-container {
    --notch-gap: 10px;
    --notch-v-size: 8px;
    --notch-stroke: 1px;
    --notch-line-y: 2px;
    --notch-join: 0px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    display: block;
    width: 100%;
    height: calc(var(--notch-line-y) + var(--notch-v-size) + var(--notch-stroke) + 4px);
    pointer-events: auto;
    color: var(--dark-bg);
    transition: color 0.3s ease;
}

/* 2. Les deux segments horizontaux */
.notch-container::before,
.notch-container::after {
    content: '';
    position: absolute;
    top: var(--notch-line-y);
    height: var(--notch-stroke);
    background: currentColor;
    border-radius: 999px;
}

.notch-container::before {
    left: 0;
    width: calc(50% - (var(--notch-gap) / 2) + var(--notch-join));
}

.notch-container::after {
    right: 0;
    width: calc(50% - (var(--notch-gap) / 2) + var(--notch-join));
}

/* 3. Les deux segments diagonaux du V */
.notch-v {
    position: absolute;
    left: 50%;
    top: var(--notch-line-y);
    width: 0;
    height: 0;
}

.notch-v::before,
.notch-v::after {
    content: '';
    position: absolute;
    top: 0;
    width: var(--notch-v-size);
    height: var(--notch-stroke);
    background: currentColor;
    border-radius: 999px;
}

.notch-v::before {
    left: calc(-1 * (var(--notch-gap) / 2) - var(--notch-join));
    transform: rotate(45deg);
    transform-origin: left top;
}

.notch-v::after {
    right: calc(-1 * (var(--notch-gap) / 2) - var(--notch-join));
    transform: rotate(-45deg);
    transform-origin: right top;
}

.nav-item:hover > a,
.nav-item:hover > .nav-trigger {
    color: var(--primary-light);
}

.nav-item:hover .notch-container {
    color: var(--primary-light);
}

.submenu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: linear-gradient(160deg, rgba(10, 24, 45, 0.98), rgba(8, 20, 38, 0.96));
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
    list-style: none;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.3s ease;
    padding: 0.5rem;
    z-index: 1000;
    box-shadow: 0 18px 40px rgba(2, 8, 20, 0.45);
    backdrop-filter: blur(10px);
}

.submenu li {
    list-style: none;
    padding: 0;
}

.submenu li a {
    display: block;
    padding: 0.8rem 1rem;
    color: rgba(234, 242, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border-radius: 8px;
    border-left: 2px solid transparent;
    font-weight: 600;
}

.submenu li a:hover {
    background: linear-gradient(120deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.18));
    border-left-color: var(--accent);
    color: #FFFFFF;
}

.submenu-label {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(234, 242, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F2957 50%, var(--primary-light) 100%);
    color: white;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Boutons */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark-bg);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-primary-light {
    color: var(--primary-light);
}

.text-dark-bg {
    color: var(--dark-bg);
}
/* Features Grid */
.features {
    background: var(--primary-white);
    padding: 3rem 0 8rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    
}

.feature {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
}

.feature:hover {
    background: var(--surface);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px var(--accent);
}

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

.feature p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F2957 50%, var(--primary-light) 100%);
    color: white;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.contact-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.contact-form-section {
    background: var(--primary-white);
    padding: 3rem 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 2rem auto;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--accent);
    background: var(--primary-white);
    color: var(--dark-bg);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--surface);
    opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.02);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--primary-white)
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.why-us-row {
    grid-template-columns: 1fr;
}

.about-row-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.about-row-reverse > * {
    direction: ltr;
}

.about-content {
    flex: 1;
}

.about-block {
    text-align: left;
    background: var(--surface);
    padding: 2.6rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.why-us-block {
    background: var(--surface);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 14px;
    padding: 2.6rem;
    box-shadow: 0 14px 36px rgba(2, 10, 25, 0.35);
    display: grid;
    gap: 1.4rem;
    width: 100%;
}


.why-us-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.why-us-list li {
    color: rgba(234, 242, 255, 0.88);
    font-size: 1rem;
    line-height: 1.75;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.why-us-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
    flex-shrink: 0;
}

.about-block:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.1);
}

.about-block h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.about-block h3 {
    color: rgba(34, 211, 238, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-block p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.why-us-block .why-us-intro,
.why-us-block .why-us-outro {
    margin: 0;
    color: rgba(234, 242, 255, 0.78);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-img {
    width: 100%;
    max-width: 5000px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* About Quote Section */
.about-quote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.quote-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 600;
}

.quote-author h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.quote-author p {
    color: var(--surface);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-header div {
    flex: 1;
}

.linkedin-link {
    display: flex;
    color: var(--primary-light);
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
}

.linkedin-link:hover {
    color: var(--accent);
    background: rgba(34, 211, 238, 0.2);
}

.quote-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Footer */
footer {
    background: rgba(1, 15, 35, 0.95);
    color: var(--medium-text);
    text-align: center;
    padding: 0.5rem 0;
    margin-top: 0;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--primary-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
    transform: translateY(-6px);
}

.pricing-card-featured {
    border-color: var(--accent);
    background: rgba(34, 211, 238, 0.05);
    transform: scale(1.05);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pack-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-card h4 {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features h5 {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: var(--medium-text);
    font-size: 0.95rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-info {
    background: rgba(34, 211, 238, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.info-row:last-child {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
}

.info-label {
    font-weight: 600;
    color: var(--primary-light);
}

.info-value {
    color: var(--medium-text);
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 1.1rem;
    color: var(--medium-text);
    font-weight: 500;
}

.price-main {
    font-size: 2.2rem;
    color: var(--primary-light);
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--primary-white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: var(--primary-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: var(--medium-text);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
    transform: translateY(-6px);
}

.pricing-card-featured {
    border-color: var(--accent);
    background: rgba(34, 211, 238, 0.05);
    transform: scale(1.05);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.2rem;
    color: var(--primary-light);
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: var(--medium-text);
    font-size: 0.95rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}
.eyebrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    max-width: 1200px;
    padding: 0 20px;
}

/* Services TJM Section */
.services-tjm {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: var(--medium-text);
    font-size: 1.1rem;
}

.tjm-category {
    margin-bottom: 3rem;
}

.tjm-category-header {
    margin-bottom: 2rem;
}

.tjm-category-header h3 {
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.tjm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tjm-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tjm-card:hover {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.1);
    transform: translateY(-4px);
}

.tjm-card-highlighted {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.1);
}

.tjm-card-wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.tjm-level {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tjm-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.price-value {
    font-size: 2rem;
    color: var(--primary-light);
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.tjm-desc {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tjm-factors {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.tjm-factors li {
    color: var(--medium-text);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tjm-factors li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h1 {
        font-size: 1.8rem;
    }
}
