/* ==================== RESET + BASE ==================== */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: #060d1a;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER + NAV ==================== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
}

.header.scrolled {
    background: rgba(6, 13, 26, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header .logo-container {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.header .logo-container img {
    height: 46px;
    margin-right: 10px;
}

.header .logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
}

.nav {
    display: flex;
    gap: 50px;
    margin-right: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2A6BFF;
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: white;
}

.nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 11;
    margin-right: 25px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

/* ==================== ABOUT MAIN ==================== */

.about-main {
    min-height: 100vh;
}

/* ==================== HERO ==================== */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 8% 80px;
    overflow: hidden;
    background-color: #060d1a;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../ressources/starry.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

/* Glow orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: 10%;
    left: 20%;
    background: radial-gradient(circle, rgba(42, 107, 255, 0.15) 0%, transparent 70%);
    animation: glowFloat1 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(138, 92, 255, 0.1) 0%, transparent 70%);
    animation: glowFloat2 10s ease-in-out infinite;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.08) 0%, transparent 70%);
    animation: glowFloat3 12s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

@keyframes glowFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(6, 13, 26, 0.6) 70%, rgba(6, 13, 26, 1) 100%);
    z-index: 1;
}

.hero-center {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0;
    margin-bottom: 28px;
    color: #6b9fff;
    font-weight: 600;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    opacity: 0;
    color: rgba(255, 255, 255, 0.55);
    max-width: 620px;
    margin: 0 auto 48px;
    font-weight: 400;
    animation: fadeUp 1s ease 0.8s forwards;
}

/* hero-founders removed — photo moved to story section */

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    transform: rotate(45deg);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.3; }
    50% { transform: rotate(45deg) translate(8px, 8px); opacity: 0.8; }
}

/* ==================== STORY SECTION ==================== */

.about-story {
    padding: 140px 8% 100px;
    background: linear-gradient(180deg, #060d1a 0%, #0a1430 50%, #060d1a 100%);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 107, 255, 0.2), transparent);
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.story-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    /* text column */
}

.story-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.story-photo img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.story-photo img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 60px rgba(42, 107, 255, 0.1);
}

.story-label {
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #6b9fff;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.story-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 48px;
    letter-spacing: -0.03em;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.35) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
}

.story-highlight {
    position: relative;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 48px 0;
    overflow: hidden;
}

.story-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2A6BFF, #6b9fff);
    border-radius: 4px 0 0 4px;
}

