/* Mobile navigation — full-screen corporate menu */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.mobile-menu-brand {
  display: none;
}

.mobile-language-copy {
  display: none;
}

.mobile-navbar-language {
  display: none;
}

.brand-name {
  display: none;
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    z-index: 55;
    inset: 0;
    background: rgba(22, 16, 34, .42);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header {
    z-index: 60;
    top: 12px;
    padding: 0 14px;
  }

  .navbar {
    height: 68px;
    min-height: 68px;
    padding: 2px 10px 2px 14px;
    border: 1px solid rgba(249, 200, 9, .24);
    border-radius: 18px;
    background: rgba(94, 23, 235, .96);
    box-shadow: 0 12px 34px rgba(35, 10, 90, .22), inset 0 1px rgba(255, 255, 255, .16);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
  }

  .navbar::after {
    display: none;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    pointer-events: none;
  }

  .navbar > .brand {
    border-radius: 14px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  .navbar > .brand .brand-name {
    --brand-name-width: clamp(99px, calc(47vw - 51px), 165px);
    position: relative;
    display: none;
    align-items: center;
    width: var(--brand-name-width);
    flex: 0 0 var(--brand-name-width);
    margin-left: clamp(1px, .8vw, 4px);
    color: var(--purple);
    font-family: "Rubik Doodle Shadow", "Poppins", sans-serif;
    font-size: clamp(13px, calc(6.5vw - 8px), 22px);
    font-style: normal;
    font-weight: 400;
    font-synthesis: none;
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(3px);
  }

  .navbar > .brand .brand-name-text {
    display: inline-block;
    max-width: 100%;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }

  .navbar > .brand .brand-name.is-typing .brand-name-text {
    animation: brandNameType .84s steps(14, end) .12s both;
  }

  .navbar > .brand .brand-name.is-typing::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 2px;
    height: 1.12em;
    border-radius: 999px;
    background: currentColor;
    animation:
      brandNameCaretMove .84s steps(14, end) .12s both,
      brandNameCaretHide 1ms linear .96s forwards;
    pointer-events: none;
  }

  body.menu-open .navbar > .brand .brand-name {
    display: inline-flex;
    color: var(--purple);
  }

  .navbar > .brand:focus-visible {
    outline: 2px solid rgba(249, 200, 9, .9);
    outline-offset: 2px;
  }

  .menu-button {
    --burger-line-width: 34px;
    --burger-line-half: 17px;
    --burger-line-height: 5px;
    --burger-line-half-height: 2.5px;
    --burger-line-gap: 5px;
    --burger-line-step: calc(var(--burger-line-height) + var(--burger-line-gap));
    --burger-middle-top: calc(50% - 3px);
    position: relative;
    z-index: 72;
    display: block;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 16px;
    color: #15111d;
    background: transparent !important;
    box-shadow: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(221, 209, 255, .18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color .18s ease, box-shadow .18s ease;
  }

  .menu-button:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .menu-button span {
    position: absolute;
    left: calc(50% - var(--burger-line-half));
    display: block;
    width: var(--burger-line-width) !important;
    height: var(--burger-line-height) !important;
    border-radius: 999px;
    background-color: #fff !important;
    transform-origin: center;
    transition: none;
  }

  .menu-close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: var(--burger-line-width);
    height: var(--burger-line-width);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(90deg) scale(.78);
    transform-origin: 50% 50%;
    transition: transform .26s cubic-bezier(.4, 0, .2, 1), opacity .18s ease, visibility 0s linear .26s;
  }

  .menu-close-icon::before,
  .menu-close-icon::after {
    content: "";
    position: absolute;
    top: calc(50% - var(--burger-line-half-height));
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    border-radius: 999px;
    background-color: var(--purple);
    transform-origin: center;
  }

  .menu-close-icon::before { transform: rotate(45deg); }
  .menu-close-icon::after { transform: rotate(-45deg); }

  .menu-button span:nth-child(1) {
    top: calc(var(--burger-middle-top) - var(--burger-line-step));
  }

  .menu-button span:nth-child(2) {
    top: var(--burger-middle-top);
  }

  .menu-button span:nth-child(3) {
    top: calc(var(--burger-middle-top) + var(--burger-line-step));
  }

  .menu-button[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-close-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    transition-delay: 0s, 0s, 0s;
  }

  .nav-content {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    width: min(88vw, 380px);
    height: 100vh;
    height: 100dvh;
    padding: 96px 22px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-left: 1px solid rgba(94, 23, 235, .12);
    border-radius: 0;
    color: var(--ink);
    background: #ffffff;
    box-shadow: -24px 0 60px rgba(35, 10, 90, .18);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: hidden;
    transform: translate3d(105%, 0, 0);
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), visibility .38s;
  }

  .nav-content.is-open {
    display: flex;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .nav-links {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 4px;
  }

  .nav-links::before {
    content: "MENÜ";
    display: block;
    margin: 0 0 10px 12px;
    color: #9289a1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
  }

  html[lang="en"] .nav-links::before {
    content: "MENU";
  }

  .nav-content .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 11px;
    color: #342b42;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: color .18s ease, background .18s ease;
  }

  .nav-content .nav-links a:hover,
  .nav-content .nav-links a:focus-visible {
    color: var(--purple);
    background: rgba(94, 23, 235, .07);
    outline: none;
  }

  .nav-content .nav-links a[aria-current="page"] {
    color: var(--purple);
    background: rgba(94, 23, 235, .10);
  }

  .nav-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row-reverse;
    align-items: center;
    width: auto;
    margin: 0 6px 0 auto;
    padding: 0;
    gap: 6px;
    border: 0;
  }

  .language-selector {
    width: 46px;
    flex: 0 0 46px;
  }

  .language-btn {
    justify-content: center;
    width: 46px !important;
    height: 44px;
    padding: 0 7px;
    gap: 4px;
    border-color: rgba(255, 255, 255, .26);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px rgba(255, 255, 255, .12);
  }

  .language-btn:hover,
  .language-btn:focus-visible,
  .language-selector.open .language-btn {
    color: #fff;
    background: rgba(255, 255, 255, .19);
    border-color: rgba(255, 255, 255, .46);
  }

  .language-btn .language-chevron {
    width: 9px;
    height: 9px;
    margin-left: 0;
  }

  .language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    z-index: 90;
    display: grid;
    width: 176px;
    min-width: 176px;
    max-height: none;
    margin: 0;
    padding: 7px;
    overflow: visible;
    border: 1px solid rgba(94, 23, 235, .12);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(35, 10, 90, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .language-dropdown a {
    min-height: 38px;
    padding: 7px 9px;
  }

  .nav-actions .cta {
    grid-column: auto;
    width: auto;
    min-width: 96px;
    height: 44px;
    padding: 0 12px;
    gap: 7px;
    border-color: var(--yellow);
    border-radius: 10px;
    color: #21173a;
    background: var(--yellow);
    box-shadow: 0 8px 18px rgba(35, 10, 90, .18);
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
  }

  .nav-actions .cta::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .14);
  }

  .nav-actions .cta:hover,
  .nav-actions .cta:focus-visible {
    color: #21173a;
    background: #ffd52b;
    border-color: #ffd52b;
    box-shadow: 0 10px 22px rgba(35, 10, 90, .22);
  }

  .hero {
    min-height: 100svh;
    padding: 128px 18px 64px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .16em;
    text-wrap: balance;
  }

  .hero h1 {
    max-width: min(100%, 880px);
    font-size: clamp(30px, 6vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .hero h1 .hero-line {
    display: block;
    white-space: nowrap;
  }

  .hero h1 .hero-line + .hero-line {
    margin-top: .045em;
  }

  .hero h1 .hero-accent {
    display: inline;
    white-space: nowrap;
  }

  html[lang="en"] .hero h1 .hero-line {
    white-space: normal;
  }

  .hero-copy {
    max-width: 560px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  html[lang="tr"] .hero h1 {
    font-size: clamp(19px, 6.1vw, 29px);
  }

  html[lang="tr"] .hero h1 .hero-line:first-child {
    white-space: nowrap;
  }

  html[lang="tr"] .hero h1 .hero-line:first-child > .hero-accent {
    display: inline;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0 10px;
  }

  .nav-content {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(23px, 7.2vw, 30px);
    line-height: 1.12;
    letter-spacing: -.04em;
  }

  .hero-copy {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 59px;
    height: 59px;
  }

  .navbar > .brand .brand-name {
    margin-left: 1px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 340px) {
  .navbar {
    padding-right: 7px;
    padding-left: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .navbar > .brand .brand-name {
    margin-left: 0;
  }

  .nav-actions {
    margin-right: 3px;
    gap: 4px;
  }

  .language-selector,
  .language-btn {
    width: 42px !important;
    flex-basis: 42px;
  }

  .language-btn {
    padding: 0 5px;
    gap: 3px;
  }

  .language-btn .language-chevron {
    width: 8px;
    height: 8px;
  }

  .nav-actions .cta {
    width: auto;
    min-width: 84px;
    padding: 0 8px;
    gap: 5px;
    font-size: 11px;
  }

  html[lang="en"] .nav-actions .cta {
    min-width: 90px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

}

/* Final full-screen mobile menu layout */
@media (max-width: 980px) {
  body::before,
  body.menu-open::before {
    display: none;
  }

  .navbar > .brand {
    transition: opacity .2s ease, visibility .2s ease;
  }

  body.menu-open .navbar {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .menu-button::before {
    top: 50%;
    height: 40px;
    border-radius: 11px;
    background: rgba(94, 23, 235, .10);
    box-shadow: inset 0 0 0 1px rgba(94, 23, 235, .14);
  }

  body.menu-open .navbar > .brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-content {
    inset: 0;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 12px 14px 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transform: translate3d(100%, 0, 0);
  }

  .nav-content.is-open {
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    width: 100%;
    height: 68px;
    min-height: 68px;
    margin: 0;
    padding: 6px 164px 6px 14px;
    gap: 13px;
    border: 1px solid rgba(249, 200, 9, .24);
    border-radius: 18px;
    background: rgba(94, 23, 235, .98);
    box-shadow: 0 12px 30px rgba(55, 13, 139, .20), inset 0 1px rgba(255, 255, 255, .16);
  }

  .mobile-menu-logo {
    display: block;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  .mobile-menu-identity {
    display: flex;
    align-items: center;
    align-self: center;
    height: 100%;
    min-width: 0;
  }

  .mobile-menu-identity strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
  }

  .nav-links {
    margin-top: 24px;
    gap: 3px;
  }

  .nav-links::before {
    margin: 0 0 9px 14px;
  }

  .nav-content .nav-links a {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: auto 0 0;
    padding: 20px 0 0;
    gap: 10px;
    border-top: 1px solid rgba(94, 23, 235, .11);
  }

  .language-selector {
    width: 100%;
    flex: 0 0 auto;
  }

  .language-btn {
    justify-content: flex-start;
    width: 100% !important;
    height: 48px;
    padding: 0 14px;
    gap: 10px;
    border: 1px solid rgba(94, 23, 235, .13);
    border-radius: 11px;
    color: #342b42;
    background: #f8f6fc;
    box-shadow: none;
  }

  .language-btn:hover,
  .language-btn:focus-visible,
  .language-selector.open .language-btn {
    color: var(--purple);
    border-color: rgba(94, 23, 235, .26);
    background: rgba(94, 23, 235, .07);
  }

  .language-btn .language-chevron {
    width: 10px;
    height: 10px;
    margin-left: auto;
  }

  .mobile-language-copy {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
    color: #342b42;
    font-size: 12.5px;
    font-weight: 650;
    letter-spacing: 0;
  }

  .mobile-language-copy strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    color: var(--purple);
    background: rgba(94, 23, 235, .09);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
  }

  .language-dropdown {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 6px;
    overflow: hidden;
    border: 0;
    border-radius: 11px;
    background: #fff;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height .25s ease, margin .25s ease, padding .25s ease, opacity .18s ease, visibility .18s ease;
  }

  .language-selector.open .language-dropdown {
    max-height: 132px;
    margin-top: 6px;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(94, 23, 235, .12);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .language-dropdown a {
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 8px;
  }

  .nav-actions .cta {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border-color: var(--purple);
    border-radius: 11px;
    color: #fff;
    background: var(--purple);
    box-shadow: 0 10px 24px rgba(94, 23, 235, .20);
    font-size: 13px;
  }

  .nav-actions .cta:hover,
  .nav-actions .cta:focus-visible {
    color: #fff;
    border-color: #5011cf;
    background: #5011cf;
    box-shadow: 0 10px 24px rgba(94, 23, 235, .24);
    transform: none;
  }
}

@media (max-width: 420px) {
  .nav-content {
    width: 100%;
    padding: 12px 10px 20px;
  }

  .mobile-menu-brand {
    height: 68px;
    min-height: 68px;
    margin: 0;
    padding: 6px 164px 6px 14px;
    gap: 11px;
  }

  .mobile-menu-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .mobile-menu-identity strong {
    font-size: 17px;
  }

  .nav-links {
    margin-top: 20px;
  }

  .nav-content .nav-links a {
    min-height: 48px;
  }
}

@media (max-width: 340px) {
  .mobile-menu-brand {
    padding-right: 147px;
    padding-left: 10px;
  }

  .mobile-menu-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .mobile-menu-identity strong {
    font-size: 14px;
  }

  .nav-links::before {
    margin-left: 10px;
  }

  .nav-content .nav-links a {
    padding-left: 10px;
  }

  .nav-actions {
    width: 100%;
    margin: auto 0 0;
    gap: 8px;
  }

  .language-selector,
  .language-btn {
    width: 100% !important;
    flex-basis: auto;
  }

  .language-btn {
    padding: 0 12px;
    gap: 9px;
  }

  .nav-actions .cta,
  html[lang="en"] .nav-actions .cta {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* Clean mobile menu header and persistent language control */
@media (max-width: 980px) {
  .mobile-menu-brand {
    display: none;
  }

  .nav-links {
    margin-top: 0;
  }

  .nav-links::before {
    display: flex;
    align-items: center;
    min-height: 68px;
    margin: 0 0 12px 14px;
    color: #756c84;
    font-size: 12px;
    letter-spacing: .18em;
  }

  .nav-content .nav-links a {
    padding-right: 11px;
  }

  .nav-content .nav-links a::after {
    content: "";
    width: 48px;
    height: 24px;
    flex: 0 0 48px;
    margin-left: auto;
    margin-right: 0;
    border: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.25 4.5l7.5 7.5-7.5 7.5' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.25 4.5l7.5 7.5-7.5 7.5' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
    opacity: .48;
    transform: translateX(0);
    transform-origin: center;
    transition: opacity .2s ease, transform .24s cubic-bezier(.22, 1, .36, 1);
  }

  .nav-content .nav-links a:hover::after,
  .nav-content .nav-links a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-content .nav-links a[aria-current="page"]::after {
    opacity: .9;
  }

  .nav-actions .language-selector {
    display: none;
  }

  .mobile-navbar-language {
    position: relative;
    z-index: 74;
    display: flex;
    align-items: center;
    width: 70px;
    height: 48px;
    flex: 0 0 70px;
    margin: 0 14px 0 auto;
    line-height: 0;
  }

  .menu-button {
    margin-left: 0;
  }

  .mobile-navbar-language .language-btn {
    position: relative;
    justify-content: flex-start;
    width: 70px !important;
    min-width: 70px;
    height: 40px;
    padding: 0 0 0 13px;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px rgba(255, 255, 255, .12);
  }

  .mobile-navbar-language .language-btn:hover,
  .mobile-navbar-language .language-btn:focus-visible,
  .mobile-navbar-language.open .language-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .20);
  }

  .mobile-navbar-language .mobile-language-copy {
    display: none;
  }

  .mobile-navbar-language .mobile-language-copy > span {
    display: none;
  }

  .mobile-navbar-language .mobile-language-copy strong {
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    color: currentColor;
    background: transparent;
    font-size: 10px;
  }

  .mobile-navbar-language .language-btn .language-chevron {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 15px;
    margin: 0;
    transform: translateY(-50%);
    transform-origin: center;
    transition: transform .2s ease;
  }

  .mobile-navbar-language.open .language-btn .language-chevron {
    transform: translateY(-50%) rotate(180deg);
  }

  .mobile-navbar-language .language-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: auto;
    width: 180px;
    min-width: 180px;
    max-height: none;
    margin: 0;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(94, 23, 235, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(35, 10, 90, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .mobile-navbar-language.open .language-dropdown {
    max-height: none;
    margin: 0;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.menu-open .mobile-navbar-language .language-btn {
    color: #342b42;
    border-color: rgba(94, 23, 235, .14);
    background: #f8f6fc;
    box-shadow: none;
  }

  body.menu-open .mobile-navbar-language .language-btn:hover,
  body.menu-open .mobile-navbar-language .language-btn:focus-visible,
  body.menu-open .mobile-navbar-language.open .language-btn {
    color: var(--purple);
    border-color: rgba(94, 23, 235, .28);
    background: rgba(94, 23, 235, .08);
  }

}

@media (max-width: 340px) {
  .nav-content .nav-links a::after {
    margin-right: 0;
  }

  .mobile-navbar-language {
    width: 64px;
    height: 46px;
    flex-basis: 64px;
    margin-right: 10px;
  }

  .mobile-navbar-language .language-btn {
    width: 64px !important;
    min-width: 64px;
    height: 40px;
    padding-left: 10px;
    gap: 0;
    border-radius: 11px;
  }

  .mobile-navbar-language .language-btn .language-chevron {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-content,
  .nav-content .nav-links a::after,
  .menu-button span,
  .menu-button::before,
  .menu-close-icon,
  .nav-actions .cta,
  body::before {
    transition: none !important;
    animation: none !important;
  }
}

/* Restored compact mobile trigger geometry. */
@media (max-width: 980px) {
  .menu-button {
    display: block;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-left: 0;
    padding: 0;
  }

  .menu-button::before {
    top: 50%;
    left: 50%;
    width: 48px;
    height: 40px;
    border-radius: 12px;
    transform: translate(-50%, -50%);
  }

  .mobile-navbar-language {
    height: 48px;
  }

  .mobile-navbar-language .language-btn {
    height: 40px;
  }
}

/* Responsive quote-button wording. */
.quote-menu-visual {
  display: none;
}

.cta .cta-label-desktop {
  display: inline !important;
  color: #fff !important;
  font-size: inherit;
}

.cta .cta-label-mobile {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-content {
    padding-bottom: 18px;
  }

  .nav-content .nav-links {
    gap: 6px;
  }

  .nav-content .nav-links::before {
    content: "";
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #756c84;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .1em;
  }

  html[lang="en"] .nav-content .nav-links::before {
    content: "";
  }

  body.menu-open .navbar > .brand {
    position: relative;
    z-index: 72;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open .navbar > .brand .brand-logo {
    content: url("logo/mor-arı.png");
  }

  .nav-content .nav-links a {
    position: relative;
    min-height: 44px;
    padding-left: 26px;
    border-top: 0;
  }

  .nav-content .nav-links a::before {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    left: 0;
    height: 1px;
    border-radius: 0;
    background: rgba(94, 23, 235, .11);
    pointer-events: none;
  }

  .nav-content > .quote-menu-visual {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 37 / 25;
    margin: auto auto 10px;
    object-fit: cover;
    object-position: center 30%;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  .nav-content > .quote-menu-visual + .nav-actions {
    margin-top: 0;
  }

  .nav-actions .cta {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 24px;
    border: solid #410c9e;
    border-width: 0 0 4px;
    border-radius: 16px;
    color: #fff !important;
    background: #5e17eb;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: .8px;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: filter .08s ease, transform .08s ease, border-width .08s ease;
  }

  .nav-actions .cta:hover,
  .nav-actions .cta:focus-visible {
    color: #fff !important;
    border-color: #410c9e;
    background: #5e17eb;
    box-shadow: none;
    filter: brightness(1.06);
    transform: none;
  }

  .nav-actions .cta:focus-visible {
    outline: 3px solid rgba(249, 200, 9, .48);
    outline-offset: 3px;
  }

  .nav-actions .cta:active,
  .nav-actions .cta.is-pressing {
    color: #fff !important;
    border-color: #410c9e;
    border-bottom-width: 0;
    background: #5e17eb;
    box-shadow: none;
    filter: brightness(.96);
    transform: translateY(4px);
  }

  .nav-actions .cta .cta-label-desktop {
    display: none !important;
  }

  .nav-actions .cta .cta-label-mobile {
    position: relative;
    z-index: 2;
    display: inline !important;
    color: #fff !important;
    opacity: 1;
    visibility: visible;
  }

  .nav-actions .cta::before {
    position: relative;
    left: -4px;
    z-index: 2;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
  }
}

/* Final mobile menu label and bee-tail alignment. */
@media (max-width: 980px) {
  html[lang="en"] .nav-content .nav-links::before {
    content: "";
  }
}

@media (max-width: 340px) {
  .nav-content .nav-links a {
    padding-left: 20px;
  }
}

@keyframes brandNameType {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  to {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

@keyframes brandNameCaretMove {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(calc(var(--brand-name-width) - 2px), -50%);
  }
}

@keyframes brandNameCaretHide {
  to {
    opacity: 0;
  }
}

@media (max-width: 980px) and (prefers-reduced-motion: reduce) {
  .navbar > .brand .brand-name.is-typing .brand-name-text {
    -webkit-clip-path: none;
    clip-path: none;
    animation: none !important;
  }

  .navbar > .brand .brand-name.is-typing::after {
    display: none;
    animation: none !important;
  }
}

/* Desktop quote CTA: preserve its existing visuals, add only chunky press depth. */
@media (min-width: 981px) {
  .nav-actions .cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .12),
      inset 0 -4px rgba(35, 10, 90, .3);
    transform: translateY(0);
    transition: border-color .2s ease, background .2s ease, box-shadow .12s ease, transform .12s ease;
  }

  .nav-actions .cta::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -1px;
    border-radius: inherit;
    background: rgba(255, 255, 255, .18);
    opacity: 0;
    pointer-events: none;
  }

  .nav-actions .cta:hover::after {
    inset: auto;
    top: -38%;
    bottom: -38%;
    left: -55%;
    width: 46%;
    border-radius: 46%;
    background: linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, .08) 26%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .08) 74%, transparent 92%);
    opacity: 0;
    filter: blur(2.4px);
    transform: translateX(0) skewX(-12deg);
    animation: desktopCtaHoverSweep 1.6s cubic-bezier(.34, .04, .18, 1) both;
  }

  .nav-actions .cta .cta-label-desktop {
    position: relative;
    z-index: 1;
  }

  .nav-actions .cta::before {
    position: relative;
    z-index: 1;
  }

  .nav-actions .cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .1);
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .12),
      inset 0 -4px rgba(35, 10, 90, .3);
    transform: translateY(0);
  }

  .nav-actions .cta:focus-visible {
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .2),
      inset 0 -4px rgba(35, 10, 90, .3);
  }

  .nav-actions .cta:active {
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .12),
      inset 0 -1px rgba(35, 10, 90, .3);
    transform: translateY(2px);
  }
}

@keyframes desktopCtaHoverSweep {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-12deg);
  }

  18% {
    opacity: .6;
  }

  72% {
    opacity: .68;
  }

  100% {
    opacity: 0;
    transform: translateX(390%) skewX(-12deg);
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .nav-actions .cta::after {
    animation: none;
  }
}
