/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #c6ff81;
  --dark: #1c1c1e;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f2f2f2;
  --gray-200: #e5e5e5;
  --gray-400: #9a9a9a;
  --gray-600: #555;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-nav: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-dropdown: 0 8px 40px rgba(0,0,0,0.13);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  padding-top: 64px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; touch-action: manipulation; }
button { background: none; border: none; cursor: pointer; font: inherit; touch-action: manipulation; }
img { display: block; max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
}

/* ===== NAV LINKS ===== */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-item.is-open .nav-link {
  color: var(--dark);
}

/* Kayan underline indicator */
.nav-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.15s ease;
}

.nav-indicator.is-visible {
  opacity: 1;
}

.chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item.is-open .chevron {
  transform: rotate(180deg);
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 999;
}

.dropdown-menu--sm {
  min-width: 320px;
}

.dropdown-menu--isletme {
  min-width: 560px;
}

.dd-img-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  margin-bottom: 2px;
}

.dd-img-item:hover {
  background: #f5f5f5;
}

.dd-img-item .dropdown-item-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.dd-img-item .dropdown-item-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1px;
}

.dd-img-thumb {
  width: 44px;
  height: 36px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}

.dd-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dd-img-thumb--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #f5f5f7;
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: flex;
  gap: 0;
  padding: 16px;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 200px;
}

.dropdown-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  text-transform: uppercase;
  padding: 6px 12px 8px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.dropdown-item:hover {
  background: var(--gray-50);
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 400;
}

.badge-new {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--green);
  color: var(--dark);
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
}

/* ===== DROPDOWN CARD (right side) ===== */
.dropdown-card {
  flex-shrink: 0;
  width: 220px;
  margin-left: 8px;
}

.dropdown-card-inner {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}

.dropdown-card-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.dropdown-card-image {
  margin-top: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.dropdown-card-image img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

/* ===== NAVBAR ACTIONS ===== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  transition: border-color var(--transition), background var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-login:hover {
  border-color: var(--dark);
  background: var(--gray-50);
}

.btn-arrow {
  font-size: 1rem;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--dark);
  color: var(--white);
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-demo:hover {
  background: #333;
}

/* ===== DROPDOWN OVERLAY ===== */
.dropdown-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
}

.dropdown-overlay.is-active {
  display: block;
}

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  padding: 80px 24px 32px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-item:hover {
  background: var(--gray-100);
}

.mobile-menu-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition);
}

.mobile-menu-accordion-trigger:hover {
  background: var(--gray-100);
}

.mobile-menu-accordion-trigger.is-open {
  background: var(--gray-100);
}

.mobile-menu-accordion-trigger.is-open .mm-chevron {
  transform: rotate(180deg);
}

.mm-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #9ca3af;
}

.mobile-menu-accordion-body {
  display: none;
  padding-left: 8px;
}

.mobile-menu-accordion-body.is-open {
  display: block;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.mobile-menu-actions .btn-demo {
  text-align: center;
  padding: 14px;
  font-size: 1rem;
}

.mobile-menu-actions .btn-login {
  text-align: center;
  padding: 14px;
  font-size: 1rem;
  border-radius: 50px;
  justify-content: center;
}

/* ===== HERO ===== */
@property --angle-hero {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border-hero {
  from { --angle-hero: 0deg; }
  to   { --angle-hero: 360deg; }
}

.hero-section {
  background: var(--white);
}

.hero-container {
  max-width: 672px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fff0;
  border: 1px solid #b6e89a;
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 24px;
}

.hero-badge-icon { font-size: 14px; }

.hero-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #3a7a00;
}

.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #131318;
  margin-bottom: 20px;
}

.hero-heading-bold {
  font-weight: 600;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: #364152;
  max-width: 420px;
  margin: 0 auto 32px;
}

.hero-cta-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-cta-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* Image block */
.hero-image-wrap {
  position: relative;
  margin-top: 64px;
  padding: 0 4px;
  overflow: hidden;
}

.hero-grid-bg {
  display: none;
}

.hero-img-border-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 23px;
}

.hero-spin-border {
  position: absolute;
  inset: 0;
  border-radius: 23px;
  z-index: 0;
  animation: spin-border-hero 2.5s linear infinite;
  background: conic-gradient(
    from var(--angle-hero),
    var(--dark) 0%,
    var(--green) 25%,
    #ffffff 50%,
    var(--green) 75%,
    var(--dark) 100%
  );
  will-change: background;
  pointer-events: none;
}

.hero-img-inner {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ===== FEATURE STRIP ===== */
.fstrip-section {
  background: var(--white);
  width: 100%;
}

.fstrip-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 24px;
}

.fstrip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.fstrip-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 51%, #fafafa 100%);
  border: 1px solid #f4f4f4;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fstrip-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.fstrip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fstrip-icon { font-size: 20px; }