.story-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 0% 50%, rgba(42, 107, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.story-closing {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 40px;
}

/* ==================== VALUES SECTION ==================== */

.about-values {
    padding: 100px 8% 80px;
    background-color: #060d1a;
    position: relative;
    text-align: center;
}

.values-label {
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #6b9fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.values-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 64px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.35) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.val-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
    overflow: hidden;
}

/* Animated glow border on hover */
.val-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: conic-gradient(from var(--angle, 0deg), transparent 40%, rgba(42, 107, 255, 0.5), rgba(138, 92, 255, 0.5), rgba(0, 200, 255, 0.5), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.val-card:hover::before {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    to { --angle: 360deg; }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.val-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

/* Glow effect behind card on hover */
.val-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 50%, rgba(42, 107, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.val-card:hover::after {
    opacity: 1;
}

.val-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.val-card:hover .val-icon {
    transform: scale(1.1);
}

.val-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.val-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Icon color variants */
.icon-blue { background: rgba(42, 107, 255, 0.12); color: #5b9aff; }
.icon-cyan { background: rgba(0, 200, 255, 0.1); color: #00c8ff; }
.icon-purple { background: rgba(138, 92, 255, 0.12); color: #a07cff; }
.icon-green { background: rgba(52, 199, 89, 0.12); color: #34c759; }
.icon-orange { background: rgba(255, 148, 17, 0.12); color: #FF9411; }
.icon-red { background: rgba(255, 69, 58, 0.12); color: #ff6b6b; }
.icon-teal { background: rgba(0, 199, 190, 0.12); color: #00c7be; }

/* ==================== EXPERTISE SECTION ==================== */

.about-expertise {
    padding: 100px 8% 140px;
    background: linear-gradient(180deg, #060d1a 0%, #0a1430 50%, #060d1a 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.about-expertise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 107, 255, 0.2), transparent);
}

.expertise-label {
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #6b9fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.expertise-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 64px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 20%, rgba(255, 255, 255, 0.35) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.exp-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
    overflow: hidden;
}

/* Animated glow border on hover */
.exp-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: conic-gradient(from var(--angle, 0deg), transparent 40%, rgba(42, 107, 255, 0.5), rgba(138, 92, 255, 0.5), rgba(0, 200, 255, 0.5), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.exp-card:hover::before {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

.exp-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

/* Glow effect behind card on hover */
.exp-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 50%, rgba(42, 107, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.exp-card:hover::after {
    opacity: 1;
}

.exp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.exp-card:hover .exp-icon {
    transform: scale(1.1);
}

.exp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.exp-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==================== SCROLL ANIMATIONS ==================== */

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FOOTER ==================== */

.footer {
    background-color: #060d1a;
    width: 100%;
    padding: 60px 0 30px;
    color: white;
    text-align: center;
}

.footer .top {
    text-align: center;
    opacity: 0.2;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
}

.footer .subtitle {
    font-size: 14px;
    margin-top: 12px;
    letter-spacing: 5px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.subtitle-partner {
    font-size: 13px;
    font-style: italic;
    margin-top: 25px;
    letter-spacing: 3px;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
}

.logo-partner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 0 5%;
}

.logo-partner img {
    max-width: 140px;
    opacity: 0.2;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-partner img:hover {
    opacity: 0.45;
}

.footer .separator {
    width: 90%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 40px auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    gap: 20px;
}

.footer .footer-block {
    text-decoration: none;
}

.footer-block.large {
    flex: 2;
    min-width: 250px;
}

.footer-block.small {
    flex: 1;
    min-width: 180px;
}

.footer-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
    color: white;
}

.footer-content a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #6b9fff;
}

.footer-block p {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.footer-block i {
    color: #6b9fff;
    font-size: 14px;
    margin-right: 8px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-input {
    flex: 1;
    width: auto;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-input::placeholder {
    color: rgba(255,255,255,0.35);
    font-style: italic;
}

.footer-input:focus {
    border-color: #2A6BFF;
    background: rgba(42, 107, 255, 0.08);
}

.newsletter-button {
    background: linear-gradient(135deg, #2A6BFF, #4d8bff);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(42, 107, 255, 0.25);
}

.newsletter-button i {
    font-size: 14px;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(42, 107, 255, 0.4);
}

.footer .bottom-bar {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 10px auto;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer .bottom-bar a {
    text-decoration: none;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.footer .bottom-bar a:hover {
    color: rgba(255,255,255,0.6);
}

.footer .bottom-text {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ==================== SNACKBAR ==================== */

.snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #34c759;
    color: white;
    text-align: center;
    border-radius: 14px;
    padding: 14px 24px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease, bottom 0.5s ease;
    backdrop-filter: blur(8px);
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.snackbar.error {
    background-color: #ff453a;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 280px;
        margin-right: 0;
        background: rgba(6, 13, 26, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 28px;
        display: flex;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
    }

    .header .logo {
        font-size: 13px;
        font-weight: bold;
    }

    .header .logo-container img {
        height: 35px;
        margin-right: 10px;
    }

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

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

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 6% 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

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

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

    .story-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-photo {
        order: -1;
    }

    .story-photo img {
        max-width: 300px;
    }

    .footer .top {
        font-size: 22px;
    }

    .footer .subtitle {
        font-size: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-story {
        padding: 80px 6% 60px;
    }

    .about-values {
        padding: 60px 6% 60px;
    }

    .about-expertise {
        padding: 60px 6% 100px;
    }

    .story-highlight {
        padding: 24px 24px 24px 28px;
    }
}
