/* ============================================
   ANDRAȘ EDUARD GABRIEL — v3 Fluid & Dynamic
   ============================================ */

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

:root {
   --cream: #FFF8F0;
   --sand: #F5EDDF;
   --dark: #1a1a2e;
   --dark-soft: #3a3a52;
   --orange: #FF6B35;
   --purple: #6C5CE7;
   --purple-light: #A29BFE;
   --teal: #00B894;
   --yellow: #FDCB6E;
   --pink: #FD79A8;
   --mint: #DFFEF0;
   --lavender: #E8E0FF;
   --peach: #FFE0D0;
   --font: 'Sora', -apple-system, sans-serif;
   --font-display: 'Space Grotesk', 'Sora', sans-serif;
   --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
   scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased;
}

body {
   font-family: var(--font);
   background: var(--cream);
   color: var(--dark);
   line-height: 1.7;
   overflow-x: hidden;
}

a {
   color: inherit;
   text-decoration: none;
}

/* ---- Custom Cursor removed ---- */

/* ---- Container ---- */
.container {
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 28px;
   position: relative;
   z-index: 2
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 18px 0;
   transition: .35s var(--ease)
}

.nav.scrolled {
   padding: 10px 0;
   background: rgba(255, 248, 240, .92);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   box-shadow: 0 2px 30px rgba(0, 0, 0, .06)
}

.nav-inner {
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 28px;
   display: flex;
   align-items: center;
   justify-content: space-between
}

.nav-logo {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.3rem;
   display: flex;
   align-items: center;
   gap: 8px;
   transition: .3s
}

.logo-dot {
   width: 10px;
   height: 10px;
   background: var(--orange);
   border-radius: 50%;
   animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

   0%,
   100% {
      transform: scale(1);
      opacity: 1
   }

   50% {
      transform: scale(1.4);
      opacity: .6
   }
}

.nav-logo:hover {
   color: var(--purple)
}

.nav-links {
   display: flex;
   gap: 6px;
   align-items: center
}

.nav-links a,
.nav-dropdown-trigger {
   font-size: .85rem;
   font-weight: 600;
   color: var(--dark-soft);
   padding: 8px 18px;
   border-radius: 100px;
   transition: .3s var(--ease);
   cursor: pointer
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown:hover .nav-dropdown-trigger {
   background: var(--dark);
   color: var(--cream)
}

/* Dropdown Desktop */
.nav-dropdown {
   position: relative;
   display: inline-block
}

.nav-dropdown-menu {
   position: absolute;
   top: 100%;
   right: 0;
   background: var(--cream);
   min-width: 240px;
   padding: 12px;
   border-radius: 16px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
   border: 1px solid rgba(0, 0, 0, .05);
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: .3s var(--ease);
   z-index: 100
}

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

.nav-dropdown-menu a {
   display: block;
   padding: 10px 16px;
   font-size: .85rem;
   font-weight: 600;
   color: var(--dark-soft);
   border-radius: 10px;
   transition: .2s
}

.nav-dropdown-menu a:hover {
   background: var(--sand);
   color: var(--dark);
   transform: translateX(5px)
}

/* Dropdown Mobile */
.mm-dropdown {
   margin-top: 12px;
   padding-left: 16px
}

.mm-dropdown-trigger {
   font-family: var(--font-display);
   font-size: 1.8rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 16px;
   cursor: pointer
}

.mm-dropdown-items {
   padding-top: 12px;
   padding-left: 48px;
   display: flex;
   flex-direction: column;
   gap: 12px
}

.mm-dropdown-items a {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--dark-soft);
   opacity: .8
}

.nav-toggle {
   display: none;
   flex-direction: column;
   gap: 6px;
   background: none;
   border: none;
   padding: 8px;
   z-index: 1001;
   cursor: pointer
}

.nav-toggle span {
   width: 24px;
   height: 2.5px;
   background: var(--dark);
   border-radius: 4px;
   transition: .3s;
   display: block
}

.nav-toggle.active span:first-child {
   transform: rotate(45deg) translate(3px, 3px)
}

.nav-toggle.active span:last-child {
   transform: rotate(-45deg) translate(3px, -3px)
}

/* Mobile menu */
.mobile-menu {
   display: none;
   position: fixed;
   inset: 0;
   z-index: 999;
   pointer-events: none
}

.mobile-menu.active {
   pointer-events: all
}

