﻿/* ============================================
   SEETTECH – Landing page (white + blue effects)
   ============================================ */

:root {
  --nav-h: 76px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border);
  box-shadow: 0 8px 32px -12px rgba(37, 99, 235, 0.12);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: auto;
  max-height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.footer-company-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-link--legal {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--accent2) !important;
}

/* Profile dropdown */
.profile-menu {
  position: relative;
}

.profile-menu__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-menu__trigger svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.6;
}

.profile-menu__trigger:hover,
.profile-menu.is-open .profile-menu__trigger {
  border-color: var(--accent2);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.profile-menu__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-menu__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .profile-menu__name {
    display: none;
  }
}

.profile-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.2);
  z-index: 1100;
}

.profile-menu__dropdown[hidden] {
  display: none;
}

.profile-menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.profile-menu__item:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.profile-menu__item--admin {
  color: var(--accent2);
  font-weight: 600;
}

.profile-menu__item--logout {
  color: #ef4444;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  border-radius: 0 0 10px 10px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.site-header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.site-header__link:hover,
.site-header__link.is-active {
  color: var(--text-primary);
}

.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header__dropdown-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.site-header__dropdown.is-open .site-header__dropdown-btn svg {
  transform: rotate(180deg);
}

.site-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 48px -12px rgba(37, 99, 235, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.site-header__dropdown.is-open .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.site-header__dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--accent2);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* TR / EN pill toggle */
.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 96px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
  isolation: isolate;
}

.lang-switch__thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.lang-switch__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 10px 1px rgba(37, 99, 235, 0.45),
    0 0 18px 2px rgba(59, 130, 246, 0.22);
  z-index: -1;
}

.lang-switch[data-active="en"] .lang-switch__thumb {
  left: calc(50%);
  transform: none;
}

.lang-switch__opt {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s ease;
  line-height: 1;
}

.lang-switch__opt:hover {
  color: rgba(255, 255, 255, 0.65);
}

.lang-switch__opt.is-active {
  color: #0a0a0a;
  font-weight: 800;
}

.lang-switch__opt.is-active:hover {
  color: #0a0a0a;
}

.lang-switch--mobile {
  width: 100%;
  max-width: 200px;
}

.site-header__signin {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--text-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-header__signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(9, 9, 11, 0.2);
}

.site-header__link--support {
  color: var(--accent2);
  font-weight: 600;
}

.site-header__link--support:hover {
  color: #1d4ed8;
}

.site-header__cta {
  display: none;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.site-header__cta--support {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.site-header__cta:hover,
.site-header__cta--support:hover {
  background: #1d4ed8;
  filter: brightness(1.05);
}

.site-header__mobile-support {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent2);
  cursor: pointer;
  font-family: inherit;
}

.site-header__user {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent2);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.site-header__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 20px 40px -16px rgba(37, 99, 235, 0.12);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.site-header__mobile[hidden] {
  display: none !important;
}

.site-header__mobile a,
.site-header__mobile-support {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.site-header__mobile-support {
  color: var(--accent2);
  font-weight: 700;
}

.site-header__mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 1100px) {
  .site-header__cta {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 960px) {
  .site-header__nav,
  .site-header__signin,
  .site-header__cta,
  .site-header__user {
    display: none;
  }

  .site-header__burger {
    display: flex;
  }
}

/* ─── Landing hero ─── */
.landing-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(rgba(203, 213, 225, 0.45) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 28px 28px;
}

.landing-hero__bg-brand {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: var(--hero-bg-image, none);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(900px, 90vw);
}

.landing-hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.landing-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite;
}

.landing-blob--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
  top: -10%;
  left: -8%;
}

.landing-blob--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
  top: 20%;
  right: -10%;
  animation-delay: -4s;
}

.landing-blob--3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--accent2);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  animation: fade-up 0.8s ease 0.1s both;
}

.landing-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse-dot 2s ease infinite;
}

.landing-hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  animation: fade-up 0.8s ease 0.2s both;
}

.landing-hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  animation: fade-up 0.8s ease 0.35s both;
}

.landing-hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.5s both;
}

.landing-hero__cta .btn-dark {
  background: var(--text-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-hero__cta .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 9, 11, 0.18);
}

.landing-hero__cta .btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-bright);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.landing-hero__cta .btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--accent2);
  transform: translateY(-2px);
}