.fstrip-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.28px;
  color: #121926;
}

.fstrip-desc {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #4b5565;
}

/* ===== CHAT FEATURE SECTION ===== */
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-5px); opacity: 1; }
}

.chat-section {
  background: var(--white);
  width: 100%;
}

.chat-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

/* Outer wrap — padding:2px + overflow:hidden = spinning border çerçevesi */
.chat-card-wrap {
  flex-shrink: 0;
  max-width: 480px;
  width: 100%;
  position: relative;
  border-radius: 22px;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Spinning border: dönen div, inset:-100%, conic-gradient yay */
.chat-rotate-border {
  position: absolute;
  inset: -100%;
  background: conic-gradient(transparent 0deg, transparent 300deg, #111113 340deg, #111113 360deg);
  animation: rotateBorder 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* White inner card */
.chat-card-inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
}

/* Messages container — opacity:0 resetting sırasında */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.chat-messages.is-resetting { opacity: 0; }

/* Her mesaj satırı */
.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-row--user { justify-content: flex-start; }
.chat-row--bot  { justify-content: flex-end; }

.chat-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-bot-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111113;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-bubble {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 300px;
}

.chat-bubble p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #111827;
  margin: 0;
}

/* Typing indicator — visibility (layout shift yok), height:44px sabit */
.chat-typing {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: flex-end;
  visibility: hidden;
  height: 44px;
}

.chat-typing.is-visible { visibility: visible; }

.chat-bubble--typing {
  padding: 12px 16px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
  display: inline-block;
  animation: typingDot 1.2s ease infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* Right text */
.chat-text {
  flex: 1;
  padding-top: 8px;
}

.chat-heading {
  font-size: 34px;
  line-height: 44px;
  font-weight: 400;
  letter-spacing: -1.7px;
  color: #131318;
  margin-bottom: 20px;
}

.chat-heading-bold { font-weight: 700; }

.chat-desc {
  font-size: 16px;
  line-height: 26px;
  color: rgb(54, 65, 82);
  margin-bottom: 36px;
}

.chat-cta {
  display: inline-block;
  background: #14141a;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.chat-cta:hover { background: #333; }

/* ===== TWO COL SECTION ===== */
.twocol-section {
  background: var(--white);
  width: 100%;
}

.twocol-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.twocol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.twocol-card {
  display: flex;
  flex-direction: column;
}

.twocol-img-wrap {
  position: relative;
  background: #f0f0f0;
  border-radius: 20px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 24px;
}

.twocol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.twocol-mockup-wrap {
  background: #f0f0f0;
  border-radius: 20px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  margin-bottom: 24px;
}

.revenue-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.revenue-label {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
  text-align: center;
}

.revenue-amount {
  font-size: 40px;
  font-weight: 800;
  color: #131318;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.revenue-sublabel {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 16px;
}

.revenue-row {
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.revenue-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revenue-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #14141a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.revenue-row-title {
  font-size: 13px;
  font-weight: 600;
  color: #131318;
}

.revenue-row-sub {
  font-size: 11px;
  color: #9ca3af;
}

.revenue-row-amount {
  font-size: 14px;
  font-weight: 700;
  color: #131318;
}

.twocol-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #131318;
  margin-bottom: 10px;
}

.twocol-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: rgb(54, 65, 82);
  margin-bottom: 14px;
}

.twocol-link {
  font-size: 14px;
  font-weight: 500;
  color: #131318;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== TWO FEATURE CARDS ===== */
@keyframes scanLineSmall {
  0%   { top: 0%; }
  100% { top: 100%; }
}
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tfc-section { background: var(--white); width: 100%; }

.tfc-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.tfc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tfc-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 51%, #fafafa 100%);
  border: 1px solid #f4f4f4;
  border-radius: 24px;
  padding: clamp(24px, 5vw, 58px);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tfc-card--dark-border { border: 2px solid #121926; }

.tfc-card-bg-circles {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.tfc-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #ffffff 35%, rgba(255,255,255,0) 65%);
}

.tfc-card-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }

.tfc-heading {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #121926;
  margin-bottom: 8px;
}

.tfc-heading-light { font-weight: 400; }

.tfc-heading-badge {
  background: #121926;
  color: #ffffff;
  border-radius: 4px;
  padding: 2px 8px;
}

.tfc-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #4b5565;
  margin-bottom: 28px;
}

/* ── PaperPhoneScan ── */
.pps-wrap {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pps-paper {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 180px;
  background: #fffef5;
  border: 1px solid #e8e0c8;
  border-radius: 4px;
  padding: 14px 12px 18px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.12);
  z-index: 1;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.pps-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228,40,31,0.9), transparent);
  box-shadow: 0 0 8px rgba(228,40,31,0.5);
  display: none;
}