.mobile-menu-bg {
   position: absolute;
   inset: 0;
   background: var(--cream);
   opacity: 0;
   transition: .4s
}

.mobile-menu.active .mobile-menu-bg {
   opacity: .98
}

.mobile-menu-content {
   position: relative;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 0 40px;
   gap: 24px
}

.mobile-menu-content a {
   font-family: var(--font-display);
   font-size: 2.2rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 16px;
   opacity: 0;
   transform: translateX(-30px);
   transition: .4s
}

.mobile-menu.active .mobile-menu-content a {
   opacity: 1;
   transform: translateX(0)
}

.mobile-menu.active .mobile-menu-content a:nth-child(1) {
   transition-delay: .1s
}

.mobile-menu.active .mobile-menu-content a:nth-child(2) {
   transition-delay: .2s
}

.mobile-menu.active .mobile-menu-content a:nth-child(3) {
   transition-delay: .3s
}

.mobile-menu.active .mobile-menu-content a:nth-child(4) {
   transition-delay: .4s
}

.mm-num {
   font-size: .75rem;
   color: var(--orange);
   font-weight: 500
}

/* ==========================================
   HERO — Video background, centered
   ========================================== */
.hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   overflow: hidden
}

.hero-video-wrap {
   position: absolute;
   inset: 0;
   z-index: 0
}

.hero-video {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.hero-video-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(26, 26, 46, .75) 0%, rgba(108, 92, 231, .4) 50%, rgba(255, 107, 53, .3) 100%)
}

.hero-content {
   position: relative;
   z-index: 2;
   padding: 0 28px;
   max-width: 900px
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 22px;
   background: rgba(255, 255, 255, .1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, .2);
   border-radius: 100px;
   font-size: .8rem;
   font-weight: 600;
   color: white;
   margin-bottom: 32px
}

.badge-pulse {
   width: 8px;
   height: 8px;
   background: var(--teal);
   border-radius: 50%;
   animation: pulse 2s ease-in-out infinite
}

.hero-title {
   font-family: var(--font-display);
   font-weight: 800;
   line-height: 1.15;
   letter-spacing: -.04em;
   margin-bottom: 24px;
   color: white
}

.line {
   display: block;
   overflow: visible
}

.word {
   display: inline-block;
   font-size: clamp(3rem, 8vw, 6.5rem)
}

.accent {
   color: var(--orange);
   position: relative
}

.accent::after {
   content: '';
   position: absolute;
   bottom: 6px;
   left: 0;
   width: 100%;
   height: 14px;
   background: var(--yellow);
   opacity: .3;
   border-radius: 4px;
   z-index: -1;
   transform: skewX(-4deg)
}

.hero-sub {
   font-size: clamp(1rem, 2vw, 1.2rem);
   color: rgba(255, 255, 255, .75);
   margin-bottom: 40px;
   line-height: 1.8
}

.hero-btns {
   display: flex;
   gap: 16px;
   justify-content: center;
   flex-wrap: wrap
}

.btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 16px 34px;
   background: var(--orange);
   color: white;
   font-size: .95rem;
   font-weight: 700;
   border-radius: 100px;
   border: 3px solid rgba(255, 255, 255, .3);
   transition: .35s var(--ease);
   font-family: var(--font)
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 40px rgba(255, 107, 53, .35);
   border-color: white
}

.btn-primary svg {
   width: 18px;
   height: 18px;
   transition: .3s
}

.btn-primary:hover svg {
   transform: translateX(4px)
}

.btn-outline {
   display: inline-flex;
   padding: 16px 34px;
   font-size: .95rem;
   font-weight: 700;
   border-radius: 100px;
   border: 2px solid rgba(255, 255, 255, .35);
   color: white;
   transition: .35s var(--ease);
   font-family: var(--font)
}

.btn-outline:hover {
   background: white;
   color: var(--dark);
   border-color: white;
   transform: translateY(-3px)
}

/* Hero scroll hint */
.hero-scroll-hint {
   position: absolute;
   bottom: 36px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   z-index: 2
}

.hero-scroll-hint span {
   font-size: .65rem;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .4)
}

