      :root {
        --primary: #b90000;
        --black: #000;
        --white: #fff;
        --gray: #f5f5f7;
        --text: #0a0a0a;
        --muted: #5f6368;
        --radius: 16px;
        --radius-sm: 12px;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --container: 1200px;
      }

      html {
        scroll-behavior: smooth;
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
      }

      body {
        font-family: -apple-system, system-ui, Segoe UI, Roboto, Helvetica,
          Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--text);
        background: var(--white);
        line-height: 1.5;
      }

      body.nav-lock-scroll {
        overflow: hidden;
      }

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

      img {
        max-width: 100%;
        display: block;
      }

      .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 20px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.9rem 1.2rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s ease;
        justify-content: space-between;
      }

      .btn-disabled {
        background: rgba(0, 0, 0, 0.05);
        color: rgba(0, 0, 0, 0.3);
        cursor: not-allowed;
        pointer-events: none;
      }

      .btn-primary {
        background: var(--primary);
        color: #fff;
      }

      .btn-primary:hover {
        filter: brightness(0.95);
      }

      .btn-primary svg {
        width: 16px;
        height: 16px;
      }

      .btn-outline {
        background: #fff;
        border-color: #e6e6ea;
      }

      .btn-outline:hover {
        border-color: #d0d0d6;
      }

      .btn-outline:after {
        content: "→";
        margin-left: 0.4rem;
        font-weight: 700;
      }

      .tag {
        position: absolute;
        top: 14px;
        left: 14px;
        font-weight: 700;
        font-size: 0.72rem;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        border: 1px solid #eee;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        z-index: 3;
      }

      .tag-new {
        background: #eaf6ee;
        border-color: #d9efe0;
        color: #19692c;
      }

      .tag-soon {
        background: #fff6e5;
        border-color: #ffe1a6;
        color: #b45d00;
      }

      .shadow {
        box-shadow: var(--shadow);
      }

      .card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius);
        padding: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
      }

      .card img {
        border-radius: var(--radius-sm);
        margin-bottom: 14px;
      }

      #ozellikler .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
      }

      .reveal-on-scroll {
        opacity: 0;
        transform: translateY(42px) scale(0.98);
        transition: opacity 0.65s ease, transform 0.65s ease;
        will-change: opacity, transform;
      }

      .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
      }

      #ozellikler .card.reveal-on-scroll {
        transition-delay: var(--reveal-delay, 0ms);
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        .reveal-on-scroll {
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
        }
      }

      .grid {
        display: grid;
        gap: 20px;
      }

      .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

      @media (max-width: 1024px) {
        .grid-3 {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 720px) {

        .grid-3,
        .grid-2 {
          grid-template-columns: 1fr;
        }
      }

      /* DOCS PAGE */
      .docs-hero {
        padding: 120px 0 80px;
        background: var(--gray);
      }

      .docs-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
      }

      .docs-hero-content {
        flex: 1 1 360px;
      }

      .docs-hero-content h1 {
        font-size: clamp(2.2rem, 2.6vw, 3rem);
        margin-bottom: 18px;
      }

      .docs-hero-content p {
        font-size: 1.05rem;
        color: var(--muted);
        max-width: 520px;
      }

      .docs-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--muted);
        margin-bottom: 18px;
      }

      .docs-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 28px;
      }

      .docs-hero-visual {
        flex: 1 1 320px;
        display: flex;
        justify-content: center;
      }

      .docs-hero-visual figure {
        margin: 0;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        max-width: 420px;
        width: 100%;
      }

      .docs-hero-visual img {
        display: block;
        width: 100%;
        height: auto;
      }

      .docs-section {
        padding: 80px 0;
      }

      .docs-section--alt {
        background: var(--gray);
      }

      .docs-section--contact {
        background: var(--gray);
      }

      .docs-section-header {
        max-width: 640px;
        margin: 0 auto 48px;
        text-align: center;
      }

      .docs-section-header p {
        color: var(--muted);
      }

      .docs-grid {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .docs-grid--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .docs-card {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
      }

      .docs-card h3 {
        margin: 0;
        font-size: 1.35rem;
      }

      .docs-card p {
        margin: 0;
        color: var(--muted);
      }

      .docs-card ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 8px;
      }

      .docs-card ul li {
        color: var(--muted);
      }

      .docs-card ul li a {
        text-decoration: underline;
        font-weight: 600;
      }

      .docs-card > .btn {
        margin-top: auto;
        align-self: flex-start;
      }

      .docs-contact {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        align-items: flex-start;
        justify-content: space-between;
      }

      .docs-contact>div:first-child {
        flex: 1 1 380px;
        max-width: 520px;
      }

      .docs-contact ul {
        margin: 18px 0 0;
        padding-left: 18px;
        color: var(--muted);
        display: grid;
        gap: 8px;
      }

      .docs-contact-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        flex: 0 1 240px;
      }

      @media (max-width: 960px) {
        .docs-hero {
          padding-top: 90px;
        }

        .docs-grid,
        .docs-grid--compact {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 720px) {

        .docs-grid,
        .docs-grid--compact {
          grid-template-columns: 1fr;
        }

        .docs-section {
          padding: 60px 0;
        }

        .docs-contact {
          justify-content: center;
          text-align: center;
        }

        .docs-contact>div:first-child {
          text-align: center;
        }

        .docs-contact-actions {
          align-items: center;
        }
      }

      /* NAV */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        -webkit-backdrop-filter: blur(22px);
        backdrop-filter: blur(22px);
        border-bottom: 0.5px solid #d9d9d9;
        transition: background 0.3s ease, border-color 0.3s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      }

      .nav.has-shadow {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
      }

      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
      }

      .nav-toggle {
        display: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        transition: background 0.2s ease;
      }

      .nav-toggle:focus-visible {
        outline: 3px solid rgba(185, 0, 0, 0.25);
        outline-offset: 3px;
      }

      .nav-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
      }

      .nav-toggle-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: #111;
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }

      .nav.is-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .nav.is-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
      }

      .nav.is-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-drawer {
        display: flex;
        align-items: center;
        gap: 32px;
        z-index: 1001;
      }

      .nav-backdrop {
        display: none;
      }

      .brand img {
        height: 40px;
      }

      .menu {
        display: flex;
        align-items: center;
        gap: 0.7rem;
      }

      .menu>a,
      .menu>.dropdown>a {
        padding: 0.6rem 0.9rem;
        border-radius: 10px;
        color: #111;
        font-weight: 600;
        position: relative;
        transition: color 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
      }

      .menu>a.active,
      .menu>.dropdown>a.active {
        background: var(--gray);
      }

      .menu>a::after,
      .menu>.dropdown>a::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 10px;
        height: 2px;
        background: var(--primary);
        border-radius: 999px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
      }

      .menu-caret {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid currentColor;
        margin-left: 6px;
        transition: transform 0.25s ease;
      }
      .dropdown.open>a .menu-caret,
      .dropdown:hover>a .menu-caret,
      .dropdown:focus-within>a .menu-caret {
        transform: rotate(180deg);
      }

      .menu>a:hover,
      .menu>.dropdown>a:hover,
      .menu>a:focus-visible,
      .menu>.dropdown>a:focus-visible {
        color: var(--primary);
      }

      .menu>a:hover::after,
      .menu>.dropdown>a:hover::after,
      .menu>a:focus-visible::after,
      .menu>.dropdown>a:focus-visible::after {
        transform: scaleX(1);
      }

      .dropdown {
        position: relative;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius-sm);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
        min-width: 200px;
        padding: 0.4rem 0;
        transform-origin: top center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.05s ease, transform 0.05s ease,
          visibility 0.05s ease;
      }

      .dropdown-content::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        height: 10px;
      }

      .dropdown-content a {
        display: block;
        padding: 0.5rem 1rem;
        font-weight: 500;
        color: #111;
      }

      .dropdown-mega .dropdown-content a {
        padding: 16px;
      }

      .dropdown:hover .dropdown-content,
      .dropdown:focus-within .dropdown-content,
      .dropdown.open .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-mega {
        position: static;
      }

      .dropdown-mega .dropdown-content {
        left: 50%;
        transform: translate(-50%, -6px);
        width: min(var(--container), calc(100% - 40px));
        padding: 0;
        background: transparent;
        border-radius: 0;
        border: none;
        box-shadow: none;
      }

      .mega-container {
        display: grid;
        grid-template-columns: minmax(260px, 320px) 1fr;
        gap: 32px;
        padding: 42px 48px;
        background: rgba(255, 255, 255, 0.96);
        -webkit-backdrop-filter: blur(22px);
        backdrop-filter: blur(22px);
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: 0 28px 60px rgba(10, 10, 10, 0.12);
      }

      .mega-overview {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .mega-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(11, 11, 11, 0.55);
        font-weight: 700;
      }

      .mega-overview h4 {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 700;
        color: #111;
        letter-spacing: -0.015em;
      }

      .mega-overview p {
        margin: 0;
        font-size: 0.96rem;
        line-height: 1.6;
        color: rgba(17, 17, 17, 0.68);
        max-width: 36ch;
      }

      .mega-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }

      .mega-card {
        --icon-color: #b90000;
        --icon-bg: linear-gradient(135deg, rgba(185, 0, 0, 0.14), rgba(185, 0, 0, 0.04));
        --icon-shadow: rgba(185, 0, 0, 0.12);
        --icon-border: rgba(185, 0, 0, 0.22);
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 28px 22px 24px;
        border-radius: 22px;
        border: 1px solid rgba(17, 17, 17, 0.06);
        background: rgba(255, 255, 255, 0.94);
        color: inherit;
        text-decoration: none;
        transition: transform 0.25s ease, box-shadow 0.25s ease,
          border-color 0.25s ease;
      }

      .mega-card:hover,
      .mega-card:focus-visible {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(10, 10, 10, 0.12);
        border-color: var(--icon-border);
      }

      .mega-card:focus-visible {
        outline: 3px solid rgba(185, 0, 0, 0.35);
        outline-offset: 4px;
      }

      .mega-card-icon {
        width: 54px;
        height: 54px;
        margin: 0 0 16px 0;
        display: grid;
        place-items: center;
        border-radius: 18px;
        background: var(--icon-bg);
        color: var(--icon-color);
        /* box-shadow: 0 14px 26px var(--icon-shadow); */
      }

      .mega-card-icon svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
      }

      .mega-card-body {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .mega-card-title {
        font-weight: 700;
        font-size: 1rem;
        color: #111;
      }

      .mega-card-desc {
        font-size: 0.86rem;
        line-height: 1.55;
        color: rgba(17, 17, 17, 0.64);
        font-weight: 500;
      }

      .mega-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 0.28rem 0.7rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(17, 17, 17, 0.1);
        color: var(--icon-color);
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .mega-card--featured {
        border-color: rgba(185, 0, 0, 0.28);
        box-shadow: 0 18px 40px rgba(185, 0, 0, 0.18);
        background: rgba(255, 245, 245, 0.96);
      }

      .mega-card--featured .mega-card-icon {
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 214, 214, 0.8));
        box-shadow: 0 16px 32px rgba(185, 0, 0, 0.25);
      }

      .mega-card--manufacturers {
        --icon-color: #5b4bff;
        --icon-bg: linear-gradient(140deg, #f3f2ff, #e1e5ff);
        --icon-shadow: rgba(91, 75, 255, 0.16);
        --icon-border: rgba(91, 75, 255, 0.26);
      }

      .mega-card--hospitality {
        --icon-color: #0f766e;
        --icon-bg: linear-gradient(135deg, #ecfdf5, #d1fae5);
        --icon-shadow: rgba(15, 118, 110, 0.15);
        --icon-border: rgba(15, 118, 110, 0.24);
      }

      .mega-card--groomers {
        --icon-color: #d946ef;
        --icon-bg: linear-gradient(135deg, #fdf2ff, #fbe8ff);
        --icon-shadow: rgba(217, 70, 239, 0.16);
        --icon-border: rgba(217, 70, 239, 0.26);
      }

      .mega-card--walkers {
        --icon-color: #0ea5e9;
        --icon-bg: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        --icon-shadow: rgba(14, 165, 233, 0.16);
        --icon-border: rgba(14, 165, 233, 0.26);
      }

      .mega-card--trainers {
        --icon-color: #f97316;
        --icon-bg: linear-gradient(135deg, #fff7ed, #ffedd5);
        --icon-shadow: rgba(249, 115, 22, 0.18);
        --icon-border: rgba(249, 115, 22, 0.28);
      }

      .dropdown.dropdown-mega:hover .dropdown-content,
      .dropdown.dropdown-mega:focus-within .dropdown-content,
      .dropdown.dropdown-mega.open .dropdown-content {
        display: block;
        transform: translate(-50%, -6px);
      }

      @media (max-width: 1024px) {
        .dropdown-mega .dropdown-content {
          transform: none;
          left: 20px;
          right: 20px;
          width: auto;
        }

        .mega-container {
          grid-template-columns: 1fr;
          padding: 32px;
          margin: 24px;
        }

        .mega-overview {
          max-width: 48ch;
        }
      }

      @media (max-width: 720px) {
        .dropdown.dropdown-mega:hover .dropdown-content,
        .dropdown.dropdown-mega:focus-within .dropdown-content,
        .dropdown.dropdown-mega.open .dropdown-content {
          transform: none;
        }

        .mega-container {
          padding: 26px 24px;
          border-radius: 22px;
          margin: 20px;
        }

        .mega-grid {
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }
      }

      @media (max-width: 960px) {
        .nav-inner {
          height: 64px;
        }

        .dropdown.dropdown-mega:hover .dropdown-content,
        .dropdown.dropdown-mega:focus-within .dropdown-content,
        .dropdown.dropdown-mega.open .dropdown-content {
          transform: none;
        }

        .nav-toggle {
          display: inline-flex;
        }

        .nav-drawer {
          position: fixed;
          top: 64px;
          right: 16px;
          left: 16px;
          display: block;
          background: rgba(255, 255, 255, 0.98);
          border: 1px solid rgba(17, 17, 17, 0.12);
          box-shadow: 0 18px 46px rgba(10, 10, 10, 0.18);
          border-radius: 22px;
          padding: 22px 20px;
          max-height: calc(100vh - 96px);
          overflow-y: auto;
          transform: translateY(-12px);
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.28s ease, transform 0.28s ease;
        }

        .nav-backdrop {
          position: fixed;
          inset: 0;
          background: rgba(15, 16, 20, 0.35);
          backdrop-filter: blur(3px);
          -webkit-backdrop-filter: blur(3px);
          display: block;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.25s ease;
          z-index: 1000;
        }

        .nav.is-open .nav-backdrop {
          opacity: 1;
          pointer-events: auto;
        }

        .nav.has-shadow .nav-drawer {
          background: rgba(255, 255, 255, 0.94);
        }

        .nav.is-open .nav-drawer {
          opacity: 1;
          transform: translateY(0);
          pointer-events: auto;
        }

        .menu {
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
          margin: 0;
        }

        .menu > a,
        .menu > .dropdown > a {
          background: transparent;
          border-radius: var(--radius-sm);
          padding: 0.85rem 1.05rem;
          font-weight: 600;
        }

        .menu > a:hover,
        .menu > a:focus-visible,
        .menu > .dropdown > a:hover,
        .menu > .dropdown > a:focus-visible {
          background: rgba(248, 249, 252, 0.85);
        }

        .menu > .dropdown.open > a {
          background: rgba(185, 0, 0, 0.08);
          color: var(--primary);
          font-weight: 700;
        }

        .menu>a,
        .menu>.dropdown>a {
          display: flex;
          justify-content: space-between;
          align-items: center;
          border-radius: var(--radius-sm);
          padding: 0.85rem 1.05rem;
        }

        .menu>a::after,
        .menu>.dropdown>a::after {
          display: none;
        }

        .dropdown {
          width: 100%;
        }

        .dropdown-content {
          position: static;
          display: none;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          border: 1px solid rgba(17, 17, 17, 0.06);
          border-radius: var(--radius-sm);
          margin-top: 8px;
          padding: 12px 0;
          background: rgba(248, 249, 252, 0.92);
        }

        .dropdown.open .dropdown-content {
          display: block;
        }

        .dropdown-content a {
          padding: 0.6rem 1rem;
          font-weight: 600;
        }

        .dropdown-mega .dropdown-content {
          margin: 6px 0 0;
          padding: 0;
          background: transparent;
          border: none;
          box-shadow: none;
          width: 100%;
        }

        .mega-container {
          display: contents;
        }

        .mega-overview {
          display: none;
        }

        .mega-overview p {
          max-width: none;
        }

        .mega-grid {
          display: flex;
          flex-direction: column;
          gap: 0;
          border: none;
          border-radius: 0;
          overflow: visible;
          background: transparent;
          width: 100%;
        }

        .mega-card {
          padding: 0.75rem 1rem;
          border-radius: 0;
          display: flex;
          align-items: center;
          gap: 6px;
          background: transparent;
          border: none;
          border-bottom: 1px solid rgba(17, 17, 17, 0.08);
          font-weight: 600;
          font-size: 0.95rem;
          width: 100%;
        }

        .mega-card:last-child {
          border-bottom: none;
        }

        .mega-card:hover,
        .mega-card:focus-visible {
          transform: none;
          box-shadow: none;
          color: var(--primary);
        }

        .mega-card-icon {
          display: none;
        }

        .mega-card-body {
          gap: 0;
        }

        .mega-card-title {
          font-size: 0.95rem;
        }

        .mega-card-desc {
          display: none;
        }

        .mega-badge {
          display: none;
        }


        .auth {
          flex-direction: column;
          align-items: stretch;
          gap: 16px;
          margin-top: 24px;
          padding-top: 16px;
          border-top: 1px solid rgba(17, 17, 17, 0.06);
        }

        .auth .dropdown>a {
          width: 100%;
          justify-content: space-between;
          padding: 0.85rem 1.05rem;
        }

        .auth-dropdown {
          position: static;
          box-shadow: none;
          border-radius: var(--radius-sm);
          border: 1px solid rgba(17, 17, 17, 0.06);
          padding: 0;
          display: none;
          background: rgba(248, 249, 252, 0.92);
          margin-top: 8px;
        }

        .auth .dropdown.open .auth-dropdown {
          display: block;
        }

        .auth-dropdown-item {
          padding: 0.8rem 1.05rem;
        }

        .auth-dropdown-divider {
          margin: 0.5rem 0;
        }
      }

      .auth {
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }

      .auth .dropdown>a {
        background: #101114;
        border-radius: 999px;
        padding: 0.7rem 1.3rem;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        border: 1px solid #1b1c22;
        color: #f8f9fc;
        font-weight: 500;
        transition: background 0.2s ease, border-color 0.2s ease,
          transform 0.2s ease, color 0.2s ease;
      }

      .auth .dropdown>a svg {
        width: 18px;
        height: 18px;
      }

      .auth .dropdown>a span:last-child {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.2s ease;
      }

      .auth .dropdown>a:hover,
      .auth .dropdown>a:focus-visible,
      .auth .dropdown:hover>a,
      .auth .dropdown:focus-within>a,
      .auth .dropdown.open>a {
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-1px);
        color: #fff;
      }

      .auth .dropdown>a:hover span:last-child,
      .auth .dropdown>a:focus-visible span:last-child,
      .auth .dropdown:hover>a span:last-child,
      .auth .dropdown:focus-within>a span:last-child,
      .auth .dropdown.open>a span:last-child {
        color: rgba(255, 255, 255, 0.9);
      }

      .auth .dropdown>a:focus-visible {
        outline: 2px solid rgba(185, 0, 0, 0.35);
        outline-offset: 3px;
      }

      /* Auth dropdown menu styling */
      .auth-dropdown {
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
        border: 0.5px solid rgba(17, 17, 23, 0.1);
        box-shadow: 0 18px 36px rgba(10, 10, 10, 0.12);
        min-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
      }

      .auth-dropdown-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        /* border-radius: 14px; */
        color: #111217;
        background: rgba(255, 255, 255, 0.94);
        border-radius: 18px;
      }

      .auth-dropdown-divider {
        height: 1px;
        background: rgb(184, 184, 184);
        margin: 16px 0;
      }

      .auth-dropdown-item:hover,
      .auth-dropdown-item:focus-visible {
        border-radius: 14px;
        background: var(--gray);
        border-color: var(--gray);
        color: #111217;
        /* transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(185, 0, 0, 0.25); */
      }

      .auth-dropdown-item--disabled {
        border-radius: 14px;
        /* background: rgba(17, 17, 23, 0.04);
        border: 1px dashed rgba(17, 17, 23, 0.16); */
        color: rgba(17, 17, 23, 0.55);
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.6;
      }

      .auth-dropdown-item--disabled .auth-dropdown-desc {
        color: rgba(17, 17, 23, 0.45);
      }

      .auth-dropdown-item--disabled:hover,
      .auth-dropdown-item--disabled:focus-visible {
        border-radius: 14px;
        background: rgba(17, 17, 23, 0.04);
        border-color: rgba(17, 17, 23, 0.16);
        color: rgba(17, 17, 23, 0.55);
      }

      .auth-dropdown-item:focus-visible {
        outline: 2px solid rgba(185, 0, 0, 0.4);
        outline-offset: 2px;
      }

      .auth-dropdown-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(17, 17, 23, 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #111217;
        transition: background 0.18s ease, color 0.18s ease;
      }

      .auth-dropdown-icon svg {
        width: 20px;
        height: 20px;
      }

      .auth-dropdown-copy {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
      }

      .auth-dropdown-title {
        font-weight: 600;
        font-size: 0.92rem;
        letter-spacing: -0.01em;
      }

      .auth-dropdown-desc {
        font-size: 0.78rem;
        color: rgba(17, 17, 23, 0.62);
        max-width: 220px;
        line-height: 1.35;
        transition: color 0.18s ease;
      }

      .auth-dropdown-item:hover .auth-dropdown-desc,
      .auth-dropdown-item:focus-visible .auth-dropdown-desc {
        color: rgba(17, 17, 23, 0.62);
      }

      .auth-dropdown-arrow {
        margin-left: auto;
        font-size: 1rem;
        color: #fff;
        transition: transform 0.18s ease, color 0.18s ease;
      }

      .auth-dropdown-item:hover .auth-dropdown-arrow,
      .auth-dropdown-item:focus-visible .auth-dropdown-arrow {
        transform: translateX(2px);
        color: rgba(17, 17, 23, 0.55);
        ;
      }

      .auth-dropdown-badge {
        margin-left: auto;
        align-self: center;
        padding: 0.18rem 0.6rem;
        border-radius: 999px;
        background: rgba(17, 17, 23, 0.08);
        color: rgba(17, 17, 23, 0.65);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .auth-dropdown-item--disabled .auth-dropdown-badge {
        background: rgba(17, 17, 23, 0.12);
        color: rgba(17, 17, 23, 0.58);
      }

      .auth-dropdown-item:hover .auth-dropdown-icon,
      .auth-dropdown-item:focus-visible .auth-dropdown-icon {
        background: rgba(255, 255, 255, 0.22);
        color: rgba(17, 17, 23, 0.62);
      }

      .auth-dropdown-item--cta {
        background: linear-gradient(135deg, #b90000, #ff4545);
        color: #fff;
        border: none;
        box-shadow: 0 12px 32px rgba(185, 0, 0, 0.25);
      }

      .auth-dropdown-item--cta .auth-dropdown-desc {
        color: rgba(255, 255, 255, 0.82);
      }

      .auth-dropdown-item--cta:hover,
      .auth-dropdown-item--cta:focus-visible {
        background: linear-gradient(135deg, #a00000, #ff6868);
        border: none;
        box-shadow: 0 18px 38px rgba(185, 0, 0, 0.32);
      }

      .auth-dropdown-item--cta .auth-dropdown-icon {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
      }

      .auth-dropdown-item--cta .auth-dropdown-arrow {
        color: rgba(255, 255, 255, 0.9);
      }

      /* Intro Sections */
      .intro {
        padding: 78px 0 56px;
        background: var(--gray);
      }

      .intro h1 {
        font-size: clamp(34px, 4.4vw, 54px);
        font-weight: 800;
        letter-spacing: -0.018em;
        margin: 0 0 16px;
      }

      .intro .lead {
        font-size: 1.14rem;
        color: #36383b;
        margin: 0 0 26px;
      }

      .intro-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
        color: #5f6368;
        margin-bottom: 18px;
      }

      .breadcrumb a {
        color: inherit;
        font-weight: 600;
      }

      .breadcrumb span {
        color: rgba(10, 10, 10, 0.35);
      }

      .breadcrumb a:hover {
        color: var(--primary);
      }

      /* HERO SLIDER */
      .hero {
        background: var(--gray);
        border-bottom: 1px solid #eee;
        position: relative;
        overflow: hidden;
      }

      .slide {
        padding: 84px 0 48px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 36px;
        align-items: center;
      }

      .eyebrow {
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.78rem;
        color: var(--primary);
      }

      h1 {
        font-size: clamp(38px, 5vw, 56px);
        line-height: 1.05;
        margin: 0.4rem 0 1rem;
        letter-spacing: -0.02em;
        font-family: -apple-system, system-ui, Segoe UI, Roboto, Helvetica,
          Arial;
        font-weight: 800;
      }

      .lead {
        font-size: 1.1rem;
        color: #3a3a3a;
        max-width: 58ch;
      }

      .slider {
        position: relative;
      }

      .slides {
        position: relative;
        overflow: hidden;
      }

      .slide {
        width: 100%;
        display: none;
      }

      .slide.active {
        display: grid;
        animation: fade 0.5s ease;
      }

      @keyframes fade {
        from {
          opacity: 0.6;
          transform: translateY(6px);
        }

        to {
          opacity: 1;
          transform: none;
        }
      }

      .slider-prev,
      .slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        cursor: pointer;
        font-size: 2rem;
        color: #333;
      }

      .slider-prev {
        left: -120px;
      }

      .slider-next {
        right: -120px;
      }

      .slider-dots {
        display: flex;
        gap: 8px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
      }

      .dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
      }

      .dot.active {
        background: var(--primary);
        border-color: var(--primary);
      }

      @media (max-width: 720px) {

        .slider-prev,
        .slider-next {
          display: none;
        }

        .slider-dots {
          bottom: -14px;
        }
      }

      /* SECTIONS */
      section {
        padding: 64px 0;
      }

      .section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 26px;
      }

      .section-title {
        font-size: clamp(24px, 3.2vw, 34px);
        letter-spacing: -0.01em;
        margin: 0;
      }

      .section-subtitle {
        margin-bottom: 28px;
        text-align: center;
      }

      .muted {
        color: var(--muted);
      }

      .feature-media {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
        position: relative;
      }

      .feature-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .card .feature-media {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
      }

      .card .feature-media img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
      }

      .content-block {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius);
        padding: 34px;
        display: grid;
        gap: 20px;
      }

      .content-block p {
        margin: 0;
        color: #3b3d40;
      }

      .feature-grid {
        display: grid;
        gap: 22px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .feature-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius);
        padding: 26px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
      }

      .feature-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
      }

      .feature-card h3 {
        margin: 0;
        font-size: 1.18rem;
      }

      .feature-card p {
        margin: 0;
        color: #41444a;
      }

      .feature-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
      }

      .feature-card li {
        position: relative;
        padding-left: 22px;
        color: #3f4246;
      }

      .feature-card li::before {
        content: '•';
        position: absolute;
        left: 6px;
        color: var(--primary);
        font-weight: 700;
      }

      .packages-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }

      .packages-row {
        display: grid;
        gap: 22px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .package-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius);
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: var(--shadow);
      }

      .package-card--premium {
        background: radial-gradient(120% 180% at -10% -20%,
            #2a2a2a,
            #0f0f10 60%,
            #0a0a0a 100%);
        color: #f6f6f6;
        border-color: rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
      }

      .package-card--premium::after {
        content: "";
        position: absolute;
        inset: -1px;
        background: conic-gradient(from 180deg at 50% 50%,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.12) 70%,
            rgba(255, 255, 255, 0) 100%);
        filter: blur(18px);
        z-index: 0;
      }

      .package-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
      }

      .package-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
      }

      .package-head h3 {
        margin: 0;
        font-size: 1.4rem;
      }

      .package-badge {
        font-size: 0.92rem;
        /* border: 1px solid rgba(185, 0, 0, 0.2); */
        border-radius: 999px;
        padding: 0.3rem 0.75rem;
        background: rgb(195 243 214);
        color: #048952;
      }

      .package-card--premium .package-badge {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.28);
        color: #fff;
      }

      .package-desc {
        margin: 0;
        color: #3f4246;
      }

      .package-card--premium .package-desc {
        color: rgba(255, 255, 255, 0.82);
      }

      .package-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 10px;
      }

      .package-list li {
        position: relative;
        padding-left: 26px;
      }

      .package-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0.15rem;
        width: 18px;
        height: 18px;
        border-radius: 6px;
        background: #eaf6ee;
        color: #276f2a;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 12px;
        border: 1px solid #d9efe0;
      }

      .package-card--premium .package-list li::before {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.22);
        color: #fff;
      }

      .package-meta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
      }

      .package-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 0.8rem;
        border-radius: 999px;
        font-weight: 600;
        color: var(--primary);
      }

      .package-card--premium .package-pill {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.22);
        color: #fff;
      }

      .comparison-wrapper {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid #eee;
        padding: 18px;
        overflow: auto;
      }

      .comparison-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
      }

      .comparison-wrapper thead th {
        background: var(--gray);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.88rem;
        letter-spacing: 0.04em;
      }

      .comparison-wrapper th,
      .comparison-wrapper td {
        padding: 14px 16px;
        text-align: center;
        border-bottom: 1px solid #eee;
      }

      .comparison-wrapper td:first-child,
      .comparison-wrapper th:first-child {
        text-align: left;
        font-weight: 600;
      }

      .comparison-wrapper tbody tr:nth-child(even) {
        background: rgba(245, 245, 247, 0.5);
      }

      .comparison-wrapper tbody tr:last-child td {
        border-bottom: none;
      }

      .premium-comparison-intro {
        max-width: 820px;
        margin: 48px auto 0;
      }

      .premium-comparison-title {
        text-align: center;
        margin: 0 0 12px;
        font-size: clamp(22px, 2.4vw, 30px);
        letter-spacing: -0.01em;
      }

      .comparison-wrapper-premium {
        background: radial-gradient(120% 140% at 10% -10%, #2b2b30, #111);
        border-radius: 26px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        /* box-shadow: 0 24px 48px rgba(10, 10, 10, 0.35); */
        overflow: hidden;
      }

      .comparison-wrapper-premium table {
        width: 100%;
        border-collapse: collapse;
        color: rgba(245, 245, 250, 0.9);
      }

      .comparison-wrapper-premium thead th {
        background: rgba(255, 255, 255, 0.08);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.92rem;
        letter-spacing: 0.06em;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .comparison-wrapper-premium th,
      .comparison-wrapper-premium td {
        padding: 16px 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .comparison-wrapper-premium td:first-child,
      .comparison-wrapper-premium th:first-child {
        text-align: left;
        font-weight: 600;
        color: #f4f4f8;
      }

      .comparison-wrapper-premium tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.04);
      }

      .comparison-wrapper-premium tbody tr:last-child td {
        border-bottom: none;
      }

      .section-title--center {
        text-align: center;
        margin-bottom: 20px;
      }

      .faq {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid #eee;
        overflow: hidden;
      }

      .faq-item+.faq-item {
        border-top: 1px solid #eee;
      }

      details.faq-item {
        padding: 20px 24px;
      }

      details.faq-item[open] {
        background: rgba(245, 245, 247, 0.6);
      }

      details.faq-item summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        font-weight: 700;
        font-size: 1.05rem;
        color: #191b1f;
      }

      details.faq-item summary::marker,
      details.faq-item summary::-webkit-details-marker {
        display: none;
      }

      .faq-icon {
        width: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(185, 0, 0, 0.35);
        border-radius: 50%;
        color: var(--primary);
        font-size: 0;
        line-height: 0;
        position: relative;
        transition: transform 0.2s ease;
        transform-origin: center;
      }

      .faq-icon::before,
      .faq-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 2px;
        background: currentColor;
        transform: translate(-50%, -50%);
        transition: transform 0.2s ease;
      }

      .faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
      }

      details[open] .faq-icon {
        transform: rotate(45deg);
      }

      .faq-item p {
        margin: 14px 0 0;
        color: #3f4246;
        line-height: 1.6;
      }

      .callout {
        background: var(--gray);
        border-radius: 22px;
        padding: 42px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 28px;
      }

      .callout-full {
        margin: 0;
        border-radius: 0;
      }

      .callout-full .callout-inner {
        display: grid;
        gap: 28px;
        grid-template-columns: 1fr auto;
        align-items: center;
      }

      .callout h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 3.2vw, 36px);
      }

      .callout p {
        margin: 0;
        color: #35383c;
        max-width: 58ch;
      }

      .callout-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .section--no-top {
        padding-top: 0;
      }

      .section--extra-bottom {
        padding-bottom: 110px;
      }

      /* Premium widget (siyah–platinum) */
      .card-premium {
        background: linear-gradient(180deg, #0a0a0a, #111);
        border-color: #1c1c1c;
        color: #eaeaea;
      }

      .card-premium .feature-media {
        background: radial-gradient(120% 120% at 10% 0%,
            #d8d8d8,
            #9c9c9c 40%,
            #2a2a2a 60%,
            #0a0a0a);
        border-color: #1f1f1f;
        height: 260px;
      }

      .card-premium .desc {
        color: #cfcfcf;
      }

      .card-premium .btn-outline {
        color: #fff;
        border-color: #444;
        background: transparent;
      }

      .card-premium .btn-outline:hover {
        border-color: #666;
      }

      .card-premium .tag {
        background: #e3e3e3;
        border-color: #ffffff;
        color: #3a2a00;
      }

      /* CTA + Testimonials */
      .cta {
        background: var(--gray);
        color: #111;
        text-align: center;
        padding: 56px 0;
        margin-top: 48px;
      }

      .cta .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 20px;
      }

      .cta h2 {
        margin: 0 0 16px;
        font-size: clamp(26px, 3vw, 38px);
      }

      .cta p {
        margin: 0 0 22px;
        font-size: 1.15rem;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        color: #333;
      }

      .cta .btn {
        margin: 0 8px;
      }

      /* FOOTER */
      footer {
        background: #111;
        color: #bbb;
      }

      .footer-inner {
        padding: 96px 0;
        display: grid;
        gap: 32px;
      }

      .footer-brand {
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .footer-brand img {
        display: block;
        margin: 0 auto;
      }

      .footer-tagline {
        margin: 12px 0 18px;
        color: #9aa0a6;
        font-size: 0.95rem;
      }

      .footer-columns {
        display: grid;
        grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .footer-column strong {
        color: #fff;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
      }

      .footer-links {
        list-style: none;
        margin: 14px 0 0;
        padding: 0;
        display: grid;
        gap: 10px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.95rem;
        transition: color 0.2s ease;
      }

      .footer-links a:hover {
        color: #fff;
      }

      .footer-mini {
        border-top: 1px solid #222;
        padding: 16px 0;
        font-size: 0.9rem;
        color: #9aa0a6;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .social {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .footer-brand .social {
        margin-top: 16px;
        justify-content: center;
      }

      .social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        border: 1px solid #2a2a2a;
        background: rgba(20, 20, 20, 0.9);
        color: #d6d6d6;
        transition: transform 0.2s ease, border-color 0.2s ease,
          background 0.2s ease, color 0.2s ease;
      }

      .social a svg {
        width: 18px;
        height: 18px;
        display: block;
      }

      .social a:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
      }

      .social a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
      }

      @media (max-width: 1024px) {
        .feature-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

        .callout-full .callout-inner {
          grid-template-columns: 1fr;
        }

        .packages-row {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .comparison-wrapper-premium {
          padding: 24px;
          overflow: auto;
        }

        .comparison-wrapper-premium table {
          min-width: 720px;
        }
      }

      @media (max-width: 720px) {
        .intro {
          padding: 64px 0 48px;
        }

        .content-block {
          padding: 26px;
        }

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

        .callout {
          padding: 32px;
        }

        .callout-full .callout-inner {
          gap: 20px;
        }

        .callout-actions {
          justify-content: center;
        }

        .footer-inner {
          padding: 64px 0;
          gap: 40px;
        }

        .footer-brand {
          max-width: none;
          text-align: center;
        }

        .footer-brand .social {
          justify-content: center;
        }

        .footer-columns {
          grid-template-columns: 1fr;
          gap: 28px;
        }

        .footer-column {
          text-align: center;
        }

        .footer-mini {
          flex-direction: column;
          align-items: center;
          gap: 12px;
          text-align: center;
        }

        .footer-mini>.container {
          display: flex;
          flex-direction: column;
          gap: 12px;
          align-items: center;
        }

        .footer-mini>div:last-child {
          display: none;
        }

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

        .comparison-wrapper-premium {
          padding: 20px;
        }

        .comparison-wrapper-premium table {
          min-width: 560px;
        }
      }

      .cta-fixed {
        margin-top: auto;
      }

      /* Legal / Document Pages */
      .document-page {
        background: var(--gray);
        color: var(--text);
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      .document-main {
        max-width: 920px;
        margin: 64px auto;
        background: #fff;
        padding: 56px 64px;
        border-radius: 22px;
        box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .document-page>.document-main {
        flex: 1;
      }

      .document-header h1 {
        margin: 0 0 14px;
        font-size: clamp(32px, 4vw, 42px);
        color: #111;
      }

      .document-header p {
        margin: 0;
        color: #4a4d52;
        font-size: 1.05rem;
      }

      .document-section {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .document-section h2 {
        margin: 0;
        font-size: clamp(22px, 3vw, 26px);
        color: #151515;
      }

      .document-section p {
        margin: 0;
        color: #3a3d42;
        font-size: 1.02rem;
      }

      .document-section ul {
        margin: 0;
        padding-left: 22px;
        color: #3a3d42;
        display: grid;
        gap: 6px;
      }

      .document-section li {
        line-height: 1.6;
      }

      .document-section a {
        color: var(--primary);
        font-weight: 600;
      }

      .document-button {
        color: var(--white) !important;
      }

      .document-positions {
        display: grid;
        gap: 16px;
      }

      .document-position {
        padding: 18px 20px;
        border-left: 3px solid var(--gray);
        display: grid;
        gap: 8px;
      }

      .document-position h3 {
        margin: 0;
        font-size: 1.12rem;
      }

      .document-position-meta {
        font-size: 0.9rem;
        color: inherit;
      }

      .document-form {
        margin-top: 14px;
        display: grid;
        gap: 14px;
        max-width: 560px;
      }

      .document-form label {
        display: grid;
        gap: 6px;
        font-weight: 600;
      }

      .document-upload {
        gap: 10px;
      }

      .document-upload-hint {
        margin: 0;
        font-size: 0.92rem;
        font-weight: 400;
        color: var(--muted);
      }

      .document-form input,
      .document-form textarea {
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid var(--gray);
        font-size: 1rem;
        font-family: inherit;
        background: #fff;
      }

      .document-form textarea {
        resize: vertical;
      }

      .document-form input[type='file'] {
        padding: 10px 12px;
      }

      .upload-dropzone {
        position: relative;
        padding: 26px 20px;
        border-radius: 14px;
        border: 2px dashed var(--gray);
        background: #fff;
        text-align: center;
        display: grid;
        gap: 8px;
        transition: border-color 0.2s ease, background-color 0.2s ease;
        cursor: pointer;
      }

      .upload-dropzone-input {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
      }

      .upload-dropzone-body strong {
        font-size: 1.02rem;
      }

      .upload-dropzone-secondary {
        font-size: 0.95rem;
        color: var(--muted);
      }

      .upload-dropzone-filename {
        font-size: 0.9rem;
        color: var(--primary);
        word-break: break-word;
      }

      .upload-dropzone.is-dragover {
        border-color: rgba(185, 0, 0, 0.6);
        background: rgba(185, 0, 0, 0.04);
      }

      .kvkk-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: underline;
        cursor: pointer;
      }

      .kvkk-link:hover,
      .kvkk-link:focus-visible {
        color: #a00000;
      }

      .document-alert {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(17, 18, 23, 0.04);
        border: 1px solid rgba(17, 18, 23, 0.08);
        font-size: 0.95rem;
        line-height: 1.45;
      }

      .document-alert strong {
        display: block;
        font-size: 1rem;
      }

      .document-alert-icon {
        width: 32px;
        height: 32px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-weight: 700;
      }

      .document-alert--success {
        background: rgba(16, 185, 129, 0.12);
        border-color: rgba(16, 185, 129, 0.24);
        color: #0f5132;
      }

      .document-alert--success .document-alert-icon {
        background: rgba(16, 185, 129, 0.18);
        color: #0f5132;
      }

      .document-alert--warning {
        background: rgba(255, 186, 8, 0.14);
        border-color: rgba(255, 186, 8, 0.28);
        color: #664d03;
      }

      .document-alert--warning .document-alert-icon {
        background: rgba(255, 186, 8, 0.24);
        color: #664d03;
      }

      .document-alert--danger {
        background: rgba(220, 38, 38, 0.12);
        border-color: rgba(220, 38, 38, 0.28);
        color: #7f1d1d;
      }

      .document-alert--danger .document-alert-icon {
        background: rgba(220, 38, 38, 0.18);
        color: #7f1d1d;
      }

      .document-form-hint {
        margin-top: 6px;
        display: block;
        font-size: 0.82rem;
        color: rgba(17, 18, 23, 0.6);
      }

      .flash-toast {
        position: fixed;
        bottom: 28px;
        right: 28px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        background: rgba(16, 185, 129, 0.95);
        color: #fff;
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(16, 185, 129, 0.25);
        font-weight: 600;
        opacity: 0;
        transform: translateY(18px);
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
        z-index: 2100;
      }

      .flash-toast::before {
        content: '✓';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        font-size: 0.9rem;
      }

      .flash-toast.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 720px) {
        .flash-toast {
          left: 16px;
          right: 16px;
          bottom: 20px;
          justify-content: center;
          text-align: center;
          padding: 12px 16px;
        }
      }

      /* BLOG */
      .blog-main {
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }

      .blog-hero {
        background: var(--gray);
        padding: 70px 0 40px;
      }

      .blog-hero-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
      }

      .blog-hero-inner h1 {
        margin: 0;
        font-size: clamp(36px, 4vw, 48px);
      }

      .blog-filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 1.1rem;
        border-radius: 999px;
        border: 1px solid rgba(17, 18, 23, 0.12);
        background: #fff;
        font-weight: 600;
        color: rgba(17, 18, 23, 0.72);
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      }

      .blog-filter:hover,
      .blog-filter:focus-visible {
        background: rgba(17, 18, 23, 0.04);
        color: #000;
        outline: none;
      }

      .blog-filter.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
      }

      .blog-status {
        margin-top: -8px;
      }

      .blog-layout {
        display: grid;
        gap: 32px;
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
        padding-bottom: 40px;
      }

      .blog-main-column {
        display: grid;
        gap: 28px;
      }

      .blog-sidebar {
        display: grid;
        gap: 24px;
      }

      .blog-sidebar-card {
        background: #fff;
        border: 1px solid rgba(17, 18, 23, 0.08);
        border-radius: 22px;
        padding: 24px 22px;
        box-shadow: 0 18px 40px rgba(17, 18, 23, 0.06);
        display: grid;
        gap: 18px;
      }

      .blog-sidebar-head h2 {
        margin: 0;
        font-size: 1.1rem;
      }

      .blog-category-list {
        display: grid;
        gap: 10px;
      }

      .blog-category-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.65rem 0.8rem;
        border-radius: 12px;
        font-weight: 600;
        color: rgba(17, 18, 23, 0.7);
        transition: background 0.2s ease, color 0.2s ease;
      }

      .blog-category-link:hover,
      .blog-category-link:focus-visible {
        background: rgba(17, 18, 23, 0.05);
        color: #000;
      }

      .blog-category-link.is-active {
        background: rgba(185, 0, 0, 0.12);
        color: var(--primary);
      }

      .blog-sidebar-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 14px;
      }

      .blog-sidebar-list li a {
        display: grid;
        gap: 4px;
        color: inherit;
      }

      .blog-sidebar-title {
        font-weight: 600;
      }

      .blog-sidebar-meta {
        font-size: 0.86rem;
        color: rgba(17, 18, 23, 0.58);
      }

      .blog-featured-card {
        display: grid;
        gap: 24px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 26px;
        border: 1px solid rgba(17, 18, 23, 0.08);
        overflow: hidden;
        box-shadow: 0 28px 60px rgba(17, 18, 23, 0.08);
      }

      .blog-featured-media img {
        width: 100%;
        height: 100%;
        max-height: 340px;
        object-fit: cover;
        display: block;
      }

      .blog-featured-body {
        padding: 32px 36px 30px;
        display: grid;
        gap: 18px;
      }

      .blog-featured-body h2 {
        margin: 0;
        font-size: clamp(28px, 3vw, 34px);
      }

      .blog-featured-body p {
        margin: 0;
        color: rgba(17, 18, 23, 0.68);
        font-size: 1.05rem;
      }

      .blog-featured-link {
        justify-self: start;
      }

      .blog-meta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        color: rgba(17, 18, 23, 0.6);
        font-size: 0.9rem;
        font-weight: 600;
      }

      .blog-meta-chip {
        display: inline-flex;
        align-items: center;
        padding: 4px 12px;
        border-radius: 999px;
        background: rgba(185, 0, 0, 0.09);
        color: var(--primary);
        font-size: 0.78rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
      }

      .blog-grid {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }

      .blog-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: #fff;
        border: 1px solid rgba(17, 18, 23, 0.08);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .blog-card:hover,
      .blog-card:focus-within {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(17, 18, 23, 0.08);
      }

      .blog-card-media img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
      }

      .blog-card-body {
        padding: 20px 22px 22px;
        display: grid;
        gap: 14px;
      }

      .blog-card-body h3 {
        margin: 0;
        font-size: 1.24rem;
      }

      .blog-card-body p {
        margin: 0;
        color: rgba(17, 18, 23, 0.64);
        font-size: 0.98rem;
        line-height: 1.55;
      }

      .blog-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(17, 18, 23, 0.54);
        font-size: 0.88rem;
      }

      .blog-card--compact {
        min-height: 100%;
      }

      .blog-pagination {
        padding-bottom: 80px;
      }

      .blog-pagination-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
      }

      .blog-pagination-btn {
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        border: 1px solid rgba(17, 18, 23, 0.12);
        font-weight: 600;
        color: rgba(17, 18, 23, 0.7);
      }

      .blog-pagination-btn:hover,
      .blog-pagination-btn:focus-visible {
        border-color: rgba(17, 18, 23, 0.3);
        color: #000;
      }

      .blog-pagination-btn.is-disabled {
        pointer-events: none;
        opacity: 0.45;
      }

      .blog-pagination-pages {
        display: flex;
        gap: 10px;
      }

      .blog-pagination-page {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(17, 18, 23, 0.12);
        font-weight: 600;
        color: rgba(17, 18, 23, 0.7);
      }

      .blog-pagination-page:hover,
      .blog-pagination-page:focus-visible {
        border-color: rgba(17, 18, 23, 0.3);
        color: #000;
      }

      .blog-pagination-page.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
      }

      .blog-detail-main {
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-bottom: 80px;
      }

      .blog-detail-header {
        padding-top: 70px;
        display: grid;
        gap: 18px;
      }

      .blog-detail-header h1 {
        margin: 0;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.2;
      }

      .blog-detail-author {
        color: rgba(17, 18, 23, 0.7);
        font-size: 1rem;
      }

      .blog-detail-cover img {
        width: min(920px, 100%);
        border-radius: 24px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        max-height: 420px;
      }

      .blog-detail-content {
        display: grid;
        gap: 14px;
        font-size: 1.06rem;
        line-height: 1.65;
        color: rgba(17, 18, 23, 0.9);
      }

      .blog-detail-content h2,
      .blog-detail-content h3,
      .blog-detail-content h4 {
        margin: 18px 0 10px;
      }

      .blog-detail-content p {
        margin: 0;
        line-height: 1.65;
      }

      .blog-detail-content img {
        max-width: 100%;
        border-radius: 18px;
      }

      .blog-related {
        display: grid;
        gap: 24px;
      }

      .blog-related-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .blog-related-head h2 {
        margin: 0;
        font-size: 1.6rem;
      }

      .blog-related-link {
        font-weight: 600;
        color: var(--primary);
      }

      .blog-not-found {
        padding: 120px 0 80px;
        background: var(--gray);
      }

      .blog-not-found-card {
        max-width: 520px;
        margin: 0 auto;
        background: #fff;
        padding: 42px;
        border-radius: 24px;
        border: 1px solid rgba(17, 18, 23, 0.1);
        box-shadow: 0 20px 40px rgba(17, 18, 23, 0.08);
        text-align: center;
      }

      .blog-not-found-card h1 {
        margin: 0 0 18px;
        font-size: 2rem;
      }

      .blog-not-found-card p {
        margin: 0;
        color: rgba(17, 18, 23, 0.7);
      }

      @media (max-width: 960px) {
        .blog-layout {
          grid-template-columns: 1fr;
        }

        .blog-sidebar {
          grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        .blog-sidebar-card {
          box-shadow: none;
        }

        .blog-featured-body {
          padding: 26px;
        }
      }

      @media (max-width: 720px) {
        .blog-hero {
          padding: 60px 0 40px;
        }

        .blog-detail-cover img {
          width: 100%;
          max-height: 320px;
        }

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

        .blog-detail-content {
          font-size: 1.02rem;
          gap: 12px;
        }

        .blog-pagination-pages {
          gap: 6px;
        }
      }

      .document-form-consent {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: flex-start;
        gap: 10px;
        font-weight: 500;
        font-size: 0.92rem;
      }

      .document-form input.is-invalid,
      .document-form textarea.is-invalid {
        border-color: rgba(185, 0, 0, 0.6);
        background: #fff;
      }

      .document-form input.is-invalid:focus,
      .document-form textarea.is-invalid:focus {
        box-shadow: 0 0 0 2px rgba(185, 0, 0, 0.18);
      }

      .document-form-consent input[type='checkbox'] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        border-radius: 4px;
        border: 2px solid rgba(17, 17, 23, 0.18);
        appearance: none;
        display: inline-block;
        vertical-align: middle;
        background: #fff;
        position: relative;
        cursor: pointer;
        transition: background 0.18s ease, border-color 0.18s ease,
          box-shadow 0.18s ease;
      }

      .document-form-consent input[type='checkbox']::after {
        content: '';
        position: absolute;
        inset: 0;
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5 4.2 8 11 1' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.18s ease, transform 0.2s ease;
      }

      .document-form-consent input[type='checkbox']:checked {
        background: var(--primary);
        border-color: var(--primary);
      }

      .document-form-consent input[type='checkbox']:checked::after {
        opacity: 1;
        transform: scale(1);
      }

      .document-form-consent input[type='checkbox']:focus-visible {
        box-shadow: 0 0 0 3px rgba(185, 0, 0, 0.2);
      }

      .document-form-consent input[type='checkbox'].is-invalid {
        background: #fff;
      }

      .document-form-consent span {
        line-height: 1.45;
      }

      .form-control-error {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 6px;
        color: #b90000;
        font-size: 0.82rem;
        font-weight: 600;
        line-height: 1.4;
      }

      .form-control-error::before {
        content: "!";
        font-weight: 700;
        font-size: 0.78rem;
      }

      .form-control-error[hidden] {
        display: none;
      }

      .document-form-consent .form-control-error {
        grid-column: 1 / -1;
        margin-top: 8px;
      }

      .modal-open {
        overflow: hidden;
      }

      .modal {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 1200;
      }

      .modal[aria-hidden='false'] {
        display: block;
      }

      .modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(6, 8, 12, 0.56);
      }

      .modal-dialog {
        position: relative;
        max-width: min(720px, 92vw);
        max-height: min(85vh, 720px);
        margin: 7vh auto;
        border-radius: 22px;
        background: #fff;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 28px 80px rgba(10, 10, 10, 0.3);
        border: 1px solid rgba(17, 17, 23, 0.12);
      }

      .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(17, 17, 23, 0.06);
      }

      .modal-header h2 {
        margin: 0;
        font-size: 1.2rem;
      }

      .modal-close {
        border: none;
        background: rgba(17, 17, 23, 0.06);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
      }

      .modal-close:hover,
      .modal-close:focus-visible {
        background: rgba(17, 17, 23, 0.12);
        transform: scale(1.05);
      }

      .modal-body {
        position: relative;
        padding: 0;
        overflow: auto;
        max-height: calc(85vh - 72px);
      }

      .modal-content {
        padding: 24px;
        outline: none;
      }

      .modal-loading {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
        padding: 36px;
        color: rgba(17, 17, 23, 0.68);
      }

      .modal-spinner {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 3px solid rgba(17, 17, 23, 0.1);
        border-top-color: var(--primary);
        animation: modal-spin 1s linear infinite;
      }

      @keyframes modal-spin {
        to {
          transform: rotate(360deg);
        }
      }

      .modal-error {
        padding: 24px;
        color: #a00000;
        font-weight: 600;
      }

      .document-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        padding: 12px 24px;
        border-radius: 999px;
        background: var(--black);
        color: rgba(255, 255, 255, 0.82) !important;
        font-weight: 600;
        transition: color 0.2s ease;
      }

      .document-button:hover {
        color: var(--white) !important;
      }

      .document-form-submit {
        justify-self: flex-start;
      }

      .document-table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border: 1px solid #e4e5eb;
        border-radius: 16px;
        overflow: hidden;
        font-size: 0.98rem;
      }

      .document-table th,
      .document-table td {
        padding: 16px 18px;
        border-bottom: 1px solid #e4e5eb;
        vertical-align: top;
        text-align: left;
      }

      .document-table thead th {
        background: #f4f5f7;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 700;
        color: #545861;
      }

      .document-table tbody tr:last-child td {
        border-bottom: none;
      }

      .document-footer {
        margin-top: 12px;
        font-size: 0.9rem;
        color: #6b6f76;
        text-align: right;
      }

      @media (max-width: 960px) {
        .document-page {
          padding: 0;
        }

        .document-main {
          max-width: 94%;
          padding: 48px 36px;
        }
      }

      @media (max-width: 640px) {
        .document-page {
          padding: 0;
        }

        .document-main {
          padding: 32px 24px;
          border-radius: 18px;
          gap: 20px;
        }

        .document-section ul {
          padding-left: 18px;
        }

        .document-table th,
        .document-table td {
          padding: 12px 14px;
          font-size: 0.95rem;
        }

        .document-header p,
        .document-section p {
          font-size: 1rem;
        }
      }

      /* SUPPORT PAGE */
      .support-hero {
        background: var(--gray);
        padding: 120px 0 80px;
      }

      .support-hero-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
      }

      .support-hero h1 {
        font-size: clamp(2.2rem, 2.6vw, 3rem);
        margin-bottom: 18px;
      }

      .support-hero p {
        max-width: 540px;
        font-size: 1.05rem;
        color: var(--muted);
      }

      .support-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 24px;
      }

      .support-response {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 36px 32px;
        text-align: center;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
        max-width: 340px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-self: center;
        margin-left: auto;
      }

      .support-response-label {
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 0.85rem;
        color: var(--muted);
      }

      .support-response-value {
        font-size: clamp(2.2rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--primary);
      }

      .support-response p {
        margin: 0;
        color: var(--muted);
        font-size: 0.98rem;
      }

      .support-section {
        padding: 80px 0;
      }

      .support-section--alt {
        background: var(--gray);
      }

      .support-section-head {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 32px;
      }

      .support-filters {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
      }

      .support-filters label {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        color: #111;
      }

      .support-filters select {
        margin-top: 6px;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(0, 0, 0, 0.12);
        min-width: 160px;
      }

      .support-table {
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: var(--radius);
        background: #fff;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
      }

      .support-table-head,
      .support-row {
        display: grid;
        grid-template-columns: 90px 1.8fr 1fr 1fr 1fr 1fr;
        gap: 18px;
        align-items: center;
      }

      .support-table-head {
        padding: 18px 24px;
        background: var(--gray);
        font-weight: 700;
      }

      .support-table-body {
        display: grid;
      }

      .support-row {
        padding: 18px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
      }

      .support-row strong {
        display: block;
        margin-bottom: 4px;
      }

      .support-badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.08);
      }

      .support-badge--open {
        color: #19692c;
        background: rgba(16, 128, 67, 0.12);
      }

      .support-badge--pending {
        color: #b45d00;
        background: rgba(230, 177, 61, 0.18);
      }

      .support-badge--solved {
        color: #115e96;
        background: rgba(26, 116, 162, 0.16);
      }

      .support-badge--info {
        color: var(--primary);
        background: rgba(185, 0, 0, 0.12);
      }

      .support-form {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 32px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
        display: grid;
        gap: 24px;
      }

      .support-form-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .support-form label {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-weight: 600;
      }

      .support-form input,
      .support-form select,
      .support-form textarea {
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(0, 0, 0, 0.12);
        font-size: 1rem;
        background: #fff;
      }

      .support-form select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
        padding-right: 42px;
      }

      .support-priority {
        grid-column: 1 / -1;
        border: none;
        padding: 4px 0 0;
        display: grid;
        gap: 10px;
        margin: 0;
      }

      .support-priority legend {
        padding: 0;
        font-weight: 700;
        font-size: 0.92rem;
        color: #0a0a0a;
      }

      .support-priority-options {
        display: grid;
        gap: 10px;
      }

      .support-priority-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: #fff;
        transition: border-color 0.18s ease, background 0.18s ease,
          box-shadow 0.18s ease;
        cursor: pointer;
      }

      .support-priority-option input[type='radio'] {
        appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, 0.22);
        display: grid;
        place-items: center;
        background: #fff;
        transition: border-color 0.18s ease, background 0.18s ease;
      }

      .support-priority-option input[type='radio']::after {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--primary);
        transform: scale(0);
        transition: transform 0.18s ease;
      }

      .support-priority-option input[type='radio']:checked {
        border-color: var(--primary);
      }

      .support-priority-option input[type='radio']:checked::after {
        transform: scale(1);
      }

      .support-priority-option span {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .support-priority-option strong {
        font-size: 0.94rem;
      }

      .support-priority-option small {
        font-size: 0.8rem;
        color: rgba(0, 0, 0, 0.55);
      }

      .support-priority-option:has(input[type='radio']:checked) {
        border-color: rgba(185, 0, 0, 0.5);
        background: rgba(185, 0, 0, 0.06);
        box-shadow: 0 0 0 3px rgba(185, 0, 0, 0.12);
      }

      .support-priority-option:hover {
        border-color: rgba(185, 0, 0, 0.28);
      }
      .support-form input.is-invalid,
      .support-form select.is-invalid,
      .support-form textarea.is-invalid {
        border-color: rgba(185, 0, 0, 0.55);
        box-shadow: 0 0 0 2px rgba(185, 0, 0, 0.12);
      }

      .support-priority.is-invalid {
        outline: 2px solid rgba(185, 0, 0, 0.22);
        outline-offset: 4px;
        border-radius: var(--radius-sm);
      }

      .support-priority.is-invalid legend {
        color: rgba(185, 0, 0, 0.85);
      }

      .support-error {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #b90000;
      }

      .support-error::before {
        content: "!";
        font-weight: 700;
        font-size: 0.78rem;
      }

      .support-error[hidden] {
        display: none !important;
      }

      .support-priority .support-error {
        margin-top: 8px;
      }

      .support-form select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(185, 0, 0, 0.12);
      }

      .support-editor {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .support-editor-label {
        font-weight: 600;
        color: #111;
      }

      .support-editor-toolbar {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        background: var(--gray);
        border-radius: var(--radius-sm);
        padding: 8px;
      }

      .support-editor-toolbar button {
        border: none;
        background: #fff;
        border-radius: var(--radius-sm);
        padding: 6px 10px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
      }

      .support-editor-toolbar button:hover,
      .support-editor-toolbar button:focus-visible {
        background: var(--primary);
        color: #fff;
        outline: none;
      }

      .support-editor-divider {
        width: 1px;
        height: 20px;
        background: rgba(0, 0, 0, 0.12);
      }

      .support-editor-area {
        min-height: 180px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: var(--radius-sm);
        padding: 14px;
        font-size: 1rem;
        line-height: 1.6;
        background: #fff;
        overflow-y: auto;
        white-space: pre-wrap;
      }

      .support-editor-area:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(185, 0, 0, 0.12);
      }

      .support-editor-area:empty::before {
        content: attr(data-placeholder);
        color: var(--muted);
        pointer-events: none;
      }

      .support-editor-hint {
        margin: 0;
        font-size: 0.9rem;
        color: var(--muted);
      }

      .support-form textarea {
        resize: vertical;
      }

      .support-form-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .support-help {
        padding: 80px 0;
        background: var(--gray)
      }

      .support-help-inner {
        display: grid;
        gap: 40px;
      }

      .support-help-grid {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .support-help-card {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 28px;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .support-help-card h3 {
        margin: 0;
        font-size: 1.2rem;
      }

      .support-help-card p {
        color: var(--muted);
        margin: 0;
      }

      @media (max-width: 1024px) {

        .support-table-head,
        .support-row {
          grid-template-columns: 70px 1.8fr 0.9fr 1fr 1fr;
        }

        .support-table-head span:last-child,
        .support-row span:last-child {
          display: none;
        }
      }

      @media (max-width: 860px) {
        .support-hero-inner {
          flex-direction: column;
          align-items: flex-start;
        }

        .support-response {
          max-width: none;
          width: 100%;
          text-align: left;
          align-items: flex-start;
          margin-left: 0;
        }

        .support-form-grid {
          grid-template-columns: 1fr;
        }

        .support-help-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 640px) {

        .support-table-head,
        .support-row {
          grid-template-columns: 70px 1.6fr 1fr 1fr;
        }

        .support-table-head span:nth-child(5),
        .support-row span:nth-child(5) {
          display: none;
        }

        .support-help-grid {
          grid-template-columns: 1fr;
        }

        .support-form {
          padding: 24px;
        }
      }

      @media (max-width: 480px) {
        .support-actions {
          flex-direction: column;
        }

        .support-response {
          text-align: center;
          align-items: center;
          margin-left: 0;
        }

        .support-table-head,
        .support-row {
          grid-template-columns: 60px 1.5fr 1fr;
        }

        .support-table-head span:nth-child(3),
        .support-row span:nth-child(3) {
          display: none;
        }

        .support-table-head span:nth-child(4),
        .support-row span:nth-child(4) {
          display: none;
        }
      }

      .cookie-consent {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: min(360px, calc(100% - 48px));
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
        transition: opacity 0.28s ease-in-out, transform 0.28s ease-in-out;
        z-index: 2000;
        display: block;
      }

      .cookie-consent.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .cookie-consent__dialog {
        background: #fff;
        border-radius: var(--radius);
        padding: 20px 22px;
        box-shadow: 0 18px 40px rgba(10, 10, 10, 0.16);
        text-align: left;
        border: 1px solid rgba(10, 10, 10, 0.06);
      }

      .cookie-consent__title {
        margin: 0 0 12px;
        font-size: 1.3rem;
      }

      .cookie-consent__text {
        margin: 0;
        color: var(--muted);
        font-size: 0.98rem;
      }

      .cookie-consent__actions {
        margin-top: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .cookie-consent__accept,
      .cookie-consent__reject {
        border: none;
        border-radius: 999px;
        padding: 0.75rem 1.4rem;
        font-weight: 600;
        cursor: pointer;
        transition: filter 0.2s ease;
      }

      .cookie-consent__accept {
        background: var(--primary);
        color: #fff;
      }

      .cookie-consent__reject {
        background: #e0e0e0;
        color: #333;
      }

      .cookie-consent__accept:hover,
      .cookie-consent__accept:focus-visible,
      .cookie-consent__reject:hover,
      .cookie-consent__reject:focus-visible {
        filter: brightness(0.95);
        outline: none;
      }

      .cookie-consent__link {
        font-weight: 600;
        color: var(--primary);
        text-decoration: underline;
      }

      @media (max-width: 720px) {
        .cookie-consent {
          right: 16px;
          bottom: 16px;
          width: calc(100% - 32px);
        }
      }

      @media (max-width: 540px) {
        .cookie-consent {
          right: 0;
          left: 0;
          margin: 0 auto;
          width: calc(100% - 24px);
          bottom: 16px;
        }

        .cookie-consent__actions {
          flex-direction: column;
          align-items: stretch;
        }

        .cookie-consent__accept {
          justify-content: center;
          text-align: center;
        }

        .cookie-consent__link {
          text-align: center;
        }
      }
