:root {
    --black: #020202;
    --white: #ffffff;
    --blue: #02f4f4;
    --purple: #8b52fd;
    --bg: #f6f8fa;
    --gray-light: rgba(0, 0, 0, 0.05);
    --gray-medium: rgba(0, 0, 0, 0.6);
    --gray-dark: rgba(0, 0, 0, 0.8);
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}

@media (min-width: 1440px) {
    .logo img {
        width: 140px;
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-nav {
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 82, 253, 0.3);
}

.btn-primary {
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(139, 82, 253, 0.4);
}

.btn-outline {
    border: 2px solid var(--black);
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gradient {
    padding: 2px;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
}

.btn-outline-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 82, 253, 0.4);
}

.btn-outline-gradient span {
    display: block;
    background: var(--bg);
    color: var(--black);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover span {
    background: transparent;
    color: var(--white);
}

.btn-primary-gradient {
    padding: 2px;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(139, 82, 253, 0.4);
}

.btn-primary-gradient span {
    display: block;
    background: var(--black);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover span {
    background: transparent;
    color: var(--white);
}

.btn-inline {
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-inline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.hero {
    padding: 140px 0 100px;
}

@media (min-width: 1440px) {
    .hero {
        padding: 180px 0 120px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1440px) {
    .hero-grid {
        gap: 100px;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

@media (min-width: 1440px) {
    .hero h1 {
        font-size: 5rem;
    }
}

.hero h1 .special {
    padding-inline: 0.1em;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    background: var(--black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 36px;
    max-width: 540px;
}

@media (min-width: 1440px){
    .hero-text p {
        font-size: 20px;
        max-width: 600px;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.video-mock {
    background: linear-gradient(135deg, #e9eef2 0%, #f6f8fa 100%);
    border-radius: 24px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.video-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(150deg, var(--purple), var(--blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.video-mock img {
    width: 70%;
    height: auto;
    max-width: 500px;
}

@media (min-width: 1440px) {
    .video-mock img {
        width: 75%;
        max-width: 600px;
    }
}

.stats {
    background: var(--black);
    padding: 100px 0;
    color: var(--white);
}

@media (min-width: 1440px) {
    .stats {
        padding: 70px 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

@media (min-width: 1440px) {
    .stats-grid {
        gap: 80px;
    }
}

.stat-item h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

@media (min-width: 1440px) {
    .stat-item h3 {
        font-size: 4.5rem;
    }
}

.stat-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1440px) {
    .stat-item p {
        font-size: 20px;
    }
}

.services {
    padding: 140px 0;
}

@media (min-width: 1440px) {
    .services {
        padding: 120px 0;
    }
}

.services h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

@media (min-width: 1440px) {
    .services h2 {
        font-size: 4rem;
        margin-bottom: 100px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (min-width: 1440px) {
    .services-grid {
        gap: 50px;
    }
}

.card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1440px) {
    .card {
        padding: 56px 48px;
    }
}

.card-icon {
    margin-bottom: 24px;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 1440px) {
    .card h3 {
        font-size: 26px;
    }
}

.card p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 16px;
}

@media (min-width: 1440px) {
    .card p {
        font-size: 17px;
    }
}

.pricing {
    padding: 140px 0;
    background: var(--white);
}

@media (min-width: 1440px) {
    .pricing {
        padding: 160px 0;
    }
}

.pricing h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

@media (min-width: 1440px) {
    .pricing h2 {
        font-size: 4rem;
    }
}

.pricing-intro {
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1440px) {
    .pricing-intro {
        font-size: 20px;
        margin-bottom: 80px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

@media (min-width: 1440px) {
    .pricing-grid {
        gap: 40px;
    }
}

.price-card {
    background: #fff;
    padding: 44px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--black);
    transition: .3s ease;
}

@media (min-width: 1440px) {
    .price-card {
        padding: 52px 40px;
    }
}

.price-card:hover {
    transition: .3s ease;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.price-card.popular {
    border-color: var(--blue);
    box-shadow: 0 15px 50px rgba(2, 244, 244, 0.2);
}

.price-card.popular::before {
    content: "LE PLUS POPULAIRE";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(2, 244, 244, 0.3);
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

@media (min-width: 1440px) {
    .price-card h3 {
        font-size: 28px;
    }
}

.price-card .price {
    font-size: 32px;
    margin: 20px 0 28px;
    font-weight: 800;
    color: var(--black);
}

@media (min-width: 1440px) {
    .price-card .price {
        font-size: 36px;
    }
}

.price-card ul {
    list-style: none;
    margin: 24px 0 32px;
    text-align: left;
    padding: 0;
}

.price-card ul li {
    margin: 14px 0;
    font-size: 15px;
    color: var(--gray-dark);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

@media (min-width: 1440px) {
    .price-card ul li {
        font-size: 16px;
        margin: 16px 0;
    }
}

.price-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 18px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 2px;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 82, 253, 0.2);
    text-align: center;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 82, 253, 0.4);
}

.btn-pricing span {
    display: block;
    background: white;
    color: var(--black);
    padding: 14px 24px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-pricing:hover span {
    background: transparent;
    color: var(--white);
}

.pricing-note {
    margin-top: 48px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-medium);
    font-style: italic;
}

@media (min-width: 1440px) {
    .pricing-note {
        font-size: 15px;
        margin-top: 60px;
    }
}

.cta {
    background: var(--black);
    color: var(--white);
    padding: 140px 0;
    text-align: center;
}

@media (min-width: 1440px) {
    .cta {
        padding: 160px 0;
    }
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

@media (min-width: 1440px) {
    .cta h2 {
        font-size: 4rem;
    }
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

@media (min-width: 1440px) {
    .cta p {
        font-size: 22px;
    }
}

.site-footer {
    background: var(--white);
    padding: 40px 0 0;
}

@media (min-width: 1440px) {
    .site-footer {
        padding: 50px 0 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding: 24px 24px !important;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-medium);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--blue);
}

/* Calendly Modal */
.calendly-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calendly-modal.active {
    display: flex;
}

.calendly-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.calendly-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    max-height: 800px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
    z-index: 1001;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendly-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.calendly-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.calendly-close svg {
    color: var(--black);
}

.calendly-embed {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendly-modal-content {
        max-width: 90vw;
        height: 85vh;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 24px;
        border-bottom: 1px solid var(--gray-light);
    }

    .desktop-nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }

    .desktop-nav a {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
    }

    .btn-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services,
    .pricing,
    .cta {
        padding: 80px 0;
    }

    .card {
        padding: 36px 28px;
    }

    .price-card {
        padding: 36px 28px;
    }

    .calendly-modal {
        padding: 16px;
        align-items: flex-end;
    }

    .calendly-modal-content {
        border-radius: 24px 24px 0 0;
        max-width: 100%;
        height: 92vh;
        max-height: 92vh;
    }

    .calendly-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .calendly-embed {
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        height: 70px;
    }

    .logo img {
        width: 100px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline,
    .hero-actions .btn-outline-gradient {
        width: 100%;
        text-align: center;
    }
}

.special {
    font-family: "Playfair Display", serif;
    font-style: italic;
}


.aboutme {
    padding: 140px 0;
}

@media (min-width: 1440px){
    .aboutme {
        padding: 160px 0;
    }
}

.aboutme-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1440px){
    .aboutme-grid {
        gap: 100px;
    }
}

.aboutme-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: auto;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(150deg, var(--purple), var(--blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 0 0 24px 24px;
}

.aboutme-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

@media (min-width: 1440px) {
    .aboutme-content h2 {
        font-size: 4rem;
    }
}

.aboutme-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--gray-dark);
}

@media (min-width: 1440px) {
    .aboutme-content h3 {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

.aboutme-content .highlight {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aboutme-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

@media (min-width: 1440px) {
    .aboutme-content p {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

.aboutme-content p.intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

@media (min-width: 1440px) {
    .aboutme-content p.intro {
        font-size: 19px;
    }
}

.aboutme-mission {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 82, 253, 0.05) 0%, rgba(2, 244, 244, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid;
    border-image: linear-gradient(150deg, var(--purple) 0%, var(--blue) 100%) 1;
}

@media (min-width: 1440px) {
    .aboutme-mission {
        margin-top: 48px;
        padding: 40px;
    }
}

.aboutme-mission .mission-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--black);
    margin: 0;
}

@media (min-width: 1440px) {
    .aboutme-mission .mission-text {
        font-size: 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .aboutme-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .aboutme-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .aboutme {
        padding: 80px 0;
    }

    .aboutme-content h3 {
        font-size: 20px;
    }

    .aboutme-mission {
        margin-top: 32px;
        padding: 24px;
    }
}