.scroll-bar {
   width: 1.5px;
   height: 36px;
   background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
   animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {

   0%,
   100% {
      opacity: 1;
      transform: scaleY(1)
   }

   50% {
      opacity: .3;
      transform: scaleY(.5)
   }
}

/* Hero entry anims */
.anim-hero {
   opacity: 0;
   transform: translateY(40px);
   animation: heroReveal .8s var(--ease) forwards;
   animation-delay: calc(var(--d) * .15s + .2s)
}

@keyframes heroReveal {
   to {
      opacity: 1;
      transform: translateY(0)
   }
}

/* ==========================================
   SECTION — General
   ========================================== */
.section {
   position: relative;
   padding: 120px 0 140px;
   overflow: hidden
}

.section-wave {
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   height: 80px;
   display: block;
   z-index: 3
}

/* Tags */
.tag-label {
   display: inline-block;
   font-size: .75rem;
   font-weight: 700;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: var(--orange);
   margin-bottom: 16px
}

.tag-label-light {
   color: var(--yellow)
}

/* Big heading */
.big-heading {
   font-family: var(--font-display);
   font-size: clamp(2.2rem, 5vw, 3.8rem);
   font-weight: 800;
   letter-spacing: -.03em;
   line-height: 1.1;
   margin-bottom: 32px
}

.big-heading-light {
   color: white
}

.dot-accent {
   color: var(--orange)
}

.text-gradient {
   background: linear-gradient(135deg, var(--orange), var(--purple));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text
}

.text-gradient-warm {
   background: linear-gradient(135deg, var(--yellow), var(--orange));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text
}

/* Scroll reveal */
.anim-scroll {
   opacity: 0;
   transform: translateY(50px);
   transition: opacity .7s ease, transform .7s var(--ease);
   transition-delay: calc(var(--d, 0) * .1s)
}

.anim-scroll.visible {
   opacity: 1;
   transform: translateY(0)
}

/* ==========================================
   ABOUT — Fluid narrative
   ========================================== */
.about {
   background: var(--sand);
   padding-bottom: 160px
}

.about-video-accent {
   position: absolute;
   top: 80px;
   right: -120px;
   width: 350px;
   height: 350px;
   border-radius: 50%;
   overflow: hidden;
   opacity: .12;
   z-index: 0
}

.about-video-accent video {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.about-narrative {
   max-width: 720px;
   margin: 0 auto 80px
}

.narrative-block {
   margin-bottom: 28px
}

.narrative-text {
   font-size: 1.08rem;
   line-height: 1.9;
   color: var(--dark-soft)
}

.narrative-text strong {
   color: var(--dark);
   font-weight: 700
}

.narrative-highlight {
   position: relative;
   padding: 28px 0 28px 32px;
   margin: 40px 0;
   font-size: 1.2rem;
   font-style: italic;
   line-height: 1.7;
   color: var(--dark)
}

.narrative-highlight em {
   font-style: italic;
   color: var(--purple);
   font-weight: 600
}

.highlight-bar {
   position: absolute;
   left: 0;
   top: 0;
   width: 4px;
   height: 100%;
   background: linear-gradient(to bottom, var(--orange), var(--purple));
   border-radius: 4px
}

.narrative-callout {
   display: flex;
   gap: 20px;
   padding: 32px;
   background: white;
   border-radius: 20px;
   border: 2px solid rgba(26, 26, 46, .06);
   box-shadow: 0 8px 40px rgba(0, 0, 0, .04);
   margin-top: 40px
}

.callout-icon {
   font-size: 2rem;
   flex-shrink: 0;
   width: 56px;
   height: 56px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--lavender);
   border-radius: 16px
}

.callout-content p {
   font-size: .95rem;
   line-height: 1.8;
   color: var(--dark-soft);
   margin-bottom: 12px
}

.callout-content strong {
   color: var(--dark)
}

.inline-email {
   display: inline-block;
   font-weight: 700;
   color: var(--orange);
   font-size: .95rem;
   transition: .3s
}

.inline-email:hover {
   color: var(--purple);
   transform: translateX(4px)
}

/* Floating stats */
.about-stats {
   display: flex;
   justify-content: center;
   gap: 24px;
   flex-wrap: wrap
}

.floating-stat {
   background: white;
   border: 2px solid var(--dark);
   border-radius: 20px;
   padding: 24px 32px;
   text-align: center;
   box-shadow: 5px 5px 0 var(--purple);
   transition: .35s var(--ease);
   animation: statFloat 4s ease-in-out infinite;
   animation-delay: var(--float-delay)
}

.floating-stat:nth-child(2) {
   box-shadow: 5px 5px 0 var(--orange)
}

.floating-stat:nth-child(3) {
   box-shadow: 5px 5px 0 var(--teal)
}

.floating-stat:nth-child(4) {
   box-shadow: 5px 5px 0 var(--pink)
}

.floating-stat:hover {
   transform: translateY(-6px) rotate(-2deg) !important
}

@keyframes statFloat {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-8px)
   }
}