/* Browser mockup – Premium */
.landing-mockup {
  position: relative;
  z-index: 2;
  width: min(1040px, 96vw);
  margin-top: 3.5rem;
  animation: fade-up 1s ease 0.65s both;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 25px 60px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.landing-mockup:hover {
  border-color: var(--accent2, #2563eb);
  box-shadow:
    0 30px 70px -10px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.btn-dark-global {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-primary, #09090b);
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-dark-global:hover {
  background: var(--text-primary, #09090b);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 9, 11, 0.18);
}

.landing-mockup__chrome {
  background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
  border-radius: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.landing-mockup__chrome::before {
  display: none;
}

.landing-mockup__chrome::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.landing-mockup__toolbar {
  display: contents;
}

.landing-mockup__dots {
  display: flex;
  gap: 7px;
}

.landing-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-mockup:hover .landing-mockup__dots span {
  transform: scale(1.1);
}

.landing-mockup__dots span:nth-child(1) { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.4); }
.landing-mockup__dots span:nth-child(2) { background: #eab308; box-shadow: 0 0 6px rgba(234, 179, 8, 0.4); }
.landing-mockup__dots span:nth-child(3) { background: #22c55e; box-shadow: 0 0 6px rgba(34, 197, 94, 0.4); }

.landing-mockup__url {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #94a3b8;
  text-align: center;
  letter-spacing: 0.02em;
}

.landing-mockup__body {
  background: #fff;
  border: none;
  border-top: none;
  border-radius: 0;
  min-height: 280px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.landing-mockup__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.landing-mockup__body img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-mockup__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
}

.landing-mockup__card h4 {
  color: #e2e8f0;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.landing-mockup__card p {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
}

.landing-mockup__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.5);
  margin-top: 1rem;
  width: 70%;
}

/* Tablet */
@media (max-width: 1024px) {
  .landing-mockup__body {
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
  }

  .landing-mockup__body .landing-mockup__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .landing-hero {
    padding-top: calc(var(--nav-h) + 2rem);
    min-height: auto;
  }

  .landing-hero__title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .landing-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero__cta a {
    text-align: center;
  }

  .landing-mockup {
    margin-top: 2.5rem;
  }

  .landing-mockup__body {
    grid-template-columns: 1fr;
    min-height: 200px;
    padding: 1.25rem;
  }

  .landing-blob--1 { width: 280px; height: 280px; }
  .landing-blob--2 { width: 240px; height: 240px; }
}

/* ─── Auth modal ─── */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}

.auth-modal__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 80px -16px rgba(37, 99, 235, 0.25);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal.is-open .auth-modal__panel {
  transform: translateY(0) scale(1);
}

.auth-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.auth-modal__close:hover {
  background: var(--bg-secondary);
}

.auth-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.auth-modal__form-wrap {
  position: relative;
  padding: 3rem 2.5rem;
  overflow: hidden;
}

.auth-modal__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.auth-modal__glow--1 {
  width: 200px;
  height: 200px;
  background: rgba(56, 189, 248, 0.35);
  top: -40px;
  right: -40px;
}

.auth-modal__glow--2 {
  width: 160px;
  height: 160px;
  background: rgba(99, 102, 241, 0.25);
  bottom: 20%;
  left: -30px;
}

.auth-modal__content {
  position: relative;
  z-index: 1;
}

.auth-modal__content h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.auth-modal__content > p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form__group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.auth-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-bright);
  background: rgba(248, 250, 252, 0.8);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.auth-form__submit {
  width: 100%;
  padding: 16px !important;
  margin-top: 0.5rem;
  border-radius: 14px !important;
}

.auth-divider {
  text-align: center;
  margin: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}

.auth-divider span {
  background: #fff;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}

.auth-google-wrap {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.auth-switch {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-switch button {
  background: none;
  border: none;
  color: var(--accent2);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  padding: 0;
  margin-left: 4px;
}

.auth-step[hidden] {
  display: none !important;
}

.auth-channel {
  display: flex;
  gap: 1.25rem;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-channel label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.auth-verify-hint {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  text-align: center;
}

.auth-code-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.auth-code-digit {
  width: 44px;
  height: 52px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid var(--border-bright);
  background: #f8fafc;
  outline: none;
  font-family: var(--font-mono);
}

.auth-code-digit:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-google-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s;
}

.btn-google-custom:hover {
  background: var(--bg-secondary);
}

.auth-modal__visual {
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.auth-modal__visual-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.auth-visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.auth-visual-blob--1 {
  width: 180px;
  height: 180px;
  background: rgba(56, 189, 248, 0.5);
  top: 10%;
  left: 10%;
}

.auth-visual-blob--2 {
  width: 140px;
  height: 140px;
  background: rgba(99, 102, 241, 0.45);
  bottom: 20%;
  right: 15%;
}

.auth-visual-blob--3 {
  width: 100px;
  height: 100px;
  background: rgba(59, 130, 246, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.auth-visual-quote {
  color: #e2e8f0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 280px;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .auth-modal__grid {
    grid-template-columns: 1fr;
  }

  .auth-modal__visual {
    display: none;
  }

  .auth-modal__form-wrap {
    padding: 2.5rem 1.5rem 2rem;
  }
}

/* Admin legal pages (privacy, terms) */
.legal-content {
  max-width: min(1120px, 94vw);
  margin-left: auto;
  margin-right: auto;
}

.legal-content__card {
  padding: clamp(2rem, 4vw, 3rem);
}

.legal-content__card p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: none;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent2);
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .auth-modal {
    padding: 0;
    align-items: flex-end;
  }

  .auth-modal__panel {
    border-radius: 20px 20px 0 0;
    max-height: 95vh;
  }
}

/* ============================================
   BLOG SECTION - Son Yazılarımız
   ============================================ */
.blog-section {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.blog-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.blog-featured__img-wrap {
  width: 100%;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 3rem;
  text-align: left;
  box-sizing: border-box;
}

.blog-featured__overlay .blog-badge-read {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  margin-bottom: 1rem;
}

.blog-featured__overlay .blog-featured__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-featured__overlay .blog-featured__title:hover {
  color: var(--accent2);
}

.blog-featured__overlay .blog-featured__desc {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.blog-featured__overlay .blog-read-more {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.blog-featured__overlay .blog-read-more:hover {
  color: var(--accent2);
}

.blog-badge-read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-featured__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-featured__title:hover,
.blog-sidebar__item-title:hover {
  color: var(--accent2);
}

.blog-featured__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--accent2);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-sidebar__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
  padding: 10px;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.blog-sidebar__item:hover {
  background: rgba(37, 99, 235, 0.03);
}

.blog-sidebar__item.active {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.blog-sidebar__img-wrap {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-sidebar__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-sidebar__item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-featured__img-wrap {
    height: 440px;
  }
  .blog-featured__overlay {
    padding: 2rem 1.5rem;
  }
  .blog-featured__overlay .blog-featured__title {
    font-size: 1.4rem;
  }
  .blog-featured__overlay .blog-featured__desc {
    font-size: 0.92rem;
    margin-bottom: 1rem;
  }
}

#features .grid-3,
#why .grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.25rem !important;
}

@media (max-width: 990px) {
  #features .grid-3,
  #why .grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  #features .grid-3,
  #why .grid-3 {
    grid-template-columns: 1fr !important;
  }
}

/* Temporarily disabled components (Sign-in, Live Support) */
.site-header__signin,
.profile-menu,
.site-header__cta--support,
.site-header__link--support,
.site-header__mobile-support,
#open-auth-mobile,
#mobile-live-support-btn {
  display: none !important;
}

[data-theme="dark"] .landing-hero {
  background-color: #09090b !important;
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(rgba(63, 63, 70, 0.45) 1.5px, transparent 1.5px) !important;
}

.testimonial-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.45) !important;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.08) !important;
}

/* �� Why Bento Cards �� */
.why-bento-card:hover {
  transform: translateY(-6px);
  border-color: #e2e8f0 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

.why-bento-card:hover .why-bento-icon {
  transform: scale(1.08) translateY(-2px);
}

.why-bento-card:hover .why-bento-line {
  transform: scaleX(1) !important;
}

@media (max-width: 990px) {
  #why > div[style*='repeat(3'] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  #why > div[style*='repeat(3'] {
    grid-template-columns: 1fr !important;
  }
}

[data-theme='dark'] .why-bento-card {
  background: #18181b !important;
  border-color: #27272a !important;
}

[data-theme='dark'] .why-bento-card h4 {
  color: #ffffff !important;
}

/* �� Testimonial Light Cards Hover �� */
.testimonial-light:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
  border-color: #d1d5db;
}

/* ── Testimonials Section ── */
.section--testimonials {
  padding-top: clamp(6rem, 12vw, 10rem);
  padding-bottom: clamp(6rem, 12vw, 10rem);
}

.section--testimonials .section-header {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 2rem 2.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
  animation: testimonial-scroll 32s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-light {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 360px;
  max-width: 400px;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-light__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-light__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f3f4f6;
}

.testimonial-light__name {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.testimonial-light__service {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 2px;
}

.testimonial-light__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
}

[data-theme='dark'] .testimonial-light {
  background: #18181b;
  border-color: #27272a;
}

[data-theme='dark'] .testimonial-light__name {
  color: #f4f4f5;
}

[data-theme='dark'] .testimonial-light__text {
  color: #a1a1aa;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}