.pps-scan-line.is-scanning {
  display: block;
  animation: scanLineSmall 2s linear forwards;
}

.pps-paper-head { text-align: center; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px dashed #c8b99a; }
.pps-paper-brand { font-family: monospace; font-size: 8px; color: #8a7060; margin-bottom: 3px; }
.pps-paper-title { font-family: monospace; font-size: 10px; font-weight: 700; color: #2c1810; letter-spacing: 2px; }
.pps-paper-sep   { font-family: monospace; font-size: 7px; color: #8a7060; margin-top: 2px; }

.pps-paper-items { display: flex; flex-direction: column; gap: 4px; }
.pps-paper-row   { display: flex; justify-content: space-between; font-family: monospace; font-size: 8px; color: #3a2010; }

.pps-paper-total {
  margin-top: 8px; padding-top: 6px;
  border-top: 1px dashed #c8b99a;
  display: flex; justify-content: space-between;
  font-family: monospace; font-size: 8px; font-weight: 700; color: #2c1810;
}

.pps-paper-dots { margin-top: 10px; text-align: center; font-family: monospace; font-size: 7px; color: #b8a898; letter-spacing: 1px; }

/* iPhone */
.pps-phone {
  position: absolute;
  right: 0; top: 0;
  transform: rotate(12deg);
  width: 130px; height: 255px;
  background: linear-gradient(145deg, #d0d0d0, #a8a8a8);
  border-radius: 18px;
  padding: 2px;
  box-shadow: 0 0 0 1px #999, 0 8px 24px rgba(0,0,0,0.28);
  z-index: 2;
}

.pps-phone-inner {
  background: #1c1c1e;
  border-radius: 16px;
  padding: 3px;
  height: 100%;
}

.pps-phone-notch {
  height: 10px; display: flex; align-items: center; justify-content: center;
}

.pps-phone-notch::after {
  content: '';
  width: 28px; height: 3px;
  background: #2c2c2e; border-radius: 2px;
}

.pps-phone-screen {
  background: #1a1a1a;
  border-radius: 12px;
  flex: 1;
  overflow: hidden;
  position: relative;
  height: calc(100% - 10px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}

.pps-screen-idle { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.pps-idle-dot { width: 6px; height: 6px; border-radius: 50%; background: #333; }

.pps-screen-scan {
  position: absolute; inset: 0;
  background: #f5f0e8;
  display: none; flex-direction: column; align-items: center; justify-content: center;
}

.pps-screen-scan.is-active { display: flex; }

.pps-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(228,40,31,0.9);
  border-style: solid;
}
.pps-corner--tl { top: 6px;    left: 6px;    border-width: 2px 0 0 2px; }
.pps-corner--tr { top: 6px;    right: 6px;   border-width: 2px 2px 0 0; }
.pps-corner--bl { bottom: 6px; left: 6px;    border-width: 0 0 2px 2px; }
.pps-corner--br { bottom: 6px; right: 6px;   border-width: 0 2px 2px 0; }

.pps-menu-preview { padding: 6px 8px; width: 85%; }
.pps-preview-title { font-family: monospace; font-size: 6px; font-weight: 700; color: #2c1810; text-align: center; border-bottom: 1px dashed #c8b99a; padding-bottom: 3px; margin-bottom: 4px; }
.pps-preview-row   { display: flex; justify-content: space-between; font-family: monospace; font-size: 5px; color: #3a2010; margin-bottom: 3px; }

.pps-scan-beam {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228,40,31,0.9), transparent);
  box-shadow: 0 0 8px rgba(228,40,31,0.5);
  display: none;
}
.pps-scan-beam.is-active { display: block; animation: scanLineSmall 2s linear forwards; }

.pps-screen-digital {
  position: absolute; inset: 0;
  padding: 8px 6px;
  background: #fff;
  display: none; flex-direction: column; justify-content: center;
}
.pps-screen-digital.is-active { display: flex; animation: fadeInMenu 0.4s ease forwards; }
.pps-digital-title { font-size: 8px; font-weight: 700; color: #1d1d1f; margin-bottom: 6px; text-align: center; padding-bottom: 4px; border-bottom: 1px solid #e5e7eb; }
.pps-digital-row   { display: flex; justify-content: space-between; padding: 3px 4px; border-radius: 4px; background: #fff; margin-bottom: 2px; font-size: 7px; font-weight: 500; color: #1d1d1f; }
.pps-digital-row span:last-child { font-weight: 700; color: #374151; }
.pps-digital-row--hi   { background: #fef9c3; }
.pps-digital-row--blue { background: #f0f9ff; }

/* ── Font Cycle (Rezervasyon) ── */
.tfc-font-cycle-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 16px;
}

.tfc-rezervasyon-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tfc-font-cycle-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #121926;
  line-height: 32px;
  text-align: center;
}

.tfc-cycling-word {
  display: inline-block;
  width: 90px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  overflow: hidden;
  vertical-align: middle;
  transition: font-family 0.1s, font-style 0.1s;
}

.tfc-font-static { font-weight: 400; }

/* ===== DEMO MODAL ===== */
.demo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 10002;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.demo-modal-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
@media (max-width: 767px) {
  .demo-modal-overlay.is-open {
    align-items: flex-start;
    padding: 24px 16px 40px;
  }
}
.demo-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 512px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}
.demo-modal-close:hover { background: #f3f4f6; }

/* ===== DEMO FORM SECTION ===== */
.demo-section {
  background: var(--white);
  padding: 80px 16px;
}

.demo-inner {
  max-width: 512px;
  margin: 0 auto;
}

.demo-header {
  text-align: center;
  margin-bottom: 32px;
}

.demo-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: #121926;
  margin-bottom: 8px;
}

.demo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #4b5565;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

/* Floating label input */
.demo-field-wrap {
  position: relative;
}

.demo-input {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #121926;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 21px 16px 11px 16px;
  width: 100%;
  height: 52px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.demo-input:focus { border-color: var(--dark); }

.demo-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #9ca3af;
  pointer-events: none;
  transition: all 0.15s ease;
}

.demo-input:focus ~ .demo-label,
.demo-input:not(:placeholder-shown) ~ .demo-label {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  color: #6b7280;
}

/* Phone input */
.demo-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.demo-phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 14px;
  background: transparent;
  border: none;
  border-right: 1px solid #e5e7eb;
  cursor: pointer;
  flex-shrink: 0;
  height: 100%;
  font-size: 20px;
}

.demo-phone-dial {
  padding: 0 8px 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #121926;
  border-right: 1px solid #f0f0f0;
  flex-shrink: 0;
  user-select: none;
}

.demo-phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #121926;
  background: transparent;
  height: 100%;
}

.demo-phone-input::placeholder { color: #9ca3af; }

/* Country dropdown */
.demo-country-drop {
  position: absolute;
  top: 56px;
  left: 0;
  width: 260px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
  overflow: hidden;
  display: none;
}

.demo-country-drop.is-open { display: block; }

.demo-country-search-wrap { padding: 8px; }

.demo-country-search {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.demo-country-list {
  max-height: 200px;
  overflow-y: auto;
}

.demo-country-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.demo-country-item:hover { background: #f9fafb; }
.demo-country-item.is-selected { background: #f9fafb; }

.demo-country-item-flag { font-size: 18px; }
.demo-country-item-name { font-size: 13px; color: #121926; flex: 1; }
.demo-country-item-dial { font-size: 13px; color: #9ca3af; }

/* Package select */
.demo-select-wrap { position: relative; }

.demo-select-btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #121926;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 16px;
  width: 100%;
  height: 52px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.demo-select-btn.has-error { border-color: #ef4444; border-width: 1.5px; }

.demo-select-placeholder { color: #9ca3af; }

.demo-select-drop {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
  overflow: hidden;
  display: none;
}

.demo-select-drop.is-open { display: block; }

.demo-select-opt {
  width: 100%;
  display: block;
  padding: 14px 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #121926;
}

.demo-select-opt:hover { background: #f9fafb; }
.demo-select-opt.is-selected { background: #f9fafb; }

.demo-select-error {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.demo-select-error.is-visible { display: block; }

/* Submit */
.demo-submit {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #14141a;
  border-radius: 999px;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
  touch-action: manipulation;
}

.demo-submit:hover { background: #333; }

.demo-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  line-height: 18px;
}

/* Success state */
.demo-success {
  text-align: center;
  padding: 64px 0;
  display: none;
}

.demo-success.is-visible { display: block; }

.demo-success-emoji { font-size: 40px; margin-bottom: 16px; }

.demo-success-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #121926;
  margin-bottom: 8px;
}

.demo-success-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4b5565;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 40px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: #6b7280;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 14px;
  color: #9ca3af;
}

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

.footer-legal a {
  font-size: 14px;
  color: #9ca3af;
  transition: color var(--transition);
}

.footer-legal a:hover { color: #6b7280; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar-nav,
  .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }

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

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

  .demo-row-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .chat-inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px 60px;
  }

  .chat-card-wrap {
    max-width: 100%;
  }

  .chat-heading {
    font-size: 26px;
    line-height: 36px;
  }

  .demo-modal-box {
    padding: 32px 20px 24px;
  }
}

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

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

  .footer-brand {
    grid-column: auto;
  }

  .hero-container {
    padding: 56px 20px 48px;
  }

  .demo-modal-box {
    padding: 28px 16px 20px;
    border-radius: 16px;
  }
}