.stat-num {
   display: block;
   font-family: var(--font-display);
   font-size: 1.8rem;
   font-weight: 800;
   margin-bottom: 4px
}

.stat-label {
   font-size: .78rem;
   color: var(--dark-soft);
   line-height: 1.4
}

/* ==========================================
   PROJECTS — Dark bg, 3D Carousel
   ========================================== */
.projects {
   background: var(--dark);
   padding-bottom: 160px
}

.projects-lead {
   color: rgba(255, 255, 255, .55);
   font-size: 1rem;
   max-width: 550px;
   line-height: 1.8
}

/* Projects Grid */
.projects-grid {
   margin-top: 60px;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 24px
}

.project-card {
   background: rgba(255, 255, 255, .07);
   backdrop-filter: blur(14px);
   border: 1.5px solid rgba(255, 255, 255, .1);
   border-radius: 24px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
   box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
   cursor: pointer;
   text-decoration: none;
   color: inherit
}

.project-card:hover {
   border-color: rgba(255, 255, 255, .25);
   transform: translateY(-8px);
   box-shadow: 0 20px 50px rgba(0, 0, 0, .35)
}

.c3d-visual {
   height: 160px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden
}

.c3d-v1 {
   background: linear-gradient(135deg, #DFFEF0, #90E8C0)
}

.c3d-v2 {
   background: linear-gradient(135deg, #E8E0FF, #B8A0FF)
}

.c3d-v3 {
   background: linear-gradient(135deg, #DFFEF0, #80D8B0)
}

.c3d-v4 {
   background: linear-gradient(135deg, #FFE0D0, #FFB090)
}

.c3d-v5 {
   background: linear-gradient(135deg, #FFF3D0, #FFD870)
}

.c3d-v6 {
   background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03))
}

.c3d-emoji {
   font-size: 4rem;
   filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .15));
   transition: .4s var(--ease)
}

.c3d-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top center;
   transition: .5s var(--ease)
}

.project-card:hover .c3d-img {
   transform: scale(1.05)
}

.c3d-body {
   padding: 20px 24px;
   flex: 1;
   display: flex;
   flex-direction: column
}

.c3d-status {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: .68rem;
   font-weight: 700;
   padding: 4px 12px;
   border-radius: 100px;
   width: fit-content;
   margin-bottom: 10px
}

.c3d-final {
   background: rgba(0, 184, 148, .12);
   color: var(--teal);
   border: 1px solid rgba(0, 184, 148, .2)
}

.c3d-dev {
   background: rgba(253, 203, 110, .12);
   color: var(--yellow);
   border: 1px solid rgba(253, 203, 110, .2)
}

.c3d-dot-green {
   width: 6px;
   height: 6px;
   background: var(--teal);
   border-radius: 50%;
   display: inline-block
}

.c3d-dot-pulse {
   width: 6px;
   height: 6px;
   background: var(--yellow);
   border-radius: 50%;
   display: inline-block;
   animation: pulse 1.5s ease-in-out infinite
}

.c3d-body h3 {
   font-family: var(--font-display);
   font-size: 1.3rem;
   font-weight: 700;
   color: white;
   margin-bottom: 6px
}

.c3d-body p {
   font-size: .82rem;
   color: rgba(255, 255, 255, .5);
   line-height: 1.55;
   flex: 1
}

.c3d-link {
   font-size: .72rem;
   font-weight: 600;
   color: var(--orange);
   margin-top: 8px;
   transition: .3s
}

.project-card-more .c3d-body {
   align-items: center;
   justify-content: center;
   text-align: center
}

.c3d-dots {
   display: flex;
   gap: 5px;
   justify-content: center;
   margin-bottom: 10px
}

.c3d-dots span {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .2);
   animation: dotBounce 1.5s ease-in-out infinite
}

.c3d-dots span:nth-child(2) {
   animation-delay: .2s
}

.c3d-dots span:nth-child(3) {
   animation-delay: .4s
}

@keyframes dotBounce {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-6px)
   }
}

/* ==========================================
   LANGUAGES
   ========================================== */
.languages {
   background: var(--cream);
   padding-bottom: 160px
}

/* Section 3D background text */
.section-3d-text {
   position: absolute;
   top: -10px;
   right: -30px;
   font-family: var(--font-display);
   font-size: clamp(2rem, 5vw, 3.8rem);
   font-weight: 900;
   letter-spacing: -.03em;
   line-height: .9;
   white-space: nowrap;
   z-index: 0;
   text-transform: uppercase;
   cursor: default
}

.l3d-layer {
   position: absolute;
   top: 0;
   right: 0;
   transition: ease .3s all
}

.l3d-back {
   color: rgba(108, 92, 231, .08)
}

.l3d-front {
   color: rgba(255, 107, 53, .1);
   z-index: 1
}

.l3d-back-light {
   color: rgba(162, 155, 254, .1)
}

.l3d-front-light {
   color: rgba(253, 203, 110, .08);
   z-index: 1
}

.section-3d-text:hover .l3d-front,
.section-3d-text:hover .l3d-front-light {
   top: -4px;
   right: -4px
}

.section-3d-text:hover .l3d-back,
.section-3d-text:hover .l3d-back-light {
   top: 4px;
   right: 4px
}

.lang-grid {
   display: flex;
   gap: 20px;
   margin-bottom: 48px;
   flex-wrap: wrap
}

.lang-big {
   flex: 1;
   min-width: 220px;
   background: white;
   border: 3px solid var(--dark);
   border-radius: 20px;
   padding: 28px;
   box-shadow: 5px 5px 0 var(--purple);
   transition: .35s var(--ease)
}

.lang-big:nth-child(2) {
   box-shadow: 5px 5px 0 var(--orange)
}

.lang-big:nth-child(3) {
   box-shadow: 5px 5px 0 var(--teal)
}

.lang-big:hover {
   transform: translate(-3px, -3px) rotate(-1deg)
}

.lang-big-flag {
   font-size: 2.2rem;
   margin-bottom: 12px
}

.lang-big-info {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 16px
}

.lang-big-info h3 {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.1rem
}

.lang-tag {
   font-size: .7rem;
   font-weight: 700;
   padding: 4px 12px;
   border-radius: 100px
}

.lang-tag-native {
   background: var(--lavender);
   color: var(--purple)
}

.lang-tag-fluent {
   background: var(--peach);
   color: var(--orange)
}

.lang-tag-inter {
   background: var(--mint);
   color: var(--teal)
}

.lang-progress {
   height: 6px;
   background: var(--sand);
   border-radius: 100px;
   overflow: hidden
}

.lang-progress-fill {
   height: 100%;
   border-radius: 100px;
   background: linear-gradient(90deg, var(--orange), var(--purple));
   width: 0;
   transition: width 1.5s var(--ease)
}

.lang-progress-fill.animated {
   width: var(--w) !important
}

/* Learning */
.lang-learning-section {
   margin-top: 20px
}

.learning-divider {
   display: flex;
   align-items: center;
   gap: 20px;
   margin-bottom: 24px
}

.learning-divider span {
   flex: 1;
   height: 2px;
   background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 12px);
   opacity: .3
}

.learning-divider p {
   font-size: .8rem;
   font-weight: 700;
   color: var(--dark-soft);
   text-transform: uppercase;
   letter-spacing: .1em;
   white-space: nowrap
}

.lang-chips {
   display: flex;
   gap: 12px;
   flex-wrap: wrap
}

.lang-chip-new {
   padding: 14px 26px;
   background: white;
   border: 2px solid rgba(26, 26, 46, .08);
   border-radius: 100px;
   font-size: .95rem;
   font-weight: 600;
   transition: .35s var(--ease)
}

.lang-chip-new:hover {
   border-color: var(--purple);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(108, 92, 231, .1)
}

.lang-chip-more {
   border-style: dashed;
   color: var(--dark-soft)
}

.lang-chip-more:hover {
   border-color: var(--orange);
   color: var(--orange)
}

/* ==========================================
   CONTACT — Video bg, centered
   ========================================== */
.contact {
   position: relative;
   padding: 140px 0;
   text-align: center;
   overflow: hidden
}

.contact-video-wrap {
   position: absolute;
   inset: 0;
   z-index: 0
}

.contact-video {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.contact-video-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(255, 107, 53, .88), rgba(108, 92, 231, .75))
}

.contact-center {
   position: relative;
   z-index: 2;
   max-width: 600px;
   margin: 0 auto
}

.contact-heading {
   font-family: var(--font-display);
   font-size: clamp(2rem, 5vw, 3.5rem);
   font-weight: 800;
   letter-spacing: -.03em;
   color: white;
   line-height: 1.12;
   margin-bottom: 20px
}

.contact-accent {
   position: relative
}

.contact-accent::after {
   content: '';
   position: absolute;
   bottom: 2px;
   left: -4px;
   right: -4px;
   height: 14px;
   background: var(--yellow);
   opacity: .4;
   border-radius: 4px;
   z-index: -1;
   transform: skewX(-3deg)
}

.contact-desc {
   font-size: 1rem;
   color: rgba(255, 255, 255, .75);
   line-height: 1.8;
   margin-bottom: 40px
}

.contact-big-btn {
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 20px 36px;
   background: white;
   color: var(--dark);
   font-size: 1rem;
   font-weight: 700;
   border-radius: 100px;
   border: 3px solid var(--dark);
   box-shadow: 5px 5px 0 var(--dark);
   transition: .35s var(--ease);
   font-family: var(--font)
}

.contact-big-btn:hover {
   transform: translate(-3px, -3px);
   box-shadow: 8px 8px 0 rgba(0, 0, 0, .3);
   background: var(--cream)
}

.contact-btn-arrow {
   display: flex;
   align-items: center
}

.contact-btn-arrow svg {
   width: 20px;
   height: 20px;
   transition: .3s
}

.contact-big-btn:hover .contact-btn-arrow svg {
   transform: translateX(5px)
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
   background: var(--dark);
   padding: 36px 0
}

.footer-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 16px
}

.footer-logo {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.15rem;
   color: white;
   display: flex;
   align-items: center;
   gap: 8px;
   transition: .3s
}

.footer-logo:hover {
   color: var(--orange)
}

.footer-logo .logo-dot {
   background: var(--orange)
}

.footer-links {
   display: flex;
   gap: 24px
}

.footer-links a {
   font-size: .82rem;
   color: rgba(255, 255, 255, .4);
   font-weight: 500;
   transition: .3s
}

.footer-links a:hover {
   color: white
}

.footer-copy {
   font-size: .75rem;
   color: rgba(255, 255, 255, .25)
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media(max-width:768px) {
   .nav-links {
      display: none
   }

   .nav-toggle {
      display: flex
   }

   .mobile-menu {
      display: block
   }

   .section {
      padding: 80px 0 120px
   }

   .word {
      font-size: clamp(2.5rem, 12vw, 3.5rem)
   }

   .hero-btns {
      flex-direction: column;
      align-items: stretch
   }

   .btn-primary,
   .btn-outline {
      justify-content: center
   }

   .about-video-accent {
      display: none
   }

   .narrative-callout {
      flex-direction: column;
      align-items: center;
      text-align: center
   }

   .about-stats {
      gap: 12px
   }

   .floating-stat {
      padding: 18px 22px
   }

   .stat-num {
      font-size: 1.4rem
   }

   .project-slide {
      flex: 0 0 280px
   }

   .section-3d-text {
      font-size: 1.8rem;
      right: -10px;
      top: -5px
   }

   .lang-grid {
      flex-direction: column
   }

   .lang-big {
      min-width: 100%
   }

   .contact-big-btn {
      font-size: .85rem;
      padding: 16px 24px
   }

   .footer-inner {
      flex-direction: column;
      text-align: center
   }

   .footer-links {
      flex-wrap: wrap;
      justify-content: center
   }

   .mobile-menu-content a {
      font-size: 1.8rem
   }
}

@media(max-width:480px) {
   .floating-stat {
      flex: 0 0 calc(50% - 8px)
   }

   .about-stats {
      justify-content: stretch
   }

   .lang-chips {
      flex-direction: column
   }

   .lang-chip-new {
      text-align: center;
      justify-content: center
   }
}

/* Selection & Scrollbar */
::selection {
   background: rgba(108, 92, 231, .25)
}

::-webkit-scrollbar {
   width: 6px
}

::-webkit-scrollbar-track {
   background: var(--cream)
}

::-webkit-scrollbar-thumb {
   background: var(--purple-light);
   border-radius: 100px
}

::-webkit-scrollbar-thumb:hover {
   background: var(--purple)
}